mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 12:20:31 +00:00
57 lines
1.5 KiB
JavaScript
57 lines
1.5 KiB
JavaScript
import React from 'react';
|
|
import { Link } from 'react-router-dom';
|
|
import { For } from 'components';
|
|
import useFilterFinancialReports from './FilterFinancialReports';
|
|
import DashboardInsider from 'components/Dashboard/DashboardInsider';
|
|
import {
|
|
financialReportMenus,
|
|
SalesAndPurchasesReportMenus,
|
|
} from 'config/financialReportsMenu';
|
|
|
|
import 'style/pages/FinancialStatements/FinancialSheets.scss';
|
|
|
|
function FinancialReportsItem({ title, desc, link }) {
|
|
return (
|
|
<div class="financial-reports__item">
|
|
<Link class="title" to={link}>
|
|
{title}
|
|
</Link>
|
|
<p class="desc">{desc}</p>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
function FinancialReportsSection({ sectionTitle, reports }) {
|
|
return (
|
|
<div class="financial-reports__section">
|
|
<div class="section-title">{sectionTitle}</div>
|
|
|
|
<div class="financial-reports__list">
|
|
<For render={FinancialReportsItem} of={reports} />
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Financial reports.
|
|
*/
|
|
export default function FinancialReports() {
|
|
const financialReportMenu = useFilterFinancialReports(financialReportMenus);
|
|
const SalesAndPurchasesReportMenu = useFilterFinancialReports(
|
|
SalesAndPurchasesReportMenus,
|
|
);
|
|
|
|
return (
|
|
<DashboardInsider name={'financial-reports'}>
|
|
<div class="financial-reports">
|
|
<For render={FinancialReportsSection} of={financialReportMenu} />
|
|
<For
|
|
render={FinancialReportsSection}
|
|
of={SalesAndPurchasesReportMenu}
|
|
/>
|
|
</div>
|
|
</DashboardInsider>
|
|
);
|
|
}
|