187 lines
7.6 KiB
TypeScript
187 lines
7.6 KiB
TypeScript
import type { TypeAndName } from './base.ts';
|
|
import { DateRange } from '@/core/datetime.ts';
|
|
|
|
export enum StatisticsAnalysisType {
|
|
CategoricalAnalysis = 0,
|
|
TrendAnalysis = 1
|
|
}
|
|
|
|
export class CategoricalChartType implements TypeAndName {
|
|
private static readonly allInstances: CategoricalChartType[] = [];
|
|
|
|
public static readonly Pie = new CategoricalChartType(0, 'Pie Chart');
|
|
public static readonly Bar = new CategoricalChartType(1, 'Bar Chart');
|
|
|
|
public static readonly Default = CategoricalChartType.Pie;
|
|
|
|
public readonly type: number;
|
|
public readonly name: string;
|
|
|
|
private constructor(type: number, name: string) {
|
|
this.type = type;
|
|
this.name = name;
|
|
|
|
CategoricalChartType.allInstances.push(this);
|
|
}
|
|
|
|
public static values(): CategoricalChartType[] {
|
|
return CategoricalChartType.allInstances;
|
|
}
|
|
}
|
|
|
|
export class TrendChartType implements TypeAndName {
|
|
private static readonly allInstances: TrendChartType[] = [];
|
|
|
|
public static readonly Area = new TrendChartType(0, 'Area Chart');
|
|
public static readonly Column = new TrendChartType(1, 'Column Chart');
|
|
|
|
public static readonly Default = TrendChartType.Column;
|
|
|
|
public readonly type: number;
|
|
public readonly name: string;
|
|
|
|
private constructor(type: number, name: string) {
|
|
this.type = type;
|
|
this.name = name;
|
|
|
|
TrendChartType.allInstances.push(this);
|
|
}
|
|
|
|
public static values(): TrendChartType[] {
|
|
return TrendChartType.allInstances;
|
|
}
|
|
}
|
|
|
|
export class ChartDataType implements TypeAndName {
|
|
private static readonly allInstances: ChartDataType[] = [];
|
|
private static readonly allInstancesByType: Record<number, ChartDataType> = {};
|
|
|
|
public static readonly ExpenseByAccount = new ChartDataType(0, 'Expense By Account', StatisticsAnalysisType.CategoricalAnalysis, StatisticsAnalysisType.TrendAnalysis);
|
|
public static readonly ExpenseByPrimaryCategory = new ChartDataType(1, 'Expense By Primary Category', StatisticsAnalysisType.CategoricalAnalysis, StatisticsAnalysisType.TrendAnalysis);
|
|
public static readonly ExpenseBySecondaryCategory = new ChartDataType(2, 'Expense By Secondary Category', StatisticsAnalysisType.CategoricalAnalysis, StatisticsAnalysisType.TrendAnalysis);
|
|
public static readonly IncomeByAccount = new ChartDataType(3, 'Income By Account', StatisticsAnalysisType.CategoricalAnalysis, StatisticsAnalysisType.TrendAnalysis);
|
|
public static readonly IncomeByPrimaryCategory = new ChartDataType(4, 'Income By Primary Category', StatisticsAnalysisType.CategoricalAnalysis, StatisticsAnalysisType.TrendAnalysis);
|
|
public static readonly IncomeBySecondaryCategory = new ChartDataType(5, 'Income By Secondary Category', StatisticsAnalysisType.CategoricalAnalysis, StatisticsAnalysisType.TrendAnalysis);
|
|
public static readonly AccountTotalAssets = new ChartDataType(6, 'Account Total Assets', StatisticsAnalysisType.CategoricalAnalysis);
|
|
public static readonly AccountTotalLiabilities = new ChartDataType(7, 'Account Total Liabilities', StatisticsAnalysisType.CategoricalAnalysis);
|
|
public static readonly TotalExpense = new ChartDataType(8, 'Total Expense', StatisticsAnalysisType.TrendAnalysis);
|
|
public static readonly TotalIncome = new ChartDataType(9, 'Total Income', StatisticsAnalysisType.TrendAnalysis);
|
|
public static readonly TotalBalance = new ChartDataType(10, 'Net Income', StatisticsAnalysisType.TrendAnalysis);
|
|
|
|
public static readonly Default = ChartDataType.ExpenseByPrimaryCategory;
|
|
|
|
public readonly type: number;
|
|
public readonly name: string;
|
|
private readonly availableAnalysisTypes: Record<number, boolean>;
|
|
|
|
private constructor(type: number, name: string, ...availableAnalysisTypes: StatisticsAnalysisType[]) {
|
|
this.type = type;
|
|
this.name = name;
|
|
this.availableAnalysisTypes = {};
|
|
|
|
if (availableAnalysisTypes) {
|
|
for (const analysisType of availableAnalysisTypes) {
|
|
this.availableAnalysisTypes[analysisType] = true;
|
|
}
|
|
}
|
|
|
|
ChartDataType.allInstances.push(this);
|
|
ChartDataType.allInstancesByType[type] = this;
|
|
}
|
|
|
|
public isAvailableAnalysisType(analysisType: StatisticsAnalysisType): boolean {
|
|
return this.availableAnalysisTypes[analysisType] || false;
|
|
}
|
|
|
|
public static values(analysisType?: StatisticsAnalysisType): ChartDataType[] {
|
|
if (analysisType === undefined) {
|
|
return ChartDataType.allInstances;
|
|
}
|
|
|
|
const ret: ChartDataType[] = [];
|
|
|
|
for (const chartDataType of ChartDataType.allInstances) {
|
|
if (chartDataType.isAvailableAnalysisType(analysisType)) {
|
|
ret.push(chartDataType);
|
|
}
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
public static valueOf(type: number): ChartDataType | undefined {
|
|
return ChartDataType.allInstancesByType[type];
|
|
}
|
|
|
|
public static isAvailableForAnalysisType(type: number, analysisType: StatisticsAnalysisType): boolean {
|
|
const chartDataType = ChartDataType.allInstancesByType[type];
|
|
return chartDataType?.isAvailableAnalysisType(analysisType) || false;
|
|
}
|
|
}
|
|
|
|
export class ChartSortingType implements TypeAndName {
|
|
private static readonly allInstances: ChartSortingType[] = [];
|
|
private static readonly allInstancesByType: Record<number, ChartSortingType> = {};
|
|
|
|
public static readonly Amount = new ChartSortingType(0, 'Amount', 'Sort by Amount');
|
|
public static readonly DisplayOrder = new ChartSortingType(1, 'Display Order', 'Sort by Display Order');
|
|
public static readonly Name = new ChartSortingType(2, 'Name', 'Sort by Name');
|
|
|
|
public static readonly Default = ChartSortingType.Amount;
|
|
|
|
public readonly type: number;
|
|
public readonly name: string;
|
|
public readonly fullName: string;
|
|
|
|
private constructor(type: number, name: string, fullName: string) {
|
|
this.type = type;
|
|
this.name = name;
|
|
this.fullName = fullName;
|
|
|
|
ChartSortingType.allInstances.push(this);
|
|
ChartSortingType.allInstancesByType[type] = this;
|
|
}
|
|
|
|
public static values(): ChartSortingType[] {
|
|
return ChartSortingType.allInstances;
|
|
}
|
|
|
|
public static valueOf(type: number): ChartSortingType | undefined {
|
|
return ChartSortingType.allInstancesByType[type];
|
|
}
|
|
}
|
|
|
|
export class ChartDateAggregationType implements TypeAndName {
|
|
private static readonly allInstances: ChartDateAggregationType[] = [];
|
|
private static readonly allInstancesByType: Record<number, ChartDateAggregationType> = {};
|
|
|
|
public static readonly Month = new ChartDateAggregationType(0, 'Aggregate by Month');
|
|
public static readonly Quarter = new ChartDateAggregationType(1, 'Aggregate by Quarter');
|
|
public static readonly Year = new ChartDateAggregationType(2, 'Aggregate by Year');
|
|
public static readonly FiscalYear = new ChartDateAggregationType(3, 'Aggregate by Fiscal Year');
|
|
|
|
public static readonly Default = ChartDateAggregationType.Month;
|
|
|
|
public readonly type: number;
|
|
public readonly name: string;
|
|
|
|
private constructor(type: number, name: string) {
|
|
this.type = type;
|
|
this.name = name;
|
|
|
|
ChartDateAggregationType.allInstances.push(this);
|
|
ChartDateAggregationType.allInstancesByType[type] = this;
|
|
}
|
|
|
|
public static values(): ChartDateAggregationType[] {
|
|
return ChartDateAggregationType.allInstances;
|
|
}
|
|
|
|
public static valueOf(type: number): ChartDateAggregationType | undefined {
|
|
return ChartDateAggregationType.allInstancesByType[type];
|
|
}
|
|
}
|
|
|
|
export const DEFAULT_CATEGORICAL_CHART_DATA_RANGE: DateRange = DateRange.ThisMonth;
|
|
export const DEFAULT_TREND_CHART_DATA_RANGE: DateRange = DateRange.ThisYear;
|