added note modal (wip)

This commit is contained in:
Ren Amamiya
2023-02-23 14:05:34 +07:00
parent ca5e299791
commit 1796228116
5 changed files with 185 additions and 21 deletions

View File

@@ -0,0 +1,41 @@
import { UserWithUsername } from '@components/note/atoms/userWithUsername';
import Content from '@components/note/content';
import NoteReply from '@components/note/modal/noteReply';
import { useNostrEvents } from 'nostr-react';
import { memo } from 'react';
/* eslint-disable @typescript-eslint/no-explicit-any */
const Modal = ({ event }: { event: any }) => {
const { events } = useNostrEvents({
filter: {
'#e': [event.id],
since: event.created_at,
kinds: [1],
limit: 100,
},
});
return (
<div className="flex min-h-full items-center justify-center p-4">
<div className="relative h-[90vh] w-full max-w-3xl transform overflow-hidden rounded-lg text-zinc-100 shadow-modal transition-all">
<div className="absolute top-0 left-0 h-full w-full bg-black bg-opacity-20 backdrop-blur-lg"></div>
<div className="relative z-10 h-full p-4">
<div className="relative h-full overflow-auto rounded-lg border-[0.5px] border-white/30 bg-zinc-800 p-4 shadow-inner">
<div className="flex flex-col gap-4">
<UserWithUsername pubkey={event.pubkey} />
<Content data={event.content} />
</div>
<div className="flex flex-col gap-2 divide-y divide-zinc-700">
{events.map((item) => (
<NoteReply key={item.id} event={item} />
))}
</div>
</div>
</div>
</div>
</div>
);
};
export default memo(Modal);