Initial commit: Aeroflot Flights Web Angular 12 application

This commit is contained in:
2026-04-03 10:10:52 +03:00
commit 2342f2e66e
1311 changed files with 128350 additions and 0 deletions
@@ -0,0 +1,4 @@
export enum DispatchMode {
bus = 'Bus',
bridge = 'Bridge',
}
@@ -0,0 +1,7 @@
export enum FlightIcon {
routeChange = 'routeChange',
return = 'return',
intermediateLanding = 'intermediateLanding',
intermediateLandingMulti = 'intermediateLandingMulti',
transfer = 'transfer',
}
@@ -0,0 +1,6 @@
export enum FlightLoadedState {
board,
actual,
detailed,
scheduled,
}
@@ -0,0 +1,16 @@
export enum FlightRequestType {
Route = 'route',
Arrival = 'arrival',
Flight = 'flight',
Departure = 'departure',
Schedule = 'schedule',
Undefined = 'undefined',
Details = 'Details'
}
export enum ViewType {
Onlineboard = 'onlineboard',
Schedule = 'schedule',
FlightsMap = 'flights-map',
Undefined = 'undefined',
}
@@ -0,0 +1,10 @@
export enum FlightStatusLegacy {
scheduled = 'Scheduled',
sent = 'Sent',
inFlight = 'InFlight',
landed = 'Landed',
arrived = 'Arrived',
delayed = 'Delayed',
cancelled = 'Cancelled',
unknown = 'Unknown',
}
@@ -0,0 +1,8 @@
export * from './flight-icon.enum';
export * from './flight-status.enum';
export * from './language.enum';
export * from './dispatch-mode.enum';
export * from './operation-status.enum';
export * from './time-type.enum';
export * from './flight-loaded-state.enum';
export * from './route-type.enum';
@@ -0,0 +1,12 @@
export enum Language {
ru = 'ru',
en = 'en',
de = 'de',
fr = 'fr',
es = 'es',
it = 'it',
cn = 'cn',
ko = 'ko',
jp = 'jp',
zh = 'zh',
}
@@ -0,0 +1,5 @@
export enum OperationStatusLegacy {
scheduled = 'Scheduled',
inProgress = 'InProgress',
finished = 'Finished',
}
@@ -0,0 +1,5 @@
export enum RouteTypeLegacy {
Direct = 'Direct',
MultiLeg = 'MultiLeg',
Connecting = 'Connecting',
}
@@ -0,0 +1,5 @@
export enum TimeType {
scheduled = 'Scheduled',
estimated = 'Estimated',
actual = 'Actual',
}