mirror of
https://github.com/Spythere/stacjownik.git
synced 2026-05-03 05:18:11 +00:00
68 lines
1.5 KiB
TypeScript
68 lines
1.5 KiB
TypeScript
export namespace Journal {
|
|
export type DispatcherSearchKey = 'search-dispatcher' | 'search-station' | 'search-date';
|
|
|
|
export type TimetableSearchKey =
|
|
| 'search-driver'
|
|
| 'search-train'
|
|
| 'search-date'
|
|
| 'search-dispatcher'
|
|
| 'search-issuedFrom';
|
|
|
|
export type TimetableSearchType = {
|
|
[key in TimetableSearchKey]: string;
|
|
};
|
|
|
|
export type DispatcherSearchType = {
|
|
[key in DispatcherSearchKey]: string;
|
|
};
|
|
|
|
export type TimetableSorterKey = 'timetableId' | 'beginDate' | 'distance' | 'total-stops';
|
|
export type DispatcherSorterKey = 'timestampFrom' | 'duration';
|
|
|
|
export interface DispatcherSorter {
|
|
id: DispatcherSorterKey;
|
|
dir: -1 | 1;
|
|
}
|
|
|
|
export interface TimetableSorter {
|
|
id: TimetableSorterKey;
|
|
dir: 'asc' | 'desc';
|
|
}
|
|
|
|
export const enum TimetableFilterId {
|
|
ALL_STATUSES = 'all-statuses',
|
|
ACTIVE = 'active',
|
|
FULFILLED = 'fulfilled',
|
|
ABANDONED = 'abandoned',
|
|
ALL_SPECIALS = 'all-specials',
|
|
TWR = 'twr',
|
|
SKR = 'skr',
|
|
TWR_SKR = 'twr-skr'
|
|
}
|
|
|
|
export enum FilterSection {
|
|
TIMETABLE_STATUS = 'timetable-status',
|
|
SPECIAL = 'special'
|
|
}
|
|
|
|
export interface TimetableFilter {
|
|
id: TimetableFilterId;
|
|
filterSection: string;
|
|
isActive: boolean;
|
|
default: boolean;
|
|
}
|
|
|
|
export enum StatsTab {
|
|
DRIVER_STATS = 'journal-driver-stats',
|
|
DISPATCHER_STATS = 'journal-dispatcher-stats',
|
|
DAILY_STATS = 'journal-daily-stats'
|
|
}
|
|
|
|
export interface StatsButton {
|
|
tab: StatsTab;
|
|
localeKey: string;
|
|
iconName: string;
|
|
disabled: boolean;
|
|
}
|
|
}
|