From ca2b4d8c80d208038e99d3b7be8d8e398dc71067 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 7 Nov 2022 15:11:45 -0300 Subject: add payto uri on bank info --- .../src/wallet/ReserveCreated.tsx | 25 ++++++++++++++++ .../src/wallet/Transaction.tsx | 34 ++++++++++++++++++++++ 2 files changed, 59 insertions(+) (limited to 'packages/taler-wallet-webextension/src/wallet') diff --git a/packages/taler-wallet-webextension/src/wallet/ReserveCreated.tsx b/packages/taler-wallet-webextension/src/wallet/ReserveCreated.tsx index 1440229af..38590f715 100644 --- a/packages/taler-wallet-webextension/src/wallet/ReserveCreated.tsx +++ b/packages/taler-wallet-webextension/src/wallet/ReserveCreated.tsx @@ -17,6 +17,7 @@ import { AmountJson, PaytoUri, stringifyPaytoUri } from "@gnu-taler/taler-util"; import { Fragment, h, VNode } from "preact"; import { Amount } from "../components/Amount.js"; import { BankDetailsByPaytoType } from "../components/BankDetailsByPaytoType.js"; +import { CopyButton } from "../components/CopyButton.js"; import { ErrorMessage } from "../components/ErrorMessage.js"; import { QR } from "../components/QR.js"; import { Title, WarningBox } from "../components/styled/index.js"; @@ -56,6 +57,30 @@ export function ReserveCreated({ payto={paytoURI} subject={reservePub} /> + + + + + + + + +
+
+                  
+                    
+                      Payto URI
+                    
+                  
+                
+
{stringifyPaytoUri(paytoURI)} + stringifyPaytoUri(paytoURI)} /> +

diff --git a/packages/taler-wallet-webextension/src/wallet/Transaction.tsx b/packages/taler-wallet-webextension/src/wallet/Transaction.tsx index 9fff76442..29d1bdd45 100644 --- a/packages/taler-wallet-webextension/src/wallet/Transaction.tsx +++ b/packages/taler-wallet-webextension/src/wallet/Transaction.tsx @@ -42,6 +42,7 @@ import { useEffect, useState } from "preact/hooks"; import emptyImg from "../../static/img/empty.png"; import { Amount } from "../components/Amount.js"; import { BankDetailsByPaytoType } from "../components/BankDetailsByPaytoType.js"; +import { CopyButton } from "../components/CopyButton.js"; import { ErrorTalerOperation } from "../components/ErrorTalerOperation.js"; import { Loading } from "../components/Loading.js"; import { LoadingError } from "../components/LoadingError.js"; @@ -293,6 +294,39 @@ export function TransactionView({ )} subject={transaction.withdrawalDetails.reservePub} /> + + + + + + + + +
+
+                      
+                        
+                          Payto URI
+                        
+                      
+                    
+
+ {transaction.withdrawalDetails.exchangePaytoUris[0]} + + + transaction.withdrawalDetails.type === + WithdrawalType.ManualTransfer + ? transaction.withdrawalDetails.exchangePaytoUris[0] + : "" + } + /> +
Make sure to use the correct subject, otherwise the money will -- cgit v1.2.3