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

174 lines
6.2 KiB
React
Raw Normal View History

// @flow
import React from 'react';
import Button from 'component/button';
import Card from 'component/common/card';
import { Lbryio } from 'lbryinc';
import moment from 'moment';
2021-08-13 15:55:46 +02:00
import { STRIPE_PUBLIC_KEY } from '../../../config';
let stripeEnvironment = 'test';
// if the key contains pk_live it's a live key
// update the environment for the calls to the backend to indicate which environment to hit
if (STRIPE_PUBLIC_KEY.indexOf('pk_live') > -1) {
stripeEnvironment = 'live';
}
type Props = {
accountDetails: any,
transactions: any,
};
const WalletBalance = (props: Props) => {
// receive transactions from parent component
let accountTransactions = props.transactions;
// reverse so most recent payments come first
if (accountTransactions) {
accountTransactions = accountTransactions.reverse();
}
if (accountTransactions && accountTransactions.length > 10) {
accountTransactions.length = 10;
}
// const [detailsExpanded, setDetailsExpanded] = React.useState(false);
const [accountStatusResponse, setAccountStatusResponse] = React.useState();
const [subscriptions, setSubscriptions] = React.useState([]);
function getAccountStatus() {
return Lbryio.call(
'account',
'status',
{
2021-08-13 15:55:46 +02:00
environment: stripeEnvironment,
},
'post'
);
}
React.useEffect(() => {
(async function() {
const response = await getAccountStatus();
setAccountStatusResponse(response);
console.log(response);
})();
}, []);
return (
<><Card
title={'Tip History'}
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>{__('Processing Fee')}</th>
<th>{__('Odysee Fee')}</th>
<th>{__('Received Amount')}</th>
</tr>
</thead>
<tbody>
{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={
transaction.channel_claim_id === transaction.source_claim_id
? 'Channel Page'
2021-08-12 17:44:44 +02:00
: 'Content Page'
}
button="link"
/>
</td>
<td>${transaction.tipped_amount / 100}</td>
<td>${transaction.transaction_fee / 100}</td>
<td>${transaction.application_fee / 100}</td>
<td>${transaction.received_amount / 100}</td>
</tr>
))}
</tbody>
</table>
{!accountTransactions && <p style={{textAlign: 'center', marginTop: '20px', fontSize: '13px', color: 'rgb(171, 171, 171)'}}>No Transactions</p>}
</div>
</>
)}
/>
2021-08-13 15:55:46 +02:00
{/* <Card */}
{/* title={__('Subscriptions (Coming Soon)')} */}
{/* 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> */}
{/* {subscriptions && */}
{/* subscriptions.reverse().map((transaction) => ( */}
{/* <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' */}
{/* : 'Content Page' */}
{/* } */}
{/* button="link" */}
{/* /> */}
{/* </td> */}
{/* <td>${transaction.tipped_amount / 100}</td> */}
{/* <td>{lastFour}</td> */}
{/* <td>{transaction.private_tip ? 'Yes' : 'No'}</td> */}
{/* </tr> */}
{/* ))} */}
{/* </tbody> */}
{/* </table> */}
{/* {(!subscriptions || subscriptions.length === 0) && <p style={{textAlign: 'center', marginTop: '22px', fontSize: '13px', color: 'rgb(171, 171, 171)'}}>No Subscriptions</p>} */}
{/* </div> */}
{/* </> */}
{/* } */}
{/* /> */}
</>
);
};
export default WalletBalance;