60e2149072
Tasks 16-20: Online Board Tests (Search/Filter, Tabs, Flight List, Details Modal, Time/Date) - Task 16: Search & Filter tests (37 tests) - departure/arrival cities, passenger count, cabin class - Task 17: Arrival/Departure Tabs tests (45 tests) - tab switching, flight display, sorting - Task 18: Flight List View tests (50 tests) - display, sorting, filtering, pagination, loading states - Task 19: Flight Details Modal tests (40 tests) - opening/closing, content display, actions - Task 20: Time & Date Filter tests (43 tests) - date selection, time ranges, calendar navigation Tasks 21-25: Flight Details Tests (Flight Info, Passengers, Seats, Services, Fares) - Task 21: Flight Info Display tests (40 tests) - basic info, airports, route visualization, timeline - Task 22: Passenger Info tests (50 tests) - passenger list, details, services, special requirements - Task 23: Seat Selection tests (50 tests) - seat map, selection, categories, recommendations - Task 24: Service Selection tests (25 tests) - baggage, meals, seats, summary - Task 25: Fare Display tests (55 tests) - fare breakdown, comparisons, discounts, refunds All tests follow AAA pattern and use data-testid selectors matching Angular version. Total: 245 tests across 10 feature suites.
88 lines
2.3 KiB
JavaScript
88 lines
2.3 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.ReportNamespaces = exports.I18nContext = void 0;
|
|
exports.composeInitialProps = composeInitialProps;
|
|
Object.defineProperty(exports, "getDefaults", {
|
|
enumerable: true,
|
|
get: function () {
|
|
return _defaults.getDefaults;
|
|
}
|
|
});
|
|
Object.defineProperty(exports, "getI18n", {
|
|
enumerable: true,
|
|
get: function () {
|
|
return _i18nInstance.getI18n;
|
|
}
|
|
});
|
|
exports.getInitialProps = getInitialProps;
|
|
Object.defineProperty(exports, "initReactI18next", {
|
|
enumerable: true,
|
|
get: function () {
|
|
return _initReactI18next.initReactI18next;
|
|
}
|
|
});
|
|
Object.defineProperty(exports, "setDefaults", {
|
|
enumerable: true,
|
|
get: function () {
|
|
return _defaults.setDefaults;
|
|
}
|
|
});
|
|
Object.defineProperty(exports, "setI18n", {
|
|
enumerable: true,
|
|
get: function () {
|
|
return _i18nInstance.setI18n;
|
|
}
|
|
});
|
|
var _react = require("react");
|
|
var _defaults = require("./defaults.js");
|
|
var _i18nInstance = require("./i18nInstance.js");
|
|
var _initReactI18next = require("./initReactI18next.js");
|
|
const I18nContext = (0, _react.createContext)();
|
|
exports.I18nContext = I18nContext;
|
|
class ReportNamespaces {
|
|
constructor() {
|
|
this.usedNamespaces = {};
|
|
}
|
|
addUsedNamespaces(namespaces) {
|
|
namespaces.forEach(ns => {
|
|
if (!this.usedNamespaces[ns]) this.usedNamespaces[ns] = true;
|
|
});
|
|
}
|
|
getUsedNamespaces() {
|
|
return Object.keys(this.usedNamespaces);
|
|
}
|
|
}
|
|
exports.ReportNamespaces = ReportNamespaces;
|
|
function composeInitialProps(ForComponent) {
|
|
return ctx => new Promise(resolve => {
|
|
const i18nInitialProps = getInitialProps();
|
|
if (ForComponent.getInitialProps) {
|
|
ForComponent.getInitialProps(ctx).then(componentsInitialProps => {
|
|
resolve({
|
|
...componentsInitialProps,
|
|
...i18nInitialProps
|
|
});
|
|
});
|
|
} else {
|
|
resolve(i18nInitialProps);
|
|
}
|
|
});
|
|
}
|
|
function getInitialProps() {
|
|
const i18n = (0, _i18nInstance.getI18n)();
|
|
const namespaces = i18n.reportNamespaces ? i18n.reportNamespaces.getUsedNamespaces() : [];
|
|
const ret = {};
|
|
const initialI18nStore = {};
|
|
i18n.languages.forEach(l => {
|
|
initialI18nStore[l] = {};
|
|
namespaces.forEach(ns => {
|
|
initialI18nStore[l][ns] = i18n.getResourceBundle(l, ns) || {};
|
|
});
|
|
});
|
|
ret.initialI18nStore = initialI18nStore;
|
|
ret.initialLanguage = i18n.language;
|
|
return ret;
|
|
} |