2021-08-13 19:59:43 +02:00
|
|
|
// @flow
|
|
|
|
import React from 'react';
|
|
|
|
import Button from 'component/button';
|
|
|
|
import moment from 'moment';
|
|
|
|
|
|
|
|
type Props = {
|
|
|
|
accountDetails: any,
|
|
|
|
transactions: any,
|
|
|
|
};
|
|
|
|
|
|
|
|
const WalletBalance = (props: Props) => {
|
|
|
|
// receive transactions from parent component
|
|
|
|
const { transactions } = props;
|
|
|
|
|
|
|
|
let accountTransactions;
|
|
|
|
|
|
|
|
// reverse so most recent payments come first
|
|
|
|
if (transactions && transactions.length) {
|
|
|
|
accountTransactions = transactions.reverse();
|
|
|
|
}
|
|
|
|
|
|
|
|
// if there are more than 10 transactions, limit it to 10 for the frontend
|
2021-08-18 20:06:12 +02:00
|
|
|
// if (accountTransactions && accountTransactions.length > 10) {
|
|
|
|
// accountTransactions.length = 10;
|
|
|
|
// }
|
2021-08-13 19:59:43 +02:00
|
|
|
|
2022-03-29 16:33:09 +02:00
|
|
|
function getSymbol(transaction) {
|
|
|
|
if (transaction.currency === 'eur') {
|
|
|
|
return '€';
|
|
|
|
} else {
|
|
|
|
return '$';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function getCurrencyIso(transaction) {
|
|
|
|
if (transaction.currency === 'eur') {
|
|
|
|
return 'EUR';
|
|
|
|
} else {
|
|
|
|
return 'USD';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-13 19:59:43 +02:00
|
|
|
return (
|
2021-08-18 20:06:12 +02:00
|
|
|
<div className="table__wrapper">
|
|
|
|
<table className="table table--transactions">
|
|
|
|
<thead>
|
2021-08-27 07:07:16 +02:00
|
|
|
<tr>
|
|
|
|
<th className="date-header">{__('Date')}</th>
|
2022-02-11 19:50:55 +01:00
|
|
|
<th className="channelName-header">{<>{__('Receiving Channel Name')}</>}</th>
|
|
|
|
<th className="location-header">{__('Tip Location')}</th>
|
2022-03-29 16:33:09 +02:00
|
|
|
<th className="amount-header">{__('Amount')} </th>
|
2022-02-11 19:50:55 +01:00
|
|
|
<th className="processingFee-header">{__('Processing Fee')}</th>
|
|
|
|
<th className="odyseeFee-header">{__('Odysee Fee')}</th>
|
|
|
|
<th className="receivedAmount-header">{__('Received Amount')}</th>
|
2021-08-27 07:07:16 +02:00
|
|
|
</tr>
|
2021-08-18 20:06:12 +02:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
2021-08-27 07:07:16 +02:00
|
|
|
{accountTransactions &&
|
|
|
|
accountTransactions.map((transaction) => (
|
|
|
|
<tr key={transaction.name + transaction.created_at}>
|
|
|
|
<td>{moment(transaction.created_at).format('LLL')}</td>
|
|
|
|
<td>
|
|
|
|
<Button
|
|
|
|
className=""
|
|
|
|
navigate={'/' + transaction.channel_name + ':' + transaction.channel_claim_id}
|
|
|
|
label={transaction.channel_name}
|
|
|
|
button="link"
|
|
|
|
/>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<Button
|
|
|
|
className=""
|
|
|
|
navigate={'/' + transaction.channel_name + ':' + transaction.source_claim_id}
|
|
|
|
label={
|
2021-10-15 08:17:23 +02:00
|
|
|
transaction.channel_claim_id === transaction.source_claim_id
|
|
|
|
? __('Channel Page')
|
|
|
|
: __('Content Page')
|
2021-08-27 07:07:16 +02:00
|
|
|
}
|
|
|
|
button="link"
|
|
|
|
/>
|
|
|
|
</td>
|
2022-03-29 16:33:09 +02:00
|
|
|
<td>
|
|
|
|
{getSymbol(transaction)}
|
|
|
|
{transaction.tipped_amount / 100} {getCurrencyIso(transaction)}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{getSymbol(transaction)}
|
|
|
|
{transaction.transaction_fee / 100}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{getSymbol(transaction)}
|
|
|
|
{transaction.application_fee / 100}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{getSymbol(transaction)}
|
|
|
|
{transaction.received_amount / 100}
|
|
|
|
</td>
|
2021-08-27 07:07:16 +02:00
|
|
|
</tr>
|
|
|
|
))}
|
2021-08-18 20:06:12 +02:00
|
|
|
</tbody>
|
|
|
|
</table>
|
2021-10-15 08:17:23 +02:00
|
|
|
{!accountTransactions && <p className="wallet__fiat-transactions">{__('No Transactions')}</p>}
|
2021-08-18 20:06:12 +02:00
|
|
|
</div>
|
2021-08-13 19:59:43 +02:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default WalletBalance;
|