mirror of
https://github.com/aljazceru/mutiny-web.git
synced 2026-02-23 15:14:19 +01:00
Show lightning address on send screen
This commit is contained in:
committed by
benthecarman
parent
eba9453bee
commit
7c9189e7a2
@@ -128,7 +128,7 @@ export default {
|
||||
payment_pending_description:
|
||||
"It's taking a while, but it's possible this payment may still go through. Please check 'Activity' for the current status.",
|
||||
hodl_invoice_warning:
|
||||
"This is a hodl invoice. Payments to hodl invoices can cause in channel force closes, which results in high on-chain fees. Pay at your own risk!"
|
||||
"This is a hodl invoice. Payments to hodl invoices can cause channel force closes, which results in high on-chain fees. Pay at your own risk!"
|
||||
},
|
||||
feedback: {
|
||||
header: "Give us feedback!",
|
||||
|
||||
@@ -14,6 +14,7 @@ export type ParsedParams = {
|
||||
privateTag?: string;
|
||||
node_pubkey?: string;
|
||||
lnurl?: string;
|
||||
lightning_address?: string;
|
||||
};
|
||||
|
||||
export function toParsedParams(
|
||||
@@ -54,7 +55,8 @@ export function toParsedParams(
|
||||
network,
|
||||
memo: params.memo,
|
||||
node_pubkey: params.node_pubkey,
|
||||
lnurl: params.lnurl
|
||||
lnurl: params.lnurl,
|
||||
lightning_address: params.lightning_address
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
@@ -179,6 +179,7 @@ function DestinationShower(props: {
|
||||
invoice?: MutinyInvoice;
|
||||
nodePubkey?: string;
|
||||
lnurl?: string;
|
||||
lightning_address?: string;
|
||||
clearAll: () => void;
|
||||
}) {
|
||||
return (
|
||||
@@ -192,7 +193,18 @@ function DestinationShower(props: {
|
||||
<Match when={props.nodePubkey && props.source === "lightning"}>
|
||||
<StringShower text={props.nodePubkey || ""} />
|
||||
</Match>
|
||||
<Match when={props.lnurl && props.source === "lightning"}>
|
||||
<Match
|
||||
when={props.lightning_address && props.source === "lightning"}
|
||||
>
|
||||
<StringShower text={props.lightning_address || ""} />
|
||||
</Match>
|
||||
<Match
|
||||
when={
|
||||
props.lnurl &&
|
||||
!props.lightning_address &&
|
||||
props.source === "lightning"
|
||||
}
|
||||
>
|
||||
<StringShower text={props.lnurl || ""} />
|
||||
</Match>
|
||||
</Switch>
|
||||
@@ -241,6 +253,7 @@ export default function Send() {
|
||||
const [invoice, setInvoice] = createSignal<MutinyInvoice>();
|
||||
const [nodePubkey, setNodePubkey] = createSignal<string>();
|
||||
const [lnurlp, setLnurlp] = createSignal<string>();
|
||||
const [lnAddress, setLnAddress] = createSignal<string>();
|
||||
const [address, setAddress] = createSignal<string>();
|
||||
const [description, setDescription] = createSignal<string>();
|
||||
|
||||
@@ -267,12 +280,14 @@ export default function Send() {
|
||||
setDestination(undefined);
|
||||
setAmountSats(0n);
|
||||
setIsAmtEditable(true);
|
||||
setIsHodlInvoice(false);
|
||||
setSource("lightning");
|
||||
setInvoice(undefined);
|
||||
setAddress(undefined);
|
||||
setDescription(undefined);
|
||||
setNodePubkey(undefined);
|
||||
setLnurlp(undefined);
|
||||
setLnAddress(undefined);
|
||||
setFieldDestination("");
|
||||
}
|
||||
|
||||
@@ -418,6 +433,18 @@ export default function Send() {
|
||||
} else {
|
||||
setAmountSats(source.amount_sats || 0n);
|
||||
}
|
||||
|
||||
// If it is a lightning address, set the address so we can display it
|
||||
if (source.lightning_address) {
|
||||
setLnAddress(source.lightning_address);
|
||||
// check for hodl invoices
|
||||
setIsHodlInvoice(
|
||||
source.lightning_address
|
||||
.toLowerCase()
|
||||
.includes("zeuspay.com")
|
||||
);
|
||||
}
|
||||
|
||||
setLnurlp(source.lnurl);
|
||||
setSource("lightning");
|
||||
}
|
||||
@@ -736,6 +763,7 @@ export default function Send() {
|
||||
address={address()}
|
||||
nodePubkey={nodePubkey()}
|
||||
lnurl={lnurlp()}
|
||||
lightning_address={lnAddress()}
|
||||
clearAll={clearAll}
|
||||
/>
|
||||
<SmallHeader>
|
||||
|
||||
Reference in New Issue
Block a user