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.
93 lines
5.0 KiB
JavaScript
93 lines
5.0 KiB
JavaScript
'use client';
|
|
import * as React from 'react';
|
|
import { PrimeReactContext } from 'primereact/api';
|
|
import { ComponentBase, useHandleStyle } from 'primereact/componentbase';
|
|
import { useMergeProps } from 'primereact/hooks';
|
|
import { classNames } from 'primereact/utils';
|
|
|
|
var classes = {
|
|
root: function root(_ref) {
|
|
var props = _ref.props,
|
|
horizontal = _ref.horizontal,
|
|
vertical = _ref.vertical;
|
|
return classNames("p-divider p-component p-divider-".concat(props.layout, " p-divider-").concat(props.type), {
|
|
'p-divider-left': horizontal && (!props.align || props.align === 'left'),
|
|
'p-divider-right': horizontal && props.align === 'right',
|
|
'p-divider-center': horizontal && props.align === 'center' || vertical && (!props.align || props.align === 'center'),
|
|
'p-divider-top': vertical && props.align === 'top',
|
|
'p-divider-bottom': vertical && props.align === 'bottom'
|
|
}, props.className);
|
|
},
|
|
content: 'p-divider-content'
|
|
};
|
|
var styles = "\n@layer primereact {\n .p-divider-horizontal {\n display: flex;\n width: 100%;\n position: relative;\n align-items: center;\n }\n \n .p-divider-horizontal:before {\n position: absolute;\n display: block;\n top: 50%;\n left: 0;\n width: 100%;\n content: \"\";\n }\n \n .p-divider-horizontal.p-divider-left {\n justify-content: flex-start;\n }\n \n .p-divider-horizontal.p-divider-right {\n justify-content: flex-end;\n }\n \n .p-divider-horizontal.p-divider-center {\n justify-content: center;\n }\n \n .p-divider-content {\n z-index: 1;\n }\n \n .p-divider-vertical {\n min-height: 100%;\n margin: 0 1rem;\n display: flex;\n position: relative;\n justify-content: center;\n }\n \n .p-divider-vertical:before {\n position: absolute;\n display: block;\n top: 0;\n left: 50%;\n height: 100%;\n content: \"\";\n }\n \n .p-divider-vertical.p-divider-top {\n align-items: flex-start;\n }\n \n .p-divider-vertical.p-divider-center {\n align-items: center;\n }\n \n .p-divider-vertical.p-divider-bottom {\n align-items: flex-end;\n }\n \n .p-divider-solid.p-divider-horizontal:before {\n border-top-style: solid;\n }\n \n .p-divider-solid.p-divider-vertical:before {\n border-left-style: solid;\n }\n \n .p-divider-dashed.p-divider-horizontal:before {\n border-top-style: dashed;\n }\n \n .p-divider-dashed.p-divider-vertical:before {\n border-left-style: dashed;\n }\n \n .p-divider-dotted.p-divider-horizontal:before {\n border-top-style: dotted;\n }\n \n .p-divider-dotted.p-divider-horizontal:before {\n border-left-style: dotted;\n }\n}\n";
|
|
var inlineStyles = {
|
|
root: function root(_ref2) {
|
|
var props = _ref2.props;
|
|
return {
|
|
justifyContent: props.layout === 'horizontal' ? props.align === 'center' || props.align === null ? 'center' : props.align === 'left' ? 'flex-start' : props.align === 'right' ? 'flex-end' : null : null,
|
|
alignItems: props.layout === 'vertical' ? props.align === 'center' || props.align === null ? 'center' : props.align === 'top' ? 'flex-start' : props.align === 'bottom' ? 'flex-end' : null : null
|
|
};
|
|
}
|
|
};
|
|
var DividerBase = ComponentBase.extend({
|
|
defaultProps: {
|
|
__TYPE: 'Divider',
|
|
align: null,
|
|
layout: 'horizontal',
|
|
type: 'solid',
|
|
style: null,
|
|
className: null,
|
|
children: undefined
|
|
},
|
|
css: {
|
|
classes: classes,
|
|
styles: styles,
|
|
inlineStyles: inlineStyles
|
|
}
|
|
});
|
|
|
|
var Divider = /*#__PURE__*/React.forwardRef(function (inProps, ref) {
|
|
var mergeProps = useMergeProps();
|
|
var context = React.useContext(PrimeReactContext);
|
|
var props = DividerBase.getProps(inProps, context);
|
|
var _DividerBase$setMetaD = DividerBase.setMetaData({
|
|
props: props
|
|
}),
|
|
ptm = _DividerBase$setMetaD.ptm,
|
|
cx = _DividerBase$setMetaD.cx,
|
|
sx = _DividerBase$setMetaD.sx,
|
|
isUnstyled = _DividerBase$setMetaD.isUnstyled;
|
|
useHandleStyle(DividerBase.css.styles, isUnstyled, {
|
|
name: 'divider'
|
|
});
|
|
var elementRef = React.useRef(null);
|
|
var horizontal = props.layout === 'horizontal';
|
|
var vertical = props.layout === 'vertical';
|
|
React.useImperativeHandle(ref, function () {
|
|
return {
|
|
props: props,
|
|
getElement: function getElement() {
|
|
return elementRef.current;
|
|
}
|
|
};
|
|
});
|
|
var rootProps = mergeProps({
|
|
ref: elementRef,
|
|
style: sx('root'),
|
|
className: cx('root', {
|
|
horizontal: horizontal,
|
|
vertical: vertical
|
|
}),
|
|
'aria-orientation': props.layout,
|
|
role: 'separator'
|
|
}, DividerBase.getOtherProps(props), ptm('root'));
|
|
var contentProps = mergeProps({
|
|
className: cx('content')
|
|
}, ptm('content'));
|
|
return /*#__PURE__*/React.createElement("div", rootProps, /*#__PURE__*/React.createElement("div", contentProps, props.children));
|
|
});
|
|
Divider.displayName = 'Divider';
|
|
|
|
export { Divider };
|