import type { ComponentInterface, EventEmitter } from '@stencil/core'; import { Component, Element, Event, Host, Method, Prop, State, h } from '@stencil/core'; import { getIonMode } from '../../global/ionic-global'; import type { AnimationBuilder, CssClassMap, OverlayEventDetail, OverlayInterface, PickerAttributes, PickerButton, PickerColumn, } from '../../interface'; import { BACKDROP, dismiss, eventMethod, isCancel, prepareOverlay, present, safeCall } from '../../utils/overlays'; import { getClassMap } from '../../utils/theme'; import { iosEnterAnimation } from './animations/ios.enter'; import { iosLeaveAnimation } from './animations/ios.leave'; /** * @virtualProp {"ios" | "md"} mode - The mode determines which platform styles to use. */ @Component({ tag: 'ion-picker', styleUrls: { ios: 'picker.ios.scss', md: 'picker.md.scss', }, scoped: true, }) export class Picker implements ComponentInterface, OverlayInterface { private durationTimeout: any; lastFocus?: HTMLElement; @Element() el!: HTMLIonPickerElement; @State() presented = false; /** @internal */ @Prop() overlayIndex!: number; /** * If `true`, the keyboard will be automatically dismissed when the overlay is presented. */ @Prop() keyboardClose = true; /** * Animation to use when the picker is presented. */ @Prop() enterAnimation?: AnimationBuilder; /** * Animation to use when the picker is dismissed. */ @Prop() leaveAnimation?: AnimationBuilder; /** * Array of buttons to be displayed at the top of the picker. */ @Prop() buttons: PickerButton[] = []; /** * Array of columns to be displayed in the picker. */ @Prop() columns: PickerColumn[] = []; /** * Additional classes to apply for custom CSS. If multiple classes are * provided they should be separated by spaces. */ @Prop() cssClass?: string | string[]; /** * Number of milliseconds to wait before dismissing the picker. */ @Prop() duration = 0; /** * If `true`, a backdrop will be displayed behind the picker. */ @Prop() showBackdrop = true; /** * If `true`, the picker will be dismissed when the backdrop is clicked. */ @Prop() backdropDismiss = true; /** * If `true`, the picker will animate. */ @Prop() animated = true; /** * Additional attributes to pass to the picker. */ @Prop() htmlAttributes?: PickerAttributes; /** * Emitted after the picker has presented. */ @Event({ eventName: 'ionPickerDidPresent' }) didPresent!: EventEmitter; /** * Emitted before the picker has presented. */ @Event({ eventName: 'ionPickerWillPresent' }) willPresent!: EventEmitter; /** * Emitted before the picker has dismissed. */ @Event({ eventName: 'ionPickerWillDismiss' }) willDismiss!: EventEmitter; /** * Emitted after the picker has dismissed. */ @Event({ eventName: 'ionPickerDidDismiss' }) didDismiss!: EventEmitter; connectedCallback() { prepareOverlay(this.el); } /** * Present the picker overlay after it has been created. */ @Method() async present(): Promise { await present(this, 'pickerEnter', iosEnterAnimation, iosEnterAnimation, undefined); if (this.duration > 0) { this.durationTimeout = setTimeout(() => this.dismiss(), this.duration); } } /** * Dismiss the picker overlay after it has been presented. * * @param data Any data to emit in the dismiss events. * @param role The role of the element that is dismissing the picker. * This can be useful in a button handler for determining which button was * clicked to dismiss the picker. * Some examples include: ``"cancel"`, `"destructive"`, "selected"`, and `"backdrop"`. */ @Method() dismiss(data?: any, role?: string): Promise { if (this.durationTimeout) { clearTimeout(this.durationTimeout); } return dismiss(this, data, role, 'pickerLeave', iosLeaveAnimation, iosLeaveAnimation); } /** * Returns a promise that resolves when the picker did dismiss. */ @Method() onDidDismiss(): Promise> { return eventMethod(this.el, 'ionPickerDidDismiss'); } /** * Returns a promise that resolves when the picker will dismiss. */ @Method() onWillDismiss(): Promise> { return eventMethod(this.el, 'ionPickerWillDismiss'); } /** * Get the column that matches the specified name. * * @param name The name of the column. */ @Method() getColumn(name: string): Promise { return Promise.resolve(this.columns.find((column) => column.name === name)); } private async buttonClick(button: PickerButton) { const role = button.role; if (isCancel(role)) { return this.dismiss(undefined, role); } const shouldDismiss = await this.callButtonHandler(button); if (shouldDismiss) { return this.dismiss(this.getSelected(), button.role); } return Promise.resolve(); } private async callButtonHandler(button: PickerButton | undefined) { if (button) { // a handler has been provided, execute it // pass the handler the values from the inputs const rtn = await safeCall(button.handler, this.getSelected()); if (rtn === false) { // if the return value of the handler is false then do not dismiss return false; } } return true; } private getSelected() { const selected: { [k: string]: any } = {}; this.columns.forEach((col, index) => { const selectedColumn = col.selectedIndex !== undefined ? col.options[col.selectedIndex] : undefined; selected[col.name] = { text: selectedColumn ? selectedColumn.text : undefined, value: selectedColumn ? selectedColumn.value : undefined, columnIndex: index, }; }); return selected; } private onBackdropTap = () => { this.dismiss(undefined, BACKDROP); }; private dispatchCancelHandler = (ev: CustomEvent) => { const role = ev.detail.role; if (isCancel(role)) { const cancelButton = this.buttons.find((b) => b.role === 'cancel'); this.callButtonHandler(cancelButton); } }; render() { const { htmlAttributes } = this; const mode = getIonMode(this); return (
); } } const buttonWrapperClass = (button: PickerButton): CssClassMap => { return { [`picker-toolbar-${button.role}`]: button.role !== undefined, 'picker-toolbar-button': true, }; }; const buttonClass = (button: PickerButton): CssClassMap => { return { 'picker-button': true, 'ion-activatable': true, ...getClassMap(button.cssClass), }; };