From bbcae18f6a3f284f6fee719a9b90d156da960465 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Tue, 24 Aug 2021 12:00:34 -0300 Subject: fix ui transaction list --- .../src/components/TransactionItem.tsx | 169 +++++++++++++++++++++ .../src/components/styled/index.tsx | 5 + 2 files changed, 174 insertions(+) create mode 100644 packages/taler-wallet-webextension/src/components/TransactionItem.tsx (limited to 'packages/taler-wallet-webextension/src/components') diff --git a/packages/taler-wallet-webextension/src/components/TransactionItem.tsx b/packages/taler-wallet-webextension/src/components/TransactionItem.tsx new file mode 100644 index 000000000..e5545b950 --- /dev/null +++ b/packages/taler-wallet-webextension/src/components/TransactionItem.tsx @@ -0,0 +1,169 @@ +import { AmountString, Timestamp, Transaction, TransactionType } from '@gnu-taler/taler-util'; +import { format, formatDistance } from 'date-fns'; +import { h } from 'preact'; +import imageBank from '../../static/img/ri-bank-line.svg'; +import imageHandHeart from '../../static/img/ri-hand-heart-line.svg'; +import imageRefresh from '../../static/img/ri-refresh-line.svg'; +import imageRefund from '../../static/img/ri-refund-2-line.svg'; +import imageShoppingCart from '../../static/img/ri-shopping-cart-line.svg'; +import { Pages } from "../NavigationBar"; +import { Column, ExtraLargeText, HistoryRow, SmallTextLight, LargeText } from './styled/index'; + +export function TransactionItem(props: { tx: Transaction, multiCurrency: boolean }): JSX.Element { + const tx = props.tx; + switch (tx.type) { + case TransactionType.Withdrawal: + return ( + + ); + case TransactionType.Payment: + return ( + + ); + case TransactionType.Refund: + return ( + + ); + case TransactionType.Tip: + return ( + + ); + case TransactionType.Refresh: + return ( + + ); + case TransactionType.Deposit: + return ( + + ); + } +} + +function TransactionLayout(props: TransactionLayoutProps): JSX.Element { + const date = new Date(props.timestamp.t_ms); + const dateStr = format(date, 'dd MMM, hh:mm') + + return ( + + + + + {props.title} + {props.pending ? ( + (Pending) + ) : null} + + {dateStr} + + + + ); +} + +interface TransactionLayoutProps { + debitCreditIndicator: "debit" | "credit" | "unknown"; + amount: AmountString | "unknown"; + timestamp: Timestamp; + title: string; + id: string; + iconPath: string; + pending: boolean; + multiCurrency: boolean; +} + +interface TransactionAmountProps { + debitCreditIndicator: "debit" | "credit" | "unknown"; + amount: AmountString | "unknown"; + pending: boolean; + multiCurrency: boolean; +} + +function TransactionAmount(props: TransactionAmountProps): JSX.Element { + const [currency, amount] = props.amount.split(":"); + let sign: string; + switch (props.debitCreditIndicator) { + case "credit": + sign = "+"; + break; + case "debit": + sign = "-"; + break; + case "unknown": + sign = ""; + } + return ( + + + {sign} + {amount} + + {props.multiCurrency &&
{currency}
} +
+ ); +} + diff --git a/packages/taler-wallet-webextension/src/components/styled/index.tsx b/packages/taler-wallet-webextension/src/components/styled/index.tsx index 6067fa446..66595d84c 100644 --- a/packages/taler-wallet-webextension/src/components/styled/index.tsx +++ b/packages/taler-wallet-webextension/src/components/styled/index.tsx @@ -269,6 +269,7 @@ export const RowLightBorderGray = styled(Row2)` export const HistoryRow = styled.a` text-decoration: none; + color: #212121; display: flex; justify-content: space-between; @@ -312,6 +313,10 @@ export const LightText = styled.div` export const SmallText = styled.div` font-size: small; ` +export const LargeText = styled.div` + font-size: large; +` + export const ExtraLargeText = styled.div` font-size: x-large; ` -- cgit v1.2.3