mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-01 01:18:10 +02:00
* refactor: add useInvoices hook * refactor: invoiceList and InvoiceAdminPage * fix: declare path outside of the hook Co-authored-by: Fredrik Strand Oseberg <fredrik.no@gmail.com>
123 lines
5.3 KiB
TypeScript
123 lines
5.3 KiB
TypeScript
import { useEffect, useState } from 'react';
|
|
import {
|
|
Table,
|
|
TableHead,
|
|
TableBody,
|
|
TableRow,
|
|
TableCell,
|
|
Button,
|
|
} from '@material-ui/core';
|
|
import OpenInNew from '@material-ui/icons/OpenInNew';
|
|
import { formatDateWithLocale } from '../../common/util';
|
|
import PageContent from '../../common/PageContent';
|
|
import HeaderTitle from '../../common/HeaderTitle';
|
|
import ConditionallyRender from '../../common/ConditionallyRender';
|
|
import { formatApiPath } from '../../../utils/format-path';
|
|
import useInvoices from '../../../hooks/api/getters/useInvoices/useInvoices';
|
|
import { useLocation } from 'react-router-dom';
|
|
import { IInvoice } from '../../../interfaces/invoice';
|
|
|
|
const PORTAL_URL = formatApiPath('api/admin/invoices/portal');
|
|
|
|
const InvoiceList = () => {
|
|
const { refetchInvoices, invoices } = useInvoices();
|
|
const [isLoaded, setLoaded] = useState(false);
|
|
const location = useLocation();
|
|
|
|
useEffect(() => {
|
|
refetchInvoices();
|
|
setLoaded(true);
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, []);
|
|
|
|
return (
|
|
<ConditionallyRender
|
|
condition={invoices.length > 0}
|
|
show={
|
|
<PageContent
|
|
headerContent={
|
|
<HeaderTitle
|
|
title="Invoices"
|
|
actions={
|
|
<Button
|
|
href={PORTAL_URL}
|
|
rel="noreferrer"
|
|
target="_blank"
|
|
endIcon={<OpenInNew />}
|
|
>
|
|
Billing portal
|
|
</Button>
|
|
}
|
|
/>
|
|
}
|
|
>
|
|
<div>
|
|
<Table>
|
|
<TableHead>
|
|
<TableRow>
|
|
<TableCell>Amount</TableCell>
|
|
<TableCell>Status</TableCell>
|
|
<TableCell>Due date</TableCell>
|
|
<TableCell>PDF</TableCell>
|
|
<TableCell>Link</TableCell>
|
|
</TableRow>
|
|
</TableHead>
|
|
<TableBody>
|
|
{invoices.map((item: IInvoice) => (
|
|
<TableRow
|
|
key={item.invoiceURL}
|
|
style={{
|
|
backgroundColor:
|
|
item.status === 'past-due'
|
|
? '#ff9194'
|
|
: 'inherit',
|
|
}}
|
|
>
|
|
<TableCell
|
|
style={{ textAlign: 'left' }}
|
|
>
|
|
{item.amountFomratted}
|
|
</TableCell>
|
|
<TableCell
|
|
style={{ textAlign: 'left' }}
|
|
>
|
|
{item.status}
|
|
</TableCell>
|
|
<TableCell
|
|
style={{ textAlign: 'left' }}
|
|
>
|
|
{item.dueDate &&
|
|
formatDateWithLocale(
|
|
item.dueDate,
|
|
location.locale
|
|
)}
|
|
</TableCell>
|
|
<TableCell
|
|
style={{ textAlign: 'left' }}
|
|
>
|
|
<a href={item.invoicePDF}>PDF</a>
|
|
</TableCell>
|
|
<TableCell
|
|
style={{ textAlign: 'left' }}
|
|
>
|
|
<a
|
|
href={item.invoiceURL}
|
|
target="_blank"
|
|
rel="noreferrer"
|
|
>
|
|
Payment link
|
|
</a>
|
|
</TableCell>
|
|
</TableRow>
|
|
))}
|
|
</TableBody>
|
|
</Table>
|
|
</div>
|
|
</PageContent>
|
|
}
|
|
elseShow={<div>{isLoaded && 'No invoices to show.'}</div>}
|
|
/>
|
|
);
|
|
};
|
|
export default InvoiceList;
|