Files
zap.stream/src/element/send-zap.tsx
2024-02-27 19:16:50 +00:00

230 lines
6.5 KiB
TypeScript

import "./send-zap.css";
import { type ReactNode, useEffect, useState } from "react";
import { LNURL } from "@snort/shared";
import { EventPublisher, NostrEvent } from "@snort/system";
import { secp256k1 } from "@noble/curves/secp256k1";
import { bytesToHex } from "@noble/curves/abstract/utils";
import { FormattedMessage, FormattedNumber } from "react-intl";
import { formatSats } from "../number";
import { Icon } from "./icon";
import QrCode from "./qr-code";
import { useLogin } from "@/hooks/login";
import Copy from "./copy";
import { defaultRelays } from "@/const";
import { useRates } from "@/hooks/rates";
import { DefaultButton } from "./buttons";
import Modal from "./modal";
import Pill from "./pill";
export interface LNURLLike {
get name(): string;
get maxCommentLength(): number;
get canZap(): boolean;
getInvoice(amountInSats: number, comment?: string, zap?: NostrEvent): Promise<{ pr?: string }>;
}
export interface SendZapsProps {
lnurl: string | LNURLLike;
pubkey?: string;
aTag?: string;
eTag?: string;
targetName?: string;
onFinish: () => void;
button?: ReactNode;
}
export function SendZaps({ lnurl, pubkey, aTag, eTag, targetName, onFinish }: SendZapsProps) {
const satsAmounts = [
21, 69, 121, 420, 1_000, 2_100, 4_200, 10_000, 21_000, 42_000, 69_000, 100_000, 210_000, 500_000, 1_000_000,
];
const usdAmounts = [0.05, 0.5, 2, 5, 10, 50, 100, 200];
const [isFiat, setIsFiat] = useState(false);
const [svc, setSvc] = useState<LNURLLike>();
const [amount, setAmount] = useState(satsAmounts[0]);
const [comment, setComment] = useState("");
const [invoice, setInvoice] = useState("");
const login = useLogin();
const rate = useRates("BTCUSD");
const relays = Object.keys(defaultRelays);
const name = targetName ?? svc?.name;
async function loadService(lnurl: string) {
const s = new LNURL(lnurl);
await s.load();
setSvc(s);
}
const usdRate = rate.time ? rate.ask : 26_000;
useEffect(() => {
if (!svc) {
if (typeof lnurl === "string") {
loadService(lnurl).catch(console.warn);
} else {
setSvc(lnurl);
}
}
}, [lnurl]);
async function send() {
if (!svc) return;
let pub = login?.publisher();
let isAnon = false;
if (!pub) {
pub = EventPublisher.privateKey(bytesToHex(secp256k1.utils.randomPrivateKey()));
isAnon = true;
}
const amountInSats = isFiat ? Math.floor((amount / usdRate) * 1e8) : amount;
let zap: NostrEvent | undefined;
if (pubkey) {
zap = await pub.zap(amountInSats * 1000, pubkey, relays, undefined, comment, eb => {
if (aTag) {
eb.tag(["a", aTag]);
}
if (eTag) {
eb.tag(["e", eTag]);
}
if (isAnon) {
eb.tag(["anon", ""]);
}
return eb;
});
}
const invoice = await svc.getInvoice(amountInSats, comment, zap);
if (!invoice.pr) return;
if (window.webln) {
await window.webln.enable();
try {
await window.webln.sendPayment(invoice.pr);
onFinish();
} catch (error) {
setInvoice(invoice.pr);
}
} else {
setInvoice(invoice.pr);
}
}
function input() {
if (invoice) return;
return (
<>
<div className="flex gap-2">
<Pill
selected={!isFiat}
onClick={() => {
setIsFiat(false);
setAmount(satsAmounts[0]);
}}>
SATS
</Pill>
<Pill
selected={isFiat}
onClick={() => {
setIsFiat(true);
setAmount(usdAmounts[0]);
}}>
USD
</Pill>
</div>
<div>
<small className="mb-2">
<FormattedMessage
defaultMessage="Zap amount in {currency}"
id="IJDKz3"
values={{ currency: isFiat ? "USD" : "SATS" }}
/>
{isFiat && (
<>
&nbsp;
<FormattedMessage
defaultMessage="@ {rate}"
id="YPh5Nq"
description="Showing zap amount in USD @ rate"
values={{
rate: <FormattedNumber value={usdRate} />,
}}
/>
</>
)}
</small>
<div className="grid grid-cols-5 gap-2 text-center">
{(isFiat ? usdAmounts : satsAmounts).map(a => (
<Pill key={a} selected={a === amount} onClick={() => setAmount(a)}>
{isFiat ? `$${a.toLocaleString()}` : formatSats(a)}
</Pill>
))}
</div>
</div>
{svc && (svc.maxCommentLength > 0 || svc.canZap) && (
<div>
<small>
<FormattedMessage defaultMessage="Your comment for {name}" id="ESyhzp" values={{ name }} />
</small>
<div className="paper">
<textarea placeholder="Nice!" value={comment} onChange={e => setComment(e.target.value)} />
</div>
</div>
)}
<div>
<DefaultButton onClick={send}>
<FormattedMessage defaultMessage="Zap!" id="3HwrQo" />
</DefaultButton>
</div>
</>
);
}
function payInvoice() {
if (!invoice) return;
const link = `lightning:${invoice}`;
return (
<>
<QrCode data={link} link={link} />
<div className="flex items-center">
<Copy text={invoice} />
</div>
<DefaultButton onClick={() => onFinish()}>
<FormattedMessage defaultMessage="Back" id="cyR7Kh" />
</DefaultButton>
</>
);
}
return (
<div className="flex flex-col gap-4">
<h3 className="flex gap-2 items-center">
<FormattedMessage defaultMessage="Zap {name}" id="oHPB8Q" values={{ name }} />
<Icon name="zap-filled" />
</h3>
{input()}
{payInvoice()}
</div>
);
}
export function SendZapsDialog(props: Omit<SendZapsProps, "onFinish">) {
const [open, setOpen] = useState(false);
return (
<>
{props.button ? (
props.button
) : (
<DefaultButton onClick={() => setOpen(true)}>
<span className="max-xl:hidden">
<FormattedMessage defaultMessage="Zap" id="fBI91o" />
</span>
<Icon name="zap-filled" size={16} />
</DefaultButton>
)}
{open && (
<Modal id="send-zaps" onClose={() => setOpen(false)}>
<SendZaps {...props} onFinish={() => setOpen(false)} />
</Modal>
)}
</>
);
}