re-structure to monorepo.

This commit is contained in:
a.bouhuolia
2023-02-03 01:02:31 +02:00
parent 8242ec64ba
commit 7a0a13f9d5
10400 changed files with 46966 additions and 17223 deletions

View File

@@ -0,0 +1,57 @@
// @ts-nocheck
import React from 'react';
import { Link } from 'react-router-dom';
import { For, DashboardInsider } from '@/components';
import useFilterFinancialReports from './FilterFinancialReports';
import {
financialReportMenus,
SalesAndPurchasesReportMenus,
} from '@/constants/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>
);
}