// @flow import React from 'react'; import { useHistory } from 'react-router'; import WalletBalance from 'component/walletBalance'; import TxoList from 'component/txoList'; import Page from 'component/page'; import * as PAGES from 'constants/pages'; import Spinner from 'component/spinner'; import YrblWalletEmpty from 'component/yrblWalletEmpty'; import { Tabs, TabList, Tab, TabPanels, TabPanel } from 'component/common/tabs'; const TAB_QUERY = 'tab'; const TABS = { LBRY_CREDITS_TAB: 'credits', ACCOUNT_HISTORY: 'fiat-account-history', PAYMENT_HISTORY: 'fiat-payment-history', }; type Props = { history: { action: string, push: (string) => void, replace: (string) => void }, location: { search: string, pathname: string }, totalBalance: ?number, }; const WalletPage = (props: Props) => { const { location: { search }, push, } = useHistory(); // @if TARGET='web' const urlParams = new URLSearchParams(search); const currentView = urlParams.get(TAB_QUERY) || TABS.LBRY_CREDITS_TAB; let tabIndex; switch (currentView) { case TABS.LBRY_CREDITS_TAB: tabIndex = 0; break; case TABS.PAYMENT_HISTORY: tabIndex = 1; break; case TABS.ACCOUNT_HISTORY: tabIndex = 2; break; default: tabIndex = 0; break; } function onTabChange(newTabIndex) { let url = `/$/${PAGES.WALLET}?`; if (newTabIndex === 0) { url += `${TAB_QUERY}=${TABS.LBRY_CREDITS_TAB}`; } else if (newTabIndex === 1) { url += `${TAB_QUERY}=${TABS.PAYMENT_HISTORY}`; } else if (newTabIndex === 2) { url += `${TAB_QUERY}=${TABS.ACCOUNT_HISTORY}`; } else { url += `${TAB_QUERY}=${TABS.LBRY_CREDITS_TAB}`; } push(url); } // @endif const { totalBalance } = props; const showIntro = totalBalance === 0; const loading = totalBalance === undefined; return ( <> {/* @if TARGET='web' */} {__('Balance')} {__('Transactions')} {/* balances for lbc and fiat */} {/* transactions panel */}
{loading && (
)} {!loading && ( <> {showIntro && }
)}
{/* @endif */} {/* @if TARGET='app' */} {loading && (
)} {!loading && ( <> {showIntro ? ( ) : (
)} )}
{/* @endif */} ); }; export default WalletPage;