mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-13 11:20:31 +00:00
151 lines
4.3 KiB
TypeScript
151 lines
4.3 KiB
TypeScript
import * as R from 'ramda';
|
|
import moment from 'moment';
|
|
import { ITableColumn, IDateRange, ITableColumnAccessor } from '@/interfaces';
|
|
import { FinancialDatePeriods } from '../FinancialDatePeriods';
|
|
import { ProfitLossSheetTablePercentage } from './ProfitLossSheetTablePercentage';
|
|
import { ProfitLossTablePreviousPeriod } from './ProfitLossTablePreviousPeriod';
|
|
|
|
export const ProfitLossSheetTableDatePeriods = (Base) =>
|
|
class extends R.compose(
|
|
ProfitLossSheetTablePercentage,
|
|
ProfitLossTablePreviousPeriod,
|
|
FinancialDatePeriods
|
|
)(Base) {
|
|
/**
|
|
* Retrieves the date periods based on the report query.
|
|
* @returns {IDateRange[]}
|
|
*/
|
|
get datePeriods() {
|
|
return this.getDateRanges(
|
|
this.query.fromDate,
|
|
this.query.toDate,
|
|
this.query.displayColumnsBy
|
|
);
|
|
}
|
|
|
|
// --------------------------------
|
|
// # Accessors
|
|
// --------------------------------
|
|
/**
|
|
* Date period columns accessor.
|
|
* @param {IDateRange} dateRange -
|
|
* @param {number} index -
|
|
*/
|
|
private datePeriodColumnsAccessor = R.curry(
|
|
(dateRange: IDateRange, index: number) => {
|
|
return R.pipe(
|
|
R.when(
|
|
this.query.isPreviousPeriodActive,
|
|
R.concat(this.previousPeriodHorizontalColumnAccessors(index))
|
|
),
|
|
R.when(
|
|
this.query.isPreviousYearActive,
|
|
R.concat(this.previousYearHorizontalColumnAccessors(index))
|
|
),
|
|
R.concat(this.percetangeHorizontalColumnsAccessor(index)),
|
|
R.concat([
|
|
{
|
|
key: `date-range-${index}`,
|
|
accessor: `horizontalTotals[${index}].total.formattedAmount`,
|
|
},
|
|
])
|
|
)([]);
|
|
}
|
|
);
|
|
|
|
/**
|
|
* Retrieve the date periods columns accessors.
|
|
* @returns {ITableColumnAccessor[]}
|
|
*/
|
|
protected datePeriodsColumnsAccessors = (): ITableColumnAccessor[] => {
|
|
return R.compose(
|
|
R.flatten,
|
|
R.addIndex(R.map)(this.datePeriodColumnsAccessor)
|
|
)(this.datePeriods);
|
|
};
|
|
|
|
// --------------------------------
|
|
// # Columns
|
|
// --------------------------------
|
|
/**
|
|
* Retrieve the formatted column label from the given date range.
|
|
* @param {ICashFlowDateRange} dateRange -
|
|
* @return {string}
|
|
*/
|
|
private formatColumnLabel = (dateRange) => {
|
|
const monthFormat = (range) => moment(range.toDate).format('YYYY-MM');
|
|
const yearFormat = (range) => moment(range.toDate).format('YYYY');
|
|
const dayFormat = (range) => moment(range.toDate).format('YYYY-MM-DD');
|
|
|
|
const conditions = [
|
|
['month', monthFormat],
|
|
['year', yearFormat],
|
|
['day', dayFormat],
|
|
['quarter', monthFormat],
|
|
['week', dayFormat],
|
|
];
|
|
const conditionsPairs = R.map(
|
|
([type, formatFn]) => [
|
|
R.always(this.query.isDisplayColumnsBy(type)),
|
|
formatFn,
|
|
],
|
|
conditions
|
|
);
|
|
return R.compose(R.cond(conditionsPairs))(dateRange);
|
|
};
|
|
|
|
/**
|
|
*
|
|
* @param {number} index
|
|
* @param {IDateRange} dateRange
|
|
* @returns {}
|
|
*/
|
|
private datePeriodChildrenColumns = (
|
|
index: number,
|
|
dateRange: IDateRange
|
|
) => {
|
|
return R.compose(
|
|
R.unless(
|
|
R.isEmpty,
|
|
R.concat([
|
|
{ key: `total`, label: this.i18n.__('profit_loss_sheet.total') },
|
|
])
|
|
),
|
|
R.concat(this.percentageColumns()),
|
|
R.when(
|
|
this.query.isPreviousYearActive,
|
|
R.concat(this.getPreviousYearDatePeriodColumnPlugin(dateRange))
|
|
),
|
|
R.when(
|
|
this.query.isPreviousPeriodActive,
|
|
R.concat(this.getPreviousPeriodDatePeriodsPlugin(dateRange))
|
|
)
|
|
)([]);
|
|
};
|
|
|
|
/**
|
|
*
|
|
* @param {IDateRange} dateRange
|
|
* @param {number} index
|
|
* @returns {ITableColumn}
|
|
*/
|
|
private datePeriodColumn = (
|
|
dateRange: IDateRange,
|
|
index: number
|
|
): ITableColumn => {
|
|
return {
|
|
key: `date-range-${index}`,
|
|
label: this.formatColumnLabel(dateRange),
|
|
children: this.datePeriodChildrenColumns(index, dateRange),
|
|
};
|
|
};
|
|
|
|
/**
|
|
* Date periods columns.
|
|
* @returns {ITableColumn[]}
|
|
*/
|
|
protected datePeriodsColumns = (): ITableColumn[] => {
|
|
return this.datePeriods.map(this.datePeriodColumn);
|
|
};
|
|
};
|