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.
337 lines
9.1 KiB
TypeScript
337 lines
9.1 KiB
TypeScript
/**
|
|
*
|
|
* Mention component is used to refer someone or something.
|
|
*
|
|
* [Live Demo](https://www.primereact.org/mention/)
|
|
*
|
|
* @module mention
|
|
*
|
|
*/
|
|
import * as React from 'react';
|
|
import { CSSTransitionProps as ReactCSSTransitionProps } from 'react-transition-group/CSSTransition';
|
|
import { ComponentHooks } from '../componentbase/componentbase';
|
|
import { CSSTransitionProps } from '../csstransition';
|
|
import { InputTextarea } from '../inputtextarea';
|
|
import { PassThroughOptions } from '../passthrough';
|
|
import { PassThroughType } from '../utils/utils';
|
|
|
|
export declare type MentionPassThroughType<T> = PassThroughType<T, MentionPassThroughMethodOptions>;
|
|
export declare type MentionPassThroughTransitionType = ReactCSSTransitionProps | ((options: MentionPassThroughMethodOptions) => ReactCSSTransitionProps) | undefined;
|
|
|
|
/**
|
|
* Custom passthrough(pt) option method.
|
|
*/
|
|
export interface MentionPassThroughMethodOptions {
|
|
props: MentionProps;
|
|
state: MentionState;
|
|
}
|
|
|
|
/**
|
|
* Custom passthrough(pt) options.
|
|
* @see {@link MentionProps.pt}
|
|
*/
|
|
export interface MentionPassThroughOptions {
|
|
/**
|
|
* Uses to pass attributes to the root's DOM element.
|
|
*/
|
|
root?: MentionPassThroughType<React.HTMLAttributes<HTMLDivElement>>;
|
|
/**
|
|
* Uses to pass attributes to the InputTextarea component.
|
|
* @see {@link InputTextareaPassThroughType}
|
|
*/
|
|
input?: MentionPassThroughType<React.HTMLAttributes<HTMLDivElement>>;
|
|
/**
|
|
* Uses to pass attributes to the panel's DOM element.
|
|
*/
|
|
panel?: MentionPassThroughType<React.HTMLAttributes<HTMLDivElement>>;
|
|
/**
|
|
* Uses to pass attributes to the item's DOM element.
|
|
*/
|
|
item?: MentionPassThroughType<React.HTMLAttributes<HTMLLIElement>>;
|
|
/**
|
|
* Uses to pass attributes to the items' DOM element.
|
|
*/
|
|
items?: MentionPassThroughType<React.HTMLAttributes<HTMLUListElement>>;
|
|
/**
|
|
* Used to manage all lifecycle hooks
|
|
* @see {@link ComponentHooks}
|
|
*/
|
|
hooks?: ComponentHooks;
|
|
/**
|
|
* Used to control React Transition API.
|
|
*/
|
|
transition?: MentionPassThroughTransitionType;
|
|
}
|
|
|
|
/**
|
|
* Defines current inline state in Mention component.
|
|
*/
|
|
export interface MentionState {
|
|
/**
|
|
* Current overlay visible state as a boolean.
|
|
* @defaultValue false
|
|
*/
|
|
overlayVisible: boolean;
|
|
/**
|
|
* Current search state as a boolean.
|
|
* @defaultValue false
|
|
*/
|
|
searching: boolean;
|
|
/**
|
|
* Current focused state as a boolean.
|
|
* @defaultValue false
|
|
*/
|
|
focused: boolean;
|
|
/**
|
|
* Current trigger state.
|
|
*/
|
|
trigger: any;
|
|
/**
|
|
* For item, this is the state of the item.
|
|
*/
|
|
selected?: boolean;
|
|
}
|
|
|
|
/**
|
|
* Defines current options in Mention component.
|
|
*/
|
|
export interface MentionContext {
|
|
/**
|
|
* Current trigger state.
|
|
*/
|
|
trigger: any;
|
|
}
|
|
|
|
/**
|
|
*/
|
|
interface MentionItemTemplateOptions {
|
|
/**
|
|
* Index of the menu item.
|
|
*/
|
|
index: number;
|
|
/**
|
|
* Triggered the mention item.
|
|
*/
|
|
trigger: string;
|
|
}
|
|
|
|
/**
|
|
* Custom search event
|
|
* @see {@link MentionProps.onSearch}
|
|
* @event
|
|
*/
|
|
interface MentionSearchEvent {
|
|
/**
|
|
* Browser event.
|
|
*/
|
|
originalEvent: React.SyntheticEvent;
|
|
/**
|
|
* Current trigger keyword.
|
|
*/
|
|
trigger: string;
|
|
/**
|
|
* Current query string entered by the user.
|
|
*/
|
|
query: string;
|
|
}
|
|
|
|
/**
|
|
* Custom select event
|
|
* @see {@link MentionProps.onSelect}
|
|
* @event
|
|
*/
|
|
interface MentionSelectEvent {
|
|
/**
|
|
* Browser event
|
|
*/
|
|
originalEvent: React.SyntheticEvent;
|
|
/**
|
|
* Selected item
|
|
*/
|
|
suggestion: any;
|
|
}
|
|
|
|
/**
|
|
* Defines valid properties in Mention component. In addition to these, all properties of HTMLTextAreaElement can be used in this component.
|
|
* @group Properties
|
|
*/
|
|
export interface MentionProps extends Omit<React.DetailedHTMLProps<React.TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>, 'onSelect' | 'onChange' | 'onInput' | 'onFocus' | 'onBlur' | 'ref' | 'pt'> {
|
|
/**
|
|
* When enabled, highlights the first item in the list by default.
|
|
* @defaultValue true
|
|
*/
|
|
autoHighlight?: boolean | undefined;
|
|
/**
|
|
* When present, height of textarea changes as being typed.
|
|
*/
|
|
autoResize?: boolean | undefined;
|
|
/**
|
|
* Used to get the child elements of the component.
|
|
* @readonly
|
|
*/
|
|
children?: React.ReactNode | undefined;
|
|
/**
|
|
* Delay between keystrokes to wait before sending a query.
|
|
* @defaultValue 0
|
|
*/
|
|
delay?: number | undefined;
|
|
/**
|
|
* Field of a suggested object to resolve and display.
|
|
*/
|
|
field?: string | string[] | undefined;
|
|
/**
|
|
* Custom template of footer.
|
|
*/
|
|
footerTemplate?: React.ReactNode | ((props: MentionProps) => React.ReactNode);
|
|
/**
|
|
* Custom template of header.
|
|
*/
|
|
headerTemplate?: React.ReactNode | ((props: MentionProps) => React.ReactNode);
|
|
/**
|
|
* Style class of the input field.
|
|
*/
|
|
inputClassName?: string | undefined;
|
|
/**
|
|
* Identifier of the input element.
|
|
*/
|
|
inputId?: string | undefined;
|
|
/**
|
|
* Reference of the input element.
|
|
*/
|
|
inputRef?: React.Ref<HTMLInputElement> | undefined;
|
|
/**
|
|
* Inline style of the input field.
|
|
*/
|
|
inputStyle?: React.CSSProperties | undefined;
|
|
/**
|
|
* Custom template for the items.
|
|
*/
|
|
itemTemplate?: React.ReactNode | ((suggestion: any, options: MentionItemTemplateOptions) => React.ReactNode);
|
|
/**
|
|
* Style class of the overlay panel element.
|
|
*/
|
|
panelClassName?: string | undefined;
|
|
/**
|
|
* Inline style of the overlay panel element.
|
|
*/
|
|
panelStyle?: React.CSSProperties | undefined;
|
|
/**
|
|
* Maximum height of the suggestions panel.
|
|
* @defaultValue 200px
|
|
*/
|
|
scrollHeight?: string | undefined;
|
|
/**
|
|
* An array of suggestions to display.
|
|
*/
|
|
suggestions?: any[] | undefined;
|
|
/**
|
|
* The properties of CSSTransition can be customized, except for "nodeRef" and "in" properties.
|
|
* @type {CSSTransitionProps}
|
|
*/
|
|
transitionOptions?: CSSTransitionProps | undefined;
|
|
/**
|
|
* Set trigger keyword.
|
|
* @defaultValue "@"
|
|
*/
|
|
trigger?: string | string[] | undefined;
|
|
/**
|
|
* Specifies the input variant of the component.
|
|
* @defaultValue outlined
|
|
*/
|
|
variant?: 'outlined' | 'filled' | undefined;
|
|
/**
|
|
* Uses to pass attributes to DOM elements inside the component.
|
|
* @type {MentionPassThroughOptions}
|
|
*/
|
|
pt?: MentionPassThroughOptions;
|
|
/**
|
|
* Used to configure passthrough(pt) options of the component.
|
|
* @type {PassThroughOptions}
|
|
*/
|
|
ptOptions?: PassThroughOptions;
|
|
/**
|
|
* When enabled, it removes component related styles in the core.
|
|
* @defaultValue false
|
|
*/
|
|
unstyled?: boolean;
|
|
/**
|
|
* Callback to invoke when the element loses focus.
|
|
* @param {React.FocusEvent<HTMLInputElement>} event Browser event
|
|
*/
|
|
onBlur?(event: React.FocusEvent<HTMLInputElement>): void;
|
|
/**
|
|
* Callback to invoke when value changes.
|
|
* @param {React.FormEvent<HTMLInputElement>} event Browser event
|
|
*/
|
|
onChange?(event: React.FormEvent<HTMLInputElement>): void;
|
|
/**
|
|
* Callback to invoke when the element receives focus.
|
|
* @param {React.FocusEvent<HTMLInputElement>} event Browser event
|
|
*/
|
|
onFocus?(event: React.FocusEvent<HTMLInputElement>): void;
|
|
/**
|
|
* Callback to invoke when overlay panel becomes hidden.
|
|
*/
|
|
onHide?(): void;
|
|
/**
|
|
* Callback to invoke on input event of input field.
|
|
* @param {React.FormEvent<HTMLInputElement>} event Browser event
|
|
*/
|
|
onInput?(event: React.FormEvent<HTMLInputElement>): void;
|
|
/**
|
|
* Callback to invoke when search.
|
|
* @param {MentionSearchEvent} event Custom search event
|
|
*/
|
|
onSearch?(event: MentionSearchEvent): void;
|
|
/**
|
|
* Callback to invoke when selection changes.
|
|
* @param {MentionSelectEvent} event Custom select event
|
|
*/
|
|
onSelect?(event: MentionSelectEvent): void;
|
|
/**
|
|
* Callback to invoke when overlay panel becomes visible.
|
|
*/
|
|
onShow?(): void;
|
|
}
|
|
|
|
/**
|
|
* **PrimeReact - Mention**
|
|
*
|
|
* _Mention component is used to refer someone or something._
|
|
*
|
|
* [Live Demo](https://www.primereact.org/mention/)
|
|
* --- ---
|
|
* 
|
|
*
|
|
* @group Component
|
|
*/
|
|
export declare class Mention extends React.Component<MentionProps, any> {
|
|
/**
|
|
* Used to focus the component.
|
|
*/
|
|
public focus(): void;
|
|
/**
|
|
* Show the mention.
|
|
*/
|
|
public show(): void;
|
|
/**
|
|
* Hide the mention.
|
|
*/
|
|
public hide(): void;
|
|
/**
|
|
* Used to get container element.
|
|
* @return {HTMLDivElement | null} Container element
|
|
*/
|
|
public getElement(): HTMLDivElement | null;
|
|
/**
|
|
* Used to get input element.
|
|
* @return {InputTextarea | null} Input element
|
|
*/
|
|
public getInput(): typeof InputTextarea | null;
|
|
/**
|
|
* Used to get overlay element.
|
|
* @return {HTMLElement | null} Overlay element
|
|
*/
|
|
public getOverlay(): HTMLElement | null;
|
|
}
|