mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
52 lines
1.4 KiB
TypeScript
52 lines
1.4 KiB
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
import intl from 'react-intl-universal';
|
|
import { FormGroup, Classes } from '@blueprintjs/core';
|
|
import { BranchMultiSelect, Row, Col } from '@/components';
|
|
import {
|
|
CashFlowStatementDimensionsPanelProvider,
|
|
useCashFlowStatementDimensionsPanelContext,
|
|
} from './CashFlowStatementDimensionsPanelProvider';
|
|
import { useFeatureCan } from '@/hooks/state';
|
|
import { Features } from '@/constants';
|
|
|
|
/**
|
|
* Cash flow statement dismension panel.
|
|
* @returns
|
|
*/
|
|
export default function CashFlowStatementDimensionsPanel() {
|
|
return (
|
|
<CashFlowStatementDimensionsPanelProvider>
|
|
<CashFlowStatementDimensionsPanelContent />
|
|
</CashFlowStatementDimensionsPanelProvider>
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Cash flow statement dismension panel content.
|
|
* @returns
|
|
*/
|
|
function CashFlowStatementDimensionsPanelContent() {
|
|
// Fetches the branches list.
|
|
const { branches } = useCashFlowStatementDimensionsPanelContext();
|
|
|
|
const { featureCan } = useFeatureCan();
|
|
|
|
const isBranchesFeatureCan = featureCan(Features.Branches);
|
|
|
|
return (
|
|
<Row>
|
|
<Col xs={4}>
|
|
{isBranchesFeatureCan && (
|
|
<FormGroup
|
|
label={intl.get('branches_multi_select.label')}
|
|
className={Classes.FILL}
|
|
>
|
|
<BranchMultiSelect name={'branchesIds'} branches={branches} />
|
|
</FormGroup>
|
|
)}
|
|
</Col>
|
|
</Row>
|
|
);
|
|
}
|