Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "remove all unused components" #101

Merged
merged 1 commit into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/builddao/widget/Feed.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ return (
}}
/>
) : (
<Widget src="/*__@appAccount__*//widget/feed.Bookmarks" />
<Widget src="/*__@appAccount__*//widget/Bookmarks" />
)
) : (
<Widget
Expand Down
372 changes: 372 additions & 0 deletions apps/builddao/widget/Post.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,372 @@
const accountId = props.accountId;
if (!accountId) {
return "No accountId";
}
const blockHeight =
props.blockHeight === "now" ? "now" : parseInt(props.blockHeight);
const pinned = !!props.pinned;
const hideMenu = !!props.hideMenu;
const hideButtons = !!props.hideButtons;
const content =
props.content ??
JSON.parse(Social.get(`${accountId}/post/main`, blockHeight) ?? "null");
const subscribe = !!props.subscribe;
const raw = !!props.raw;
const groupId = props.groupId ?? content.groupId;
const indexKey = props.indexKey;
const permissions = props.permissions;
const fullPostLink = props.fullPostLink;
const postPage = props.postPage ?? "mob.near/widget/MainPage.N.Post.Page";

const notifyAccountId = accountId;
const item = {
type: "social",
path: `${accountId}/post/main`,
blockHeight,
};

const link =
props.link ??
props.fullPostLink ??
`/${postPage}?accountId=${accountId}&blockHeight=${blockHeight}`;

const StyledPost = styled.div`
margin-bottom: 1rem;
.post {
border-radius: 16px;
border: 1px solid var(--Stroke-color, rgba(255, 255, 255, 0.2));
color: #b6b6b8;
padding: 24px !important;
background-color: #0b0c14;
transition: all 300ms;

&:hover {
background-color: #171929 !important;
.expand-post {
background-image: linear-gradient(
to bottom,
rgb(23, 25, 41, 0),
rgb(23, 25, 41, 1) 25%
) !important;
}
}

.post-header {
span,
.text-muted {
color: #fff !important;
}
}

.buttons {
border-top: 1px solid #3c3d43;
padding: 0.5rem;
}

.expand-post {
background-image: linear-gradient(
to bottom,
rgb(11, 12, 20, 0),
rgb(11, 12, 20, 1) 25%
) !important;
}
}

.dropdown-menu {
background-color: #0b0c14 !important;
color: #fff !important;

li.dropdown-item {
color: #fff !important;
&:hover {
a {
color: #0b0c14 !important;
}
}
}

.link-dark,
.dropdown-item {
color: #fff !important;

&:hover {
color: #0b0c14 !important;

span {
color: #0b0c14 !important;
}
}
}
}

textarea {
color: #b6b6b8 !important;
}
`;

const Wrapper = styled.div`
margin: 0 -12px;
line-height: normal;

.post {
position: relative;
padding: 12px;
padding-bottom: 4px;
display: flex;
h1,
h2,
h3,
h4,
h5,
h6 {
font-size: 16px !important;
}
@media (max-width: 767px) {
font-size: 15px !important;
h1,
h2,
h3,
h4,
h5,
h6 {
font-size: 15px !important;
}
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b {
font-weight: 500 !important;
}
ol,
ul,
dl {
margin-bottom: 0.5rem;
white-space: inherit;
}
p {
margin-bottom: 0.5rem;
}
hr {
display: none;
}
img {
border-radius: var(--bs-border-radius-lg);
max-height: 40em;
}
th {
min-width: 5em;
}

.table > :not(caption) > * > * {
padding: 0.3rem;
}

&:hover {
background-color: rgba(0, 0, 0, 0.03);
.expand-post {
background-image: linear-gradient(
to bottom,
rgba(0, 0, 0, 0),
rgba(247.35, 247.35, 247.35, 1) 25%
);
}
}

.post-header {
margin: 4px 0;
}
}

.post:not(:last-child):before {
content: "";
position: absolute;
left: 30px;
top: 56px;
bottom: 0;
width: 2px;
background-color: #ddd;
z-index: -1;
}

.post:not(:first-child):after {
content: "";
position: absolute;
left: 30px;
top: 0;
width: 2px;
height: 8px;
background-color: #ddd;
z-index: -1;
}

.left {
margin-right: 12px;
min-width: 40px;
width: 40px;
overflow: hidden;
}
.right {
margin-top: -4px;
flex-grow: 1;
min-width: 0;
}

.buttons-placeholder {
padding-bottom: 10px;
}

.buttons {
margin-top: 10px;
margin-bottom: 6px;
column-gap: 4px;
color: #888;
}

.reposted {
padding-top: 30px;
}
`;

const contentWidget = (
<Widget
key="content"
loading={
<div
className="overflow-hidden w-100 placeholder-glow"
style={{ minHeight: "100px" }}
/>
}
src="mob.near/widget/MainPage.N.Post.Content"
props={{
content,
raw,
truncateContent: props.truncateContent,
noEmbed: props.noEmbed,
}}
/>
);

return (
<StyledPost>
<Wrapper
className="w-100 mx-auto"
style={
props.hideComments || props.noBorder
? undefined
: {
borderBottom: "1px solid #eee",
}
}
>
<div className={`post ${props.reposted ? "reposted" : ""}`}>
<div className="right d-flex flex-column gap-3">
<Widget
loading={<div className="post-header" />}
src="/*__@appAccount__*//widget/Post.Header"
props={{
accountId,
blockHeight,
pinned,
hideMenu,
link,
postType: "post",
flagItem: item,
}}
/>
{fullPostLink ? (
<a
key="full-post-link"
target="_blank"
href={fullPostLink}
className="text-decoration-none link-dark"
>
{contentWidget}
</a>
) : (
contentWidget
)}
{props.customButtons ? (
props.customButtons
) : !pinned && !hideButtons && blockHeight !== "now" ? (
<div className="buttons d-flex justify-content-between">
<Widget
loading=""
src="mob.near/widget/N.CommentButton"
props={{
disabled: permissions.disableComment,
onClick: () => State.update({ showReply: !state.showReply }),
}}
/>
<Widget
loading=""
src="mob.near/widget/N.RepostButton"
props={{
disable: permissions.disableRepost,
notifyAccountId,
item,
// indexKey,
// groupId,
}}
/>
<Widget
loading=""
src="mob.near/widget/N.LikeButton"
props={{
notifyAccountId,
item,
}}
/>
<Widget
loading=""
src="mob.near/widget/MainPage.N.Post.ShareButton"
props={{ accountId, blockHeight, postType: "post", groupId }}
/>
</div>
) : (
<div className="buttons-placeholder" />
)}
</div>
</div>
{state.showReply && (
<div className="border-top">
<Widget
loading=""
src="mob.near/widget/MainPage.N.Comment.Compose"
props={{
notifyAccountId,
item,
onComment: () => State.update({ showReply: false }),
}}
/>
</div>
)}
{props.customComments
? props.customComments
: !props.hideComments && (
<div className="ms-5 my-3">
<Widget
key="comments"
loading={false}
src="mob.near/widget/MainPage.N.Comment.Feed"
props={{
item,
highlightComment: props.highlightComment,
limit: props.commentsLimit,
subscribe,
raw,
accounts: props.commentAccounts,
groupId,
permissions,
}}
/>
</div>
)}
</Wrapper>
</StyledPost>
);
Loading