lbry-desktop/ui/component/walletFiatPaymentHistory/view.jsx

229 lines
7.2 KiB
React
Raw Normal View History

2021-07-28 16:12:02 +02:00
// @flow
import * as ICONS from 'constants/icons';
import * as MODALS from 'constants/modal_types';
import * as PAGES from 'constants/pages';
import React from 'react';
import CreditAmount from 'component/common/credit-amount';
import Button from 'component/button';
import HelpLink from 'component/common/help-link';
import Card from 'component/common/card';
import Icon from 'component/common/icon';
import LbcSymbol from 'component/common/lbc-symbol';
import I18nMessage from 'component/i18nMessage';
import { formatNumberWithCommas } from 'util/number';
2021-07-28 19:06:14 +02:00
import { Lbryio } from 'lbryinc';
2021-07-28 23:10:46 +02:00
import moment from 'moment';
2021-07-28 16:12:02 +02:00
type Props = {
2021-07-28 19:06:14 +02:00
accountDetails: any,
2021-07-28 23:10:46 +02:00
transactions: any,
2021-07-29 19:09:30 +02:00
totalTippedAmount: number,
2021-07-28 16:12:02 +02:00
};
const WalletBalance = (props: Props) => {
const {
2021-07-29 19:09:30 +02:00
2021-07-28 16:12:02 +02:00
} = props;
2021-07-28 23:10:46 +02:00
2021-07-29 13:48:33 +02:00
// receive transactions from parent component
let accountTransactions = props.transactions;
2021-07-29 19:29:05 +02:00
console.log('heres transactions')
console.log(accountTransactions);
2021-07-29 19:09:30 +02:00
// let totalTippedAmount = props.totalTippedAmount;
// totalTippedAmount = 0;
2021-07-29 13:48:33 +02:00
// reverse so most recent payments come first
if(accountTransactions){
accountTransactions = accountTransactions.reverse();
}
2021-07-28 23:10:46 +02:00
2021-07-28 16:12:02 +02:00
const [detailsExpanded, setDetailsExpanded] = React.useState(false);
2021-07-28 19:06:14 +02:00
const [accountStatusResponse, setAccountStatusResponse] = React.useState();
2021-07-29 18:32:50 +02:00
const [paymentHistoryTransactions, setPaymentHistoryTransactions] = React.useState();
2021-07-29 18:44:32 +02:00
const [subscriptions, setSubscriptions] = React.useState();
2021-07-29 19:09:30 +02:00
const [totalTippedAmount, setTotalTippedAmount] = React.useState(0);
2021-07-29 18:32:50 +02:00
2021-07-28 16:12:02 +02:00
2021-07-29 18:44:32 +02:00
const [lastFour, setLastFour] = React.useState();
2021-07-28 16:12:02 +02:00
2021-07-28 19:06:14 +02:00
var environment = 'test';
2021-07-29 18:32:50 +02:00
function getPaymentHistory() {
return Lbryio.call(
'customer',
'list',
{
environment,
},
'post'
)};
function getCustomerStatus(){
return Lbryio.call(
'customer',
'status',
{
environment,
},
'post'
)
}
2021-07-28 19:06:14 +02:00
React.useEffect(() => {
(async function(){
2021-07-29 19:29:05 +02:00
let response = accountTransactions;
console.log('payment transactions');
console.log(response);
const customerStatusResponse = await getCustomerStatus();
2021-07-29 18:32:50 +02:00
2021-07-29 19:29:05 +02:00
let totalTippedAmount = 0;
2021-07-29 18:32:50 +02:00
2021-07-29 19:29:05 +02:00
for(const transaction of response){
totalTippedAmount = totalTippedAmount + transaction.tipped_amount
}
2021-07-29 19:09:30 +02:00
2021-07-29 19:29:05 +02:00
setTotalTippedAmount(totalTippedAmount / 100);
2021-07-29 19:09:30 +02:00
2021-07-29 19:29:05 +02:00
setLastFour(customerStatusResponse.PaymentMethods[0].card.last4);
2021-07-29 19:09:30 +02:00
2021-07-29 19:29:05 +02:00
if (response.length > 10) response.length = 10;
2021-07-29 18:32:50 +02:00
2021-07-29 19:29:05 +02:00
setPaymentHistoryTransactions(response);
2021-07-28 19:06:14 +02:00
2021-07-29 19:29:05 +02:00
const subscriptions = [...response];
2021-07-28 19:06:14 +02:00
2021-07-29 19:29:05 +02:00
if(subscriptions.length > 2){
subscriptions.length = 2
setSubscriptions([])
} else {
setSubscriptions([])
}
2021-07-29 18:44:32 +02:00
2021-07-29 19:29:05 +02:00
console.log(response);
2021-07-29 18:44:32 +02:00
2021-07-28 19:06:14 +02:00
})();
}, []);
2021-07-28 16:12:02 +02:00
return (
2021-07-29 18:44:32 +02:00
<>
<Card
title={__('Payment History')}
body={
<>
2021-07-29 19:09:30 +02:00
<h2>{totalTippedAmount}</h2>
2021-07-29 18:44:32 +02:00
<div className="table__wrapper">
<table className="table table--transactions">
<thead>
<tr>
<th className="date-header">{__('Date')}</th>
<th>{<>{__('Receiving Channel Name')}</>}</th>
<th>{__('Tip Location')}</th>
<th>{__('Amount (USD)')} </th>
<th>{__('Card Last 4')}</th>
<th>{__('Anonymous')}</th>
</tr>
</thead>
<tbody>
2021-07-29 19:29:05 +02:00
{accountTransactions &&
accountTransactions.map((transaction) => (
2021-07-29 18:44:32 +02:00
<tr key={transaction.name + transaction.created_at}>
<td>{moment(transaction.created_at).format('LLL')}</td>
<td>
<Button
className="stripe__card-link-text"
navigate={'/' + transaction.channel_name + ':' + transaction.channel_claim_id}
label={transaction.channel_name}
button="link"
/>
</td>
<td>
<Button
className="stripe__card-link-text"
navigate={'/' + transaction.channel_name + ':' + transaction.source_claim_id}
label={
transaction.channel_claim_id === transaction.source_claim_id
? 'Channel Page'
: 'File Page'
}
button="link"
/>
</td>
<td>${transaction.tipped_amount / 100}</td>
<td>{lastFour}</td>
<td>{transaction.private_tip ? 'Yes' : 'No'}</td>
</tr>
))}
</tbody>
</table>
2021-07-29 18:49:07 +02:00
{(!paymentHistoryTransactions || paymentHistoryTransactions.length === 0) && <p style={{textAlign:"center", marginTop: '20px', fontSize: '13px', color: 'rgb(171, 171, 171)'}}>No Transactions</p>}
2021-07-29 18:44:32 +02:00
</div>
</>
}
/>
2021-07-28 16:12:02 +02:00
<Card
2021-07-29 18:44:32 +02:00
title={__('Subscriptions')}
2021-07-29 18:32:50 +02:00
body={
<>
<div className="table__wrapper">
<table className="table table--transactions">
<thead>
<tr>
<th className="date-header">{__('Date')}</th>
<th>{<>{__('Receiving Channel Name')}</>}</th>
<th>{__('Tip Location')}</th>
<th>{__('Amount (USD)')} </th>
<th>{__('Card Last 4')}</th>
<th>{__('Anonymous')}</th>
</tr>
</thead>
<tbody>
2021-07-29 18:44:32 +02:00
{subscriptions &&
subscriptions.reverse().map((transaction) => (
2021-07-29 18:32:50 +02:00
<tr key={transaction.name + transaction.created_at}>
<td>{moment(transaction.created_at).format('LLL')}</td>
<td>
<Button
className="stripe__card-link-text"
navigate={'/' + transaction.channel_name + ':' + transaction.channel_claim_id}
label={transaction.channel_name}
button="link"
/>
</td>
<td>
<Button
className="stripe__card-link-text"
navigate={'/' + transaction.channel_name + ':' + transaction.source_claim_id}
label={
transaction.channel_claim_id === transaction.source_claim_id
? 'Channel Page'
: 'File Page'
}
button="link"
/>
</td>
<td>${transaction.tipped_amount / 100}</td>
<td>{lastFour}</td>
<td>{transaction.private_tip ? 'Yes' : 'No'}</td>
2021-07-28 23:10:46 +02:00
</tr>
2021-07-29 18:32:50 +02:00
))}
</tbody>
</table>
2021-07-29 18:49:07 +02:00
{(!subscriptions || subscriptions.length === 0) && <p style={{textAlign:"center", marginTop: '20px', fontSize: '13px', color: 'rgb(171, 171, 171)'}}>No Subscriptions</p>}
2021-07-29 18:32:50 +02:00
</div>
</>
}
2021-07-28 16:12:02 +02:00
/>
2021-07-29 18:44:32 +02:00
</>
2021-07-28 16:12:02 +02:00
);
};
export default WalletBalance;