2020-04-10 19:31:36 +02:00
|
|
|
// @flow
|
2019-06-17 22:32:38 +02:00
|
|
|
import React from 'react';
|
2020-04-10 19:31:36 +02:00
|
|
|
import { withRouter } from 'react-router';
|
2019-06-17 22:32:38 +02:00
|
|
|
import WalletBalance from 'component/walletBalance';
|
2020-04-10 19:31:36 +02:00
|
|
|
import TxoList from 'component/txoList';
|
2019-06-17 22:32:38 +02:00
|
|
|
import Page from 'component/page';
|
2020-06-01 19:03:19 +02:00
|
|
|
import Spinner from 'component/spinner';
|
2020-08-26 19:19:03 +02:00
|
|
|
import YrblWalletEmpty from 'component/yrblWalletEmpty';
|
2019-06-17 22:32:38 +02:00
|
|
|
|
2020-04-10 19:31:36 +02:00
|
|
|
type Props = {
|
|
|
|
history: { action: string, push: string => void, replace: string => void },
|
|
|
|
location: { search: string, pathname: string },
|
2020-06-01 19:03:19 +02:00
|
|
|
balance: number,
|
2020-04-10 19:31:36 +02:00
|
|
|
};
|
2019-06-17 22:32:38 +02:00
|
|
|
|
2020-04-10 19:31:36 +02:00
|
|
|
const WalletPage = (props: Props) => {
|
2020-08-26 19:19:03 +02:00
|
|
|
const { location, balance } = props;
|
2020-04-10 19:31:36 +02:00
|
|
|
const { search } = location;
|
2020-06-01 19:03:19 +02:00
|
|
|
const showIntro = balance === 0;
|
|
|
|
const loading = balance === undefined;
|
2020-04-10 19:31:36 +02:00
|
|
|
|
|
|
|
return (
|
|
|
|
<Page>
|
2020-06-01 19:03:19 +02:00
|
|
|
{loading && (
|
|
|
|
<div className="main--empty">
|
|
|
|
<Spinner delayed />
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{!loading && (
|
|
|
|
<>
|
|
|
|
{showIntro ? (
|
2020-08-26 19:19:03 +02:00
|
|
|
<YrblWalletEmpty includeWalletLink />
|
2020-06-01 19:03:19 +02:00
|
|
|
) : (
|
2021-01-12 16:25:51 +01:00
|
|
|
<div className="card-stack">
|
2020-06-01 19:03:19 +02:00
|
|
|
<WalletBalance />
|
|
|
|
<TxoList search={search} />
|
2021-01-12 16:25:51 +01:00
|
|
|
</div>
|
2020-06-01 19:03:19 +02:00
|
|
|
)}
|
|
|
|
</>
|
|
|
|
)}
|
2020-04-10 19:31:36 +02:00
|
|
|
</Page>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default withRouter(WalletPage);
|