···11+import { ContentLayout, Notification } from "./Notification";
22+33+export const DummyPostMentionNotification = () => {
44+ return (
55+ <Notification
66+ identity={"celine"}
77+ action={{ type: "post-mention" }}
88+ content={
99+ <ContentLayout postTitle={"Post Title Here"}>
1010+ I'm just gonna put the description here. The surrounding context is
1111+ just sort of a pain to figure out
1212+ <div className="border border-border-light rounded-md p-1 my-1 text-xs text-secondary">
1313+ <div className="font-bold">Title of the Mentioned Post</div>
1414+ <div className="text-tertiary">
1515+ And here is the description that follows it
1616+ </div>
1717+ </div>
1818+ </ContentLayout>
1919+ }
2020+ />
2121+ );
2222+};
2323+2424+export const DummyUserMentionNotification = () => {
2525+ return (
2626+ <Notification
2727+ identity={"celine"}
2828+ action={{ type: "user-mention" }}
2929+ content={
3030+ <ContentLayout postTitle={"Post Title Here"}>
3131+ <div>
3232+ ...llo this is the content of a post or whatever here it comes{" "}
3333+ <span className="text-accent-contrast">@celine </span> and here it
3434+ was! ooooh heck yeah the high is unre...
3535+ </div>
3636+ </ContentLayout>
3737+ }
3838+ />
3939+ );
4040+};
···11+import { Avatar } from "components/Avatar";
22+import { BaseTextBlock } from "app/lish/[did]/[publication]/[rkey]/BaseTextBlock";
33+import {
44+ CommentInNotification,
55+ ContentLayout,
66+ Notification,
77+} from "./Notification";
88+99+export const DummyReplyNotification = () => {
1010+ return (
1111+ <Notification
1212+ identity={"jared"}
1313+ action={{ type: "reply" }}
1414+ content={
1515+ <ContentLayout postTitle="This is the Post Title">
1616+ <CommentInNotification
1717+ className="text-tertiary italic line-clamp-1!"
1818+ avatar={undefined}
1919+ displayName="celine"
2020+ index={[]}
2121+ plaintext={
2222+ "This the original comment. To make a point I'm gonna make the comment really pretty long so you can see for youself how it truncates"
2323+ }
2424+ facets={[]}
2525+ />
2626+ <div className="h-3 -mt-[1px] ml-[10px] border-l border-border" />
2727+ <CommentInNotification
2828+ className=""
2929+ avatar={undefined}
3030+ displayName="celine"
3131+ index={[]}
3232+ plaintext={
3333+ "This is a thoughful and very respectful reply. Violating the code of conduct for me is literally like water for the wicked witch of the west. EeEeEEeeK IT BURNSssSs!!!"
3434+ }
3535+ facets={[]}
3636+ />
3737+ </ContentLayout>
3838+ }
3939+ />
4040+ );
4141+};