mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-01 17:55:11 +00:00
45 lines
1.3 KiB
JavaScript
45 lines
1.3 KiB
JavaScript
import React from 'react';
|
|
import { BusyMessage } from 'component/common';
|
|
import Link from 'component/link';
|
|
import TransactionList from 'component/transactionList';
|
|
import * as icons from 'constants/icons';
|
|
|
|
class TransactionListRecent extends React.PureComponent {
|
|
componentWillMount() {
|
|
this.props.fetchTransactions();
|
|
}
|
|
|
|
render() {
|
|
const { fetchingTransactions, hasTransactions, transactions } = this.props;
|
|
|
|
return (
|
|
<section className="card">
|
|
<div className="card__title-primary">
|
|
<h3>{__('Recent Transactions')}</h3>
|
|
</div>
|
|
<div className="card__content">
|
|
{fetchingTransactions && <BusyMessage message={__('Loading transactions')} />}
|
|
{!fetchingTransactions && (
|
|
<TransactionList
|
|
transactions={transactions}
|
|
emptyMessage={__('You have no recent transactions.')}
|
|
/>
|
|
)}
|
|
</div>
|
|
{hasTransactions && (
|
|
<div className="card__actions card__actions--bottom">
|
|
<Link
|
|
navigate="/history"
|
|
label={__('Full History')}
|
|
icon={icons.HISTORY}
|
|
className="no-underline"
|
|
button="text"
|
|
/>
|
|
</div>
|
|
)}
|
|
</section>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default TransactionListRecent;
|