Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | import { css } from '@emotion/react'; import { memo } from 'react'; import { FormattedMessage } from 'react-intl'; import { AlertBanner, Breadcrumbs, PageHeader, Stack, Typography } from '@allshares/studio-design-system'; import { CalculationStatus, CalculationType } from '@amalia/core/types'; import { CalculationErrorBanner, StatementsPeriodSelector } from '@amalia/payout-calculation/statements/components'; import { useStatementListViewContext } from '../StatementsListView.context'; import { StatementListHeaderComputeButton } from './actions/compute-button/StatementListHeaderComputeButton'; import { StatementListHeaderActions } from './actions/StatementListHeaderActions'; import { StatementListViewOptionsEnum } from './filters/FiltersContainer.types'; import { StatementsListViewSelector } from './filters/StatementsListViewSelector'; import { StatementListSummary } from './statement-list-summary/StatementListSummary'; import { StatementListErrors } from './StatementListErrors'; interface StatementsListHeaderProps { readonly selectedView: StatementListViewOptionsEnum; readonly setSelectedView: (value: StatementListViewOptionsEnum) => void; } export const StatementsListHeader = memo(function StatementsListHeader({ selectedView, setSelectedView, }: StatementsListHeaderProps) { const { frequency, calculationType, period, lastCalculation, totalUserStatementsCount, statementsListFacets, hasFiltersApplied, } = useStatementListViewContext(); const hasStatements = !!totalUserStatementsCount; return ( <Stack gap={32}> <PageHeader stickyRow={ <PageHeader.Row left={ <Breadcrumbs withShadow={false}> <StatementsPeriodSelector frequency={frequency} isForecast={calculationType === CalculationType.FORECAST} period={period} /> </Breadcrumbs> } right={ <StatementListHeaderActions.StickyRow computeButton={<StatementListHeaderComputeButton />} statementsListFacets={statementsListFacets} /> } /> } > <PageHeader.Row right={<StatementListHeaderActions.FirstRow computeButton={<StatementListHeaderComputeButton />} />} left={ <Breadcrumbs> <StatementsPeriodSelector frequency={frequency} isForecast={calculationType === CalculationType.FORECAST} period={period} /> </Breadcrumbs> } /> <PageHeader.Row right={<StatementListHeaderActions.SecondRow />} left={ <Typography variant="heading1Bold"> {calculationType === CalculationType.FORECAST ? ( <FormattedMessage defaultMessage="Forecasts" /> ) : ( <FormattedMessage defaultMessage="Statements" /> )} </Typography> } /> </PageHeader> {!hasStatements && !hasFiltersApplied ? ( <Stack gap={8}> {lastCalculation?.status === CalculationStatus.ERROR && ( <CalculationErrorBanner calculation={lastCalculation} /> )} <AlertBanner inline withBorder > {calculationType === CalculationType.FORECAST ? ( <FormattedMessage defaultMessage="Forecasts for {periodName} are not available yet." values={{ periodName: period?.name ?? '' }} /> ) : ( <FormattedMessage defaultMessage="Statements for {periodName} are not available yet." values={{ periodName: period?.name ?? '' }} /> )} </AlertBanner> </Stack> ) : ( <Stack gap={16}> <Stack align="flex-start" gap={8} css={css` &:empty { display: none; } `} > {lastCalculation?.status === CalculationStatus.ERROR && ( <CalculationErrorBanner calculation={lastCalculation} /> )} <StatementListErrors errors={statementsListFacets?.errors} /> </Stack> <Stack gap={32}> <StatementsListViewSelector value={selectedView} onChange={setSelectedView} /> {selectedView !== StatementListViewOptionsEnum.WORKFLOW && <StatementListSummary />} </Stack> </Stack> )} </Stack> ); }); |