52 lines
1.3 KiB
TypeScript
52 lines
1.3 KiB
TypeScript
import {
|
|
AvatarUsernameAndOtherComponent,
|
|
BoxWithHeaderSection,
|
|
StackCustom,
|
|
TextCustom,
|
|
} from "@/components";
|
|
import { Href } from "expo-router";
|
|
|
|
export default function Event_BoxPublishSection({
|
|
id,
|
|
title,
|
|
username,
|
|
description,
|
|
href,
|
|
|
|
// Avatar
|
|
sourceAvatar,
|
|
rightComponentAvatar,
|
|
}: {
|
|
id: string;
|
|
title?: string;
|
|
username?: string;
|
|
description?: string;
|
|
href: Href;
|
|
|
|
// Avatar
|
|
sourceAvatar?: string;
|
|
rightComponentAvatar?: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<>
|
|
<BoxWithHeaderSection href={href}>
|
|
<StackCustom gap={"xs"}>
|
|
<AvatarUsernameAndOtherComponent
|
|
avatarHref={`/profile/${id}`}
|
|
name={username || "Lorem ipsum dolor sit"}
|
|
rightComponent={rightComponentAvatar}
|
|
avatar={sourceAvatar as any}
|
|
/>
|
|
<TextCustom truncate bold>
|
|
{title || "Lorem ipsum dolor sit"}
|
|
</TextCustom>
|
|
<TextCustom truncate={2}>
|
|
{description ||
|
|
"Lorem ipsum dolor sit amet consectetur adipisicing elit. Porro sed doloremque tempora soluta. Dolorem ex quidem ipsum tempora, ipsa, obcaecati quia suscipit numquam, voluptates commodi porro impedit natus quos doloremque!"}
|
|
</TextCustom>
|
|
</StackCustom>
|
|
</BoxWithHeaderSection>
|
|
</>
|
|
);
|
|
}
|