diff options
author | Sebastian <sebasjm@gmail.com> | 2022-09-01 09:20:59 -0300 |
---|---|---|
committer | Sebastian <sebasjm@gmail.com> | 2022-09-01 09:20:59 -0300 |
commit | 91d5d55edc36bde8ac860fd56b0fd2dcb93b150a (patch) | |
tree | beada3428e64b736fb6845286b5c93a341773fa8 /packages/taler-wallet-webextension | |
parent | 5e7812d63e3e51dbcc9d0d313a3074f9d5d16478 (diff) |
show summary on tx history
Diffstat (limited to 'packages/taler-wallet-webextension')
-rw-r--r-- | packages/taler-wallet-webextension/src/components/TransactionItem.tsx | 8 | ||||
-rw-r--r-- | packages/taler-wallet-webextension/src/wallet/History.stories.tsx | 14 |
2 files changed, 16 insertions, 6 deletions
diff --git a/packages/taler-wallet-webextension/src/components/TransactionItem.tsx b/packages/taler-wallet-webextension/src/components/TransactionItem.tsx index 6dcee6eca..b59d6fad1 100644 --- a/packages/taler-wallet-webextension/src/components/TransactionItem.tsx +++ b/packages/taler-wallet-webextension/src/components/TransactionItem.tsx @@ -119,7 +119,7 @@ export function TransactionItem(props: { tx: Transaction }): VNode { id={tx.transactionId} amount={tx.amountEffective} debitCreditIndicator={"credit"} - title={"Invoice credit"} + title={tx.info.summary || "Invoice"} timestamp={AbsoluteTime.fromTimestamp(tx.timestamp)} iconPath={"I"} pending={tx.pending} @@ -131,7 +131,7 @@ export function TransactionItem(props: { tx: Transaction }): VNode { id={tx.transactionId} amount={tx.amountEffective} debitCreditIndicator={"debit"} - title={"Invoice debit"} + title={tx.info.summary || "Invoice"} timestamp={AbsoluteTime.fromTimestamp(tx.timestamp)} iconPath={"I"} pending={tx.pending} @@ -143,7 +143,7 @@ export function TransactionItem(props: { tx: Transaction }): VNode { id={tx.transactionId} amount={tx.amountEffective} debitCreditIndicator={"credit"} - title={"Transfer credit"} + title={tx.info.summary || "Transfer"} timestamp={AbsoluteTime.fromTimestamp(tx.timestamp)} iconPath={"T"} pending={tx.pending} @@ -155,7 +155,7 @@ export function TransactionItem(props: { tx: Transaction }): VNode { id={tx.transactionId} amount={tx.amountEffective} debitCreditIndicator={"debit"} - title={"Transfer debit"} + title={tx.info.summary || "Transfer"} timestamp={AbsoluteTime.fromTimestamp(tx.timestamp)} iconPath={"T"} pending={tx.pending} diff --git a/packages/taler-wallet-webextension/src/wallet/History.stories.tsx b/packages/taler-wallet-webextension/src/wallet/History.stories.tsx index e37711b8a..1efd917c8 100644 --- a/packages/taler-wallet-webextension/src/wallet/History.stories.tsx +++ b/packages/taler-wallet-webextension/src/wallet/History.stories.tsx @@ -125,7 +125,9 @@ const exampleData = { push_credit: { ...commonTransaction(), type: TransactionType.PeerPushCredit, - + info: { + summary: "take this cash", + }, exchangeBaseUrl: "https://exchange.taler.net", } as TransactionPeerPushCredit, push_debit: { @@ -133,6 +135,9 @@ const exampleData = { type: TransactionType.PeerPushDebit, talerUri: "taler://pay-push/exchange.taler.ar/HS585JK0QCXHJ8Z8QWZA3EBAY5WY7XNC1RR2MHJXSH2Z4WP0YPJ0", + info: { + summary: "take this cash", + }, exchangeBaseUrl: "https://exchange.taler.net", } as TransactionPeerPushDebit, pull_credit: { @@ -140,12 +145,17 @@ const exampleData = { type: TransactionType.PeerPullCredit, talerUri: "taler://pay-push/exchange.taler.ar/HS585JK0QCXHJ8Z8QWZA3EBAY5WY7XNC1RR2MHJXSH2Z4WP0YPJ0", + info: { + summary: "pay me", + }, exchangeBaseUrl: "https://exchange.taler.net", } as TransactionPeerPullCredit, pull_debit: { ...commonTransaction(), type: TransactionType.PeerPullDebit, - + info: { + summary: "pay me", + }, exchangeBaseUrl: "https://exchange.taler.net", } as TransactionPeerPullDebit, }; |