import { Button } from '@/components/ui/button' import { useToast } from '@/hooks/use-toast' import { createCommentDraftEvent, createShortTextNoteDraftEvent } from '@/lib/draft-event' import { useFeed } from '@/providers/FeedProvider.tsx' import { useNostr } from '@/providers/NostrProvider' import client from '@/services/client.service' import { ChevronDown, ImageUp, LoaderCircle } from 'lucide-react' import { Event, kinds } from 'nostr-tools' import { useState } from 'react' import { useTranslation } from 'react-i18next' import TextareaWithMentions from '../TextareaWithMentions.tsx' import Mentions from './Mentions' import PostOptions from './PostOptions.tsx' import Preview from './Preview' import SendOnlyToSwitch from './SendOnlyToSwitch.tsx' import { TPostOptions } from './types.ts' import Uploader from './Uploader' export default function NormalPostContent({ defaultContent = '', parentEvent, close }: { defaultContent?: string parentEvent?: Event close: () => void }) { const { t } = useTranslation() const { toast } = useToast() const { publish, checkLogin } = useNostr() const { relayUrls } = useFeed() const [content, setContent] = useState(defaultContent) const [pictureInfos, setPictureInfos] = useState<{ url: string; tags: string[][] }[]>([]) const [posting, setPosting] = useState(false) const [showMoreOptions, setShowMoreOptions] = useState(false) const [postOptions, setPostOptions] = useState({}) const [uploadingPicture, setUploadingPicture] = useState(false) const canPost = !!content && !posting const post = async (e: React.MouseEvent) => { e.stopPropagation() checkLogin(async () => { if (!canPost) { close() return } setPosting(true) try { const additionalRelayUrls: string[] = [] if (parentEvent) { const relayList = await client.fetchRelayList(parentEvent.pubkey) additionalRelayUrls.push(...relayList.read.slice(0, 5)) } let protectedEvent = false if (postOptions.sendOnlyToCurrentRelays) { const relayInfos = await client.fetchRelayInfos(relayUrls) protectedEvent = relayInfos.every((info) => info?.supported_nips?.includes(70)) } const draftEvent = parentEvent && parentEvent.kind !== kinds.ShortTextNote ? await createCommentDraftEvent(content, parentEvent, pictureInfos, { addClientTag: postOptions.addClientTag, protectedEvent }) : await createShortTextNoteDraftEvent(content, pictureInfos, { parentEvent, addClientTag: postOptions.addClientTag, protectedEvent }) await publish(draftEvent, { additionalRelayUrls, specifiedRelayUrls: postOptions.sendOnlyToCurrentRelays ? relayUrls : undefined }) setContent('') close() } catch (error) { if (error instanceof AggregateError) { error.errors.forEach((e) => toast({ variant: 'destructive', title: t('Failed to post'), description: e.message }) ) } else if (error instanceof Error) { toast({ variant: 'destructive', title: t('Failed to post'), description: error.message }) } console.error(error) return } finally { setPosting(false) } toast({ title: t('Post successful'), description: t('Your post has been published') }) }) } return (
{content && }
{ setPictureInfos((prev) => [...prev, { url, tags }]) setContent((prev) => `${prev}\n${url}`) }} onUploadingChange={setUploadingPicture} accept="image/*,video/*,audio/*" >
) }