import "./NoteCreator.css"; import { FormattedMessage, useIntl } from "react-intl"; import { EventKind, NostrPrefix, TaggedNostrEvent, EventBuilder, tryParseNostrLink, NostrLink } from "@snort/system"; import classNames from "classnames"; import Icon from "Icons/Icon"; import useEventPublisher from "Hooks/useEventPublisher"; import { openFile } from "SnortUtils"; import Textarea from "Element/Textarea"; import Modal from "Element/Modal"; import ProfileImage from "Element/User/ProfileImage"; import useFileUpload from "Upload"; import Note from "Element/Event/Note"; import { ClipboardEventHandler } from "react"; import useLogin from "Hooks/useLogin"; import { GetPowWorker } from "index"; import AsyncButton from "Element/AsyncButton"; import { AsyncIcon } from "Element/AsyncIcon"; import { fetchNip05Pubkey } from "@snort/shared"; import { ZapTarget } from "Zapper"; import { useNoteCreator } from "State/NoteCreator"; import { NoteBroadcaster } from "./NoteBroadcaster"; import FileUploadProgress from "./FileUpload"; import { ToggleSwitch } from "Icons/Toggle"; export function NoteCreator() { const { formatMessage } = useIntl(); const uploader = useFileUpload(); const login = useLogin(s => ({ relays: s.relays, publicKey: s.publicKey, pow: s.preferences.pow })); const { publisher: pub } = useEventPublisher(); const publisher = login.pow ? pub?.pow(login.pow, GetPowWorker()) : pub; const note = useNoteCreator(); const relays = login.relays; async function buildNote() { try { note.update(v => (v.error = "")); if (note && publisher) { let extraTags: Array> | undefined; if (note.zapSplits) { const parsedSplits = [] as Array; for (const s of note.zapSplits) { if (s.value.startsWith(NostrPrefix.PublicKey) || s.value.startsWith(NostrPrefix.Profile)) { const link = tryParseNostrLink(s.value); if (link) { parsedSplits.push({ ...s, value: link.id }); } else { throw new Error( formatMessage( { defaultMessage: "Failed to parse zap split: {input}", }, { input: s.value, }, ), ); } } else if (s.value.includes("@")) { const [name, domain] = s.value.split("@"); const pubkey = await fetchNip05Pubkey(name, domain); if (pubkey) { parsedSplits.push({ ...s, value: pubkey }); } else { throw new Error( formatMessage( { defaultMessage: "Failed to parse zap split: {input}", }, { input: s.value, }, ), ); } } else { throw new Error( formatMessage( { defaultMessage: "Invalid zap split: {input}", }, { input: s.value, }, ), ); } } extraTags = parsedSplits.map(v => ["zap", v.value, "", String(v.weight)]); } if (note.sensitive) { extraTags ??= []; extraTags.push(["content-warning", note.sensitive]); } const kind = note.pollOptions ? EventKind.Polls : EventKind.TextNote; if (note.pollOptions) { extraTags ??= []; extraTags.push(...note.pollOptions.map((a, i) => ["poll_option", i.toString(), a])); } // add quote repost if (note.quote) { if (!note.note.endsWith("\n")) { note.note += "\n"; } const link = NostrLink.fromEvent(note.quote); note.note += `nostr:${link.encode(CONFIG.eventLinkPrefix)}`; const quoteTag = link.toEventTag(); if (quoteTag) { extraTags ??= []; if (quoteTag[0] === "e") { quoteTag[0] = "q"; // how to 'q' tag replacable events? } extraTags.push(quoteTag); } } const hk = (eb: EventBuilder) => { extraTags?.forEach(t => eb.tag(t)); note.extraTags?.forEach(t => eb.tag(t)); eb.kind(kind); return eb; }; const ev = note.replyTo ? await publisher.reply(note.replyTo, note.note, hk) : await publisher.note(note.note, hk); return ev; } } catch (e) { note.update(v => { if (e instanceof Error) { v.error = e.message; } else { v.error = e as string; } }); } } async function sendNote() { const ev = await buildNote(); if (ev) { note.update(n => { n.sending = (note.otherEvents ?? []).concat(ev); }); } } async function attachFile() { try { const file = await openFile(); if (file) { uploadFile(file); } } catch (e) { note.update(v => { if (e instanceof Error) { v.error = e.message; } else { v.error = e as string; } }); } } async function uploadFile(file: File | Blob) { try { if (file) { const rx = await uploader.upload(file, file.name); note.update(v => { if (rx.header) { const link = `nostr:${new NostrLink(NostrPrefix.Event, rx.header.id, rx.header.kind).encode( CONFIG.eventLinkPrefix, )}`; v.note = `${v.note ? `${v.note}\n` : ""}${link}`; v.otherEvents = [...(v.otherEvents ?? []), rx.header]; } else if (rx.url) { v.note = `${v.note ? `${v.note}\n` : ""}${rx.url}`; if (rx.metadata) { v.extraTags ??= []; const imeta = ["imeta", `url ${rx.url}`]; if (rx.metadata.blurhash) { imeta.push(`blurhash ${rx.metadata.blurhash}`); } if (rx.metadata.width && rx.metadata.height) { imeta.push(`dim ${rx.metadata.width}x${rx.metadata.height}`); } v.extraTags.push(imeta); } } else if (rx?.error) { v.error = rx.error; } }); } } catch (e) { note.update(v => { if (e instanceof Error) { v.error = e.message; } else { v.error = e as string; } }); } } function onChange(ev: React.ChangeEvent) { const { value } = ev.target; note.update(n => (n.note = value)); } function cancel() { note.update(v => { v.show = false; v.reset(); }); } async function onSubmit(ev: React.MouseEvent) { ev.stopPropagation(); await sendNote(); } async function loadPreview() { if (note.preview) { note.update(v => (v.preview = undefined)); } else if (publisher) { const tmpNote = await buildNote(); note.update(v => (v.preview = tmpNote)); } } function getPreviewNote() { if (note.preview) { return ( ); } } function renderPollOptions() { if (note.pollOptions) { return ( <>

{note.pollOptions?.map((a, i) => (
changePollOption(i, e.target.value)} /> {i > 1 && ( )}
))} ); } } function changePollOption(i: number, v: string) { if (note.pollOptions) { const copy = [...note.pollOptions]; copy[i] = v; note.update(v => (v.pollOptions = copy)); } } function removePollOption(i: number) { if (note.pollOptions) { const copy = [...note.pollOptions]; copy.splice(i, 1); note.update(v => (v.pollOptions = copy)); } } function renderRelayCustomisation() { return (
{Object.keys(relays.item || {}) .filter(el => relays.item[el].write) .map((r, i, a) => (
{r}
{ note.update( v => (v.selectedCustomRelays = // set false if all relays selected e.target.checked && note.selectedCustomRelays && note.selectedCustomRelays.length == a.length - 1 ? undefined : // otherwise return selectedCustomRelays with target relay added / removed a.filter(el => el === r ? e.target.checked : !note.selectedCustomRelays || note.selectedCustomRelays.includes(el), )), ); }} />
))}
); } /*function listAccounts() { return LoginStore.getSessions().map(a => ( { ev.stopPropagation = true; LoginStore.switchAccount(a); }}> )); }*/ function noteCreatorAdvanced() { return ( <>

{renderRelayCustomisation()}

{[...(note.zapSplits ?? [])].map((v, i, arr) => (

note.update( v => (v.zapSplits = arr.map((vv, ii) => (ii === i ? { ...vv, value: e.target.value } : vv))), ) } placeholder={formatMessage({ defaultMessage: "npub / nprofile / nostr address" })} />

note.update( v => (v.zapSplits = arr.map((vv, ii) => ii === i ? { ...vv, weight: Number(e.target.value) } : vv, )), ) } />
 
note.update(v => (v.zapSplits = (v.zapSplits ?? []).filter((_v, ii) => ii !== i)))} />
))}

note.update(v => (v.sensitive = e.target.value))} maxLength={50} minLength={1} placeholder={formatMessage({ defaultMessage: "Reason", })} />
); } function noteCreatorFooter() { return (
{note.pollOptions === undefined && !note.replyTo && ( note.update(v => (v.pollOptions = ["A", "B"]))} className={classNames("note-creator-icon", { active: note.pollOptions !== undefined })} /> )} note.update(v => (v.advanced = !v.advanced))} className={classNames("note-creator-icon", { active: note.advanced })} /> loadPreview()} size={40} className={classNames({ active: Boolean(note.preview) })} />
{note.replyTo ? : }
); } const handlePaste: ClipboardEventHandler = evt => { if (evt.clipboardData) { const clipboardItems = evt.clipboardData.items; const items: DataTransferItem[] = Array.from(clipboardItems).filter(function (item: DataTransferItem) { // Filter the image items only return /^image\//.test(item.type); }); if (items.length === 0) { return; } const item = items[0]; const blob = item.getAsFile(); if (blob) { uploadFile(blob); } } }; function noteCreatorForm() { return ( <> {note.replyTo && ( <>

)} {note.quote && ( <>

)} {note.preview && getPreviewNote()} {!note.preview && (