mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 05:40:31 +00:00
79 lines
2.2 KiB
TypeScript
79 lines
2.2 KiB
TypeScript
// @ts-nocheck
|
|
import { useEffect, lazy } from 'react';
|
|
import styled from 'styled-components';
|
|
import * as R from 'ramda';
|
|
|
|
import '@/style/pages/CashFlow/AccountTransactions/List.scss';
|
|
|
|
import { AccountTransactionsUncategorizeFilter } from './AccountTransactionsUncategorizeFilter';
|
|
import {
|
|
WithBankingActionsProps,
|
|
withBankingActions,
|
|
} from '../withBankingActions';
|
|
import { useAppQueryString } from '@/hooks';
|
|
|
|
const Box = styled.div`
|
|
margin: 30px 15px;
|
|
`;
|
|
|
|
interface AllTransactionsUncategorizedProps extends WithBankingActionsProps {}
|
|
|
|
function AllTransactionsUncategorizedRoot({
|
|
// #withBankingActions
|
|
closeMatchingTransactionAside,
|
|
}: AllTransactionsUncategorizedProps) {
|
|
// Close the match aside once leaving the page.
|
|
useEffect(
|
|
() => () => {
|
|
closeMatchingTransactionAside();
|
|
},
|
|
[closeMatchingTransactionAside],
|
|
);
|
|
|
|
return (
|
|
<Box>
|
|
<AccountTransactionsUncategorizeFilter />
|
|
<AccountTransactionsSwitcher />
|
|
</Box>
|
|
);
|
|
}
|
|
|
|
const AccountExcludedTransactins = lazy(() =>
|
|
import('./UncategorizedTransactions/AccountExcludedTransactions').then(
|
|
(module) => ({ default: module.AccountExcludedTransactions }),
|
|
),
|
|
);
|
|
const AccountRecognizedTransactions = lazy(() =>
|
|
import('./UncategorizedTransactions/AccountRecgonizedTranasctions').then(
|
|
(module) => ({ default: module.AccountRecognizedTransactions }),
|
|
),
|
|
);
|
|
const AccountUncategorizedTransactions = lazy(() =>
|
|
import(
|
|
'./UncategorizedTransactions/AccountUncategorizedTransactionsAll'
|
|
).then((module) => ({ default: module.AccountUncategorizedTransactionsAll })),
|
|
);
|
|
|
|
/**
|
|
* Switches between the account transactions tables.
|
|
* @returns {React.ReactNode}
|
|
*/
|
|
function AccountTransactionsSwitcher() {
|
|
const [locationQuery] = useAppQueryString();
|
|
const uncategorizedTab = locationQuery?.uncategorizedFilter;
|
|
|
|
switch (uncategorizedTab) {
|
|
case 'excluded':
|
|
return <AccountExcludedTransactins />;
|
|
case 'recognized':
|
|
return <AccountRecognizedTransactions />;
|
|
case 'all':
|
|
default:
|
|
return <AccountUncategorizedTransactions />;
|
|
case 'pending':
|
|
return null;
|
|
}
|
|
}
|
|
|
|
export default R.compose(withBankingActions)(AllTransactionsUncategorizedRoot);
|