mirror of
https://github.com/apotdevin/thunderhub.git
synced 2024-11-20 02:08:59 +01:00
190 lines
5.2 KiB
TypeScript
190 lines
5.2 KiB
TypeScript
import React, { useState, useEffect } from 'react';
|
|
import { toast } from 'react-toastify';
|
|
import { InvoiceCard } from 'src/views/transactions/InvoiceCard';
|
|
import {
|
|
useGetResumeQuery,
|
|
GetResumeQuery,
|
|
} from 'src/graphql/queries/__generated__/getResume.generated';
|
|
import { GridWrapper } from 'src/components/gridWrapper/GridWrapper';
|
|
|
|
import { NextPageContext } from 'next';
|
|
import { getProps } from 'src/utils/ssr';
|
|
import { GET_RESUME } from 'src/graphql/queries/getResume';
|
|
import { GET_IN_OUT } from 'src/graphql/queries/getInOut';
|
|
import { RefreshCw } from 'react-feather';
|
|
import styled, { css } from 'styled-components';
|
|
import { GET_NODE_INFO } from 'src/graphql/queries/getNodeInfo';
|
|
import {
|
|
Card,
|
|
CardWithTitle,
|
|
SubTitle,
|
|
SingleLine,
|
|
} from '../src/components/generic/Styled';
|
|
import { getErrorContent } from '../src/utils/error';
|
|
import { PaymentsCard } from '../src/views/transactions/PaymentsCards';
|
|
import { LoadingCard } from '../src/components/loading/LoadingCard';
|
|
import { ColorButton } from '../src/components/buttons/colorButton/ColorButton';
|
|
import { FlowBox } from '../src/views/home/reports/flow';
|
|
|
|
type RotationProps = {
|
|
withRotation: boolean;
|
|
};
|
|
|
|
const Rotation = styled.div<RotationProps>`
|
|
${({ withRotation }) =>
|
|
withRotation &&
|
|
css`
|
|
animation: rotation 2s infinite linear;
|
|
`}
|
|
|
|
@keyframes rotation {
|
|
from {
|
|
transform: rotate(0deg);
|
|
}
|
|
to {
|
|
transform: rotate(359deg);
|
|
}
|
|
}
|
|
`;
|
|
|
|
const TransactionsView = () => {
|
|
const [isPolling, setIsPolling] = useState(false);
|
|
const [indexOpen, setIndexOpen] = useState(0);
|
|
const [token, setToken] = useState('');
|
|
|
|
const {
|
|
loading,
|
|
data,
|
|
fetchMore,
|
|
startPolling,
|
|
stopPolling,
|
|
} = useGetResumeQuery({
|
|
ssr: false,
|
|
variables: { token: '' },
|
|
onError: error => toast.error(getErrorContent(error)),
|
|
});
|
|
|
|
useEffect(() => {
|
|
if (!loading && data && data.getResume && data.getResume.token) {
|
|
setToken(data.getResume.token);
|
|
}
|
|
}, [data, loading]);
|
|
|
|
useEffect(() => {
|
|
return () => stopPolling();
|
|
}, [stopPolling]);
|
|
|
|
if (loading || !data || !data.getResume) {
|
|
return <LoadingCard title={'Transactions'} />;
|
|
}
|
|
|
|
const resumeList = data.getResume.resume;
|
|
|
|
return (
|
|
<>
|
|
<FlowBox />
|
|
<CardWithTitle>
|
|
<SingleLine>
|
|
<SubTitle>Transactions</SubTitle>
|
|
<ColorButton
|
|
withMargin={'0 0 8px'}
|
|
onClick={() => {
|
|
if (isPolling) {
|
|
setIsPolling(false);
|
|
stopPolling();
|
|
} else {
|
|
setIsPolling(true);
|
|
startPolling(1000);
|
|
}
|
|
}}
|
|
>
|
|
<Rotation withRotation={isPolling}>
|
|
<RefreshCw size={18} />
|
|
</Rotation>
|
|
</ColorButton>
|
|
</SingleLine>
|
|
<Card bottom={'8px'} mobileCardPadding={'0'} mobileNoBackground={true}>
|
|
{resumeList?.map((entry, index: number) => {
|
|
if (!entry) {
|
|
return null;
|
|
}
|
|
if (entry.__typename === 'InvoiceType') {
|
|
return (
|
|
<InvoiceCard
|
|
invoice={entry}
|
|
key={index}
|
|
index={index + 1}
|
|
setIndexOpen={setIndexOpen}
|
|
indexOpen={indexOpen}
|
|
/>
|
|
);
|
|
}
|
|
if (entry.__typename === 'PaymentType') {
|
|
return (
|
|
<PaymentsCard
|
|
payment={entry}
|
|
key={index}
|
|
index={index + 1}
|
|
setIndexOpen={setIndexOpen}
|
|
indexOpen={indexOpen}
|
|
/>
|
|
);
|
|
}
|
|
return null;
|
|
})}
|
|
<ColorButton
|
|
fullWidth={true}
|
|
withMargin={'16px 0 0'}
|
|
onClick={() => {
|
|
fetchMore({
|
|
variables: { token },
|
|
updateQuery: (
|
|
prev,
|
|
{ fetchMoreResult }: { fetchMoreResult?: GetResumeQuery }
|
|
): GetResumeQuery => {
|
|
if (!fetchMoreResult?.getResume) return prev;
|
|
const newToken = fetchMoreResult.getResume.token || '';
|
|
const prevEntries = prev?.getResume
|
|
? prev.getResume.resume
|
|
: [];
|
|
const newEntries = fetchMoreResult.getResume.resume;
|
|
|
|
const allTransactions = newToken
|
|
? [...prevEntries, ...newEntries]
|
|
: prevEntries;
|
|
|
|
return {
|
|
getResume: {
|
|
token: newToken,
|
|
resume: allTransactions,
|
|
__typename: 'getResumeType',
|
|
},
|
|
};
|
|
},
|
|
});
|
|
}}
|
|
>
|
|
Show More
|
|
</ColorButton>
|
|
</Card>
|
|
</CardWithTitle>
|
|
</>
|
|
);
|
|
};
|
|
|
|
const Wrapped = () => (
|
|
<GridWrapper>
|
|
<TransactionsView />
|
|
</GridWrapper>
|
|
);
|
|
|
|
export default Wrapped;
|
|
|
|
export async function getServerSideProps(context: NextPageContext) {
|
|
return await getProps(context, [
|
|
GET_RESUME,
|
|
{ document: GET_IN_OUT, variables: { time: 'month' } },
|
|
GET_NODE_INFO,
|
|
]);
|
|
}
|