FrostByte/client-solid/src/Components/PostSegment.tsx

47 lines
1.7 KiB
TypeScript
Raw Normal View History

import { JSXElement, Show } from "solid-js";
2024-03-23 00:10:42 +01:00
import { Post } from "../Util/api";
import CommentsButton from "./Buttons/CommentsButton";
import EngagementButton from "./Buttons/Engegament";
import RemovePostButton from "./Buttons/RemovePostButton";
import ReportButton from "./Buttons/Report";
import ToPostButton from "./Buttons/ToPost";
export function PostSegment(props: { post: Post }): JSXElement {
const { post } = props; // Destructuring the post object from props
const dateOfCreation = new Date(post.createdAt).toDateString();
const isEdited = !(post.createdAt == post.updatedAt);
return (
<div class="card compact w-full flex-grow border-b-2 border-b-primary bg-base-200 text-base-content transition-all hover:bg-base-300">
<div class="card-body md:mx-6">
<div class="flex flex-row justify-between">
<p class="text-xs italic">{dateOfCreation}</p>
<details class="dropdown">
<summary class="btn btn-sm">...</summary>
<ul class="w-26 menu dropdown-content z-[1] rounded-box bg-base-100 p-2 shadow">
<li>
<ReportButton />
</li>
<li>
2024-03-23 00:10:42 +01:00
<RemovePostButton postId={post.id} />
</li>
</ul>
</details>
</div>
<Show when={isEdited}>
<p>This post has been edited</p>
</Show>
<p class="my-1 text-base">{post.content}</p>
<div class="card-actions justify-between">
<div class="flex">
<EngagementButton postId={post.id} />
<CommentsButton />
</div>
<ToPostButton post={post} />
</div>
</div>
</div>
);
}