123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324 |
- /*!
- * (C) Ionic http://ionicframework.com - MIT License
- */
- import { proxyCustomElement, HTMLElement, createEvent, h, Host } from '@stencil/core/internal/client';
- import { r as raf } from './helpers.js';
- import { c as createLockController } from './lock-controller.js';
- import { a as printIonWarning } from './index4.js';
- import { d as createDelegateController, e as createTriggerController, B as BACKDROP, i as isCancel, j as prepareOverlay, k as setOverlayId, f as present, g as dismiss, h as eventMethod, s as safeCall } from './overlays.js';
- import { g as getClassMap } from './theme.js';
- import { b as getIonMode } from './ionic-global.js';
- import { c as createAnimation } from './animation.js';
- import { d as defineCustomElement$3 } from './backdrop.js';
- import { d as defineCustomElement$2 } from './picker-column2.js';
- /**
- * iOS Picker Enter Animation
- */
- const iosEnterAnimation = (baseEl) => {
- const baseAnimation = createAnimation();
- const backdropAnimation = createAnimation();
- const wrapperAnimation = createAnimation();
- backdropAnimation
- .addElement(baseEl.querySelector('ion-backdrop'))
- .fromTo('opacity', 0.01, 'var(--backdrop-opacity)')
- .beforeStyles({
- 'pointer-events': 'none',
- })
- .afterClearStyles(['pointer-events']);
- wrapperAnimation
- .addElement(baseEl.querySelector('.picker-wrapper'))
- .fromTo('transform', 'translateY(100%)', 'translateY(0%)');
- return baseAnimation
- .addElement(baseEl)
- .easing('cubic-bezier(.36,.66,.04,1)')
- .duration(400)
- .addAnimation([backdropAnimation, wrapperAnimation]);
- };
- /**
- * iOS Picker Leave Animation
- */
- const iosLeaveAnimation = (baseEl) => {
- const baseAnimation = createAnimation();
- const backdropAnimation = createAnimation();
- const wrapperAnimation = createAnimation();
- backdropAnimation
- .addElement(baseEl.querySelector('ion-backdrop'))
- .fromTo('opacity', 'var(--backdrop-opacity)', 0.01);
- wrapperAnimation
- .addElement(baseEl.querySelector('.picker-wrapper'))
- .fromTo('transform', 'translateY(0%)', 'translateY(100%)');
- return baseAnimation
- .addElement(baseEl)
- .easing('cubic-bezier(.36,.66,.04,1)')
- .duration(400)
- .addAnimation([backdropAnimation, wrapperAnimation]);
- };
- const pickerIosCss = ".sc-ion-picker-legacy-ios-h{--border-radius:0;--border-style:solid;--min-width:auto;--width:100%;--max-width:500px;--min-height:auto;--max-height:auto;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;top:0;display:block;position:absolute;width:100%;height:100%;outline:none;font-family:var(--ion-font-family, inherit);contain:strict;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:1001}.sc-ion-picker-legacy-ios-h{inset-inline-start:0}.overlay-hidden.sc-ion-picker-legacy-ios-h{display:none}.picker-wrapper.sc-ion-picker-legacy-ios{border-radius:var(--border-radius);left:0;right:0;bottom:0;-webkit-margin-start:auto;margin-inline-start:auto;-webkit-margin-end:auto;margin-inline-end:auto;margin-top:auto;margin-bottom:auto;-webkit-transform:translate3d(0, 100%, 0);transform:translate3d(0, 100%, 0);display:-ms-flexbox;display:flex;position:absolute;-ms-flex-direction:column;flex-direction:column;width:var(--width);min-width:var(--min-width);max-width:var(--max-width);height:var(--height);min-height:var(--min-height);max-height:var(--max-height);border-width:var(--border-width);border-style:var(--border-style);border-color:var(--border-color);background:var(--background);contain:strict;overflow:hidden;z-index:10}.picker-toolbar.sc-ion-picker-legacy-ios{width:100%;background:transparent;contain:strict;z-index:1}.picker-button.sc-ion-picker-legacy-ios{border:0;font-family:inherit}.picker-button.sc-ion-picker-legacy-ios:active,.picker-button.sc-ion-picker-legacy-ios:focus{outline:none}.picker-columns.sc-ion-picker-legacy-ios{display:-ms-flexbox;display:flex;position:relative;-ms-flex-pack:center;justify-content:center;margin-bottom:var(--ion-safe-area-bottom, 0);contain:strict;overflow:hidden}.picker-above-highlight.sc-ion-picker-legacy-ios,.picker-below-highlight.sc-ion-picker-legacy-ios{display:none;pointer-events:none}.sc-ion-picker-legacy-ios-h{--background:var(--ion-background-color, #fff);--border-width:1px 0 0;--border-color:var(--ion-item-border-color, var(--ion-border-color, var(--ion-color-step-250, var(--ion-background-color-step-250, #c8c7cc))));--height:260px;--backdrop-opacity:var(--ion-backdrop-opacity, 0.26);color:var(--ion-item-color, var(--ion-text-color, #000))}.picker-toolbar.sc-ion-picker-legacy-ios{display:-ms-flexbox;display:flex;height:44px;border-bottom:0.55px solid var(--border-color)}.picker-toolbar-button.sc-ion-picker-legacy-ios{-ms-flex:1;flex:1;text-align:end}.picker-toolbar-button.sc-ion-picker-legacy-ios:last-child .picker-button.sc-ion-picker-legacy-ios{font-weight:600}.picker-toolbar-button.sc-ion-picker-legacy-ios:first-child{font-weight:normal;text-align:start}.picker-button.sc-ion-picker-legacy-ios,.picker-button.ion-activated.sc-ion-picker-legacy-ios{margin-left:0;margin-right:0;margin-top:0;margin-bottom:0;-webkit-padding-start:1em;padding-inline-start:1em;-webkit-padding-end:1em;padding-inline-end:1em;padding-top:0;padding-bottom:0;height:44px;background:transparent;color:var(--ion-color-primary, #0054e9);font-size:16px}.picker-columns.sc-ion-picker-legacy-ios{height:215px;-webkit-perspective:1000px;perspective:1000px}.picker-above-highlight.sc-ion-picker-legacy-ios{top:0;-webkit-transform:translate3d(0, 0, 90px);transform:translate3d(0, 0, 90px);display:block;position:absolute;width:100%;height:81px;border-bottom:1px solid var(--border-color);background:-webkit-gradient(linear, left top, left bottom, color-stop(20%, var(--background, var(--ion-background-color, #fff))), to(rgba(var(--background-rgb, var(--ion-background-color-rgb, 255, 255, 255)), 0.8)));background:linear-gradient(to bottom, var(--background, var(--ion-background-color, #fff)) 20%, rgba(var(--background-rgb, var(--ion-background-color-rgb, 255, 255, 255)), 0.8) 100%);z-index:10}.picker-above-highlight.sc-ion-picker-legacy-ios{inset-inline-start:0}.picker-below-highlight.sc-ion-picker-legacy-ios{top:115px;-webkit-transform:translate3d(0, 0, 90px);transform:translate3d(0, 0, 90px);display:block;position:absolute;width:100%;height:119px;border-top:1px solid var(--border-color);background:-webkit-gradient(linear, left bottom, left top, color-stop(30%, var(--background, var(--ion-background-color, #fff))), to(rgba(var(--background-rgb, var(--ion-background-color-rgb, 255, 255, 255)), 0.8)));background:linear-gradient(to top, var(--background, var(--ion-background-color, #fff)) 30%, rgba(var(--background-rgb, var(--ion-background-color-rgb, 255, 255, 255)), 0.8) 100%);z-index:11}.picker-below-highlight.sc-ion-picker-legacy-ios{inset-inline-start:0}";
- const IonPickerLegacyIosStyle0 = pickerIosCss;
- const pickerMdCss = ".sc-ion-picker-legacy-md-h{--border-radius:0;--border-style:solid;--min-width:auto;--width:100%;--max-width:500px;--min-height:auto;--max-height:auto;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;top:0;display:block;position:absolute;width:100%;height:100%;outline:none;font-family:var(--ion-font-family, inherit);contain:strict;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;z-index:1001}.sc-ion-picker-legacy-md-h{inset-inline-start:0}.overlay-hidden.sc-ion-picker-legacy-md-h{display:none}.picker-wrapper.sc-ion-picker-legacy-md{border-radius:var(--border-radius);left:0;right:0;bottom:0;-webkit-margin-start:auto;margin-inline-start:auto;-webkit-margin-end:auto;margin-inline-end:auto;margin-top:auto;margin-bottom:auto;-webkit-transform:translate3d(0, 100%, 0);transform:translate3d(0, 100%, 0);display:-ms-flexbox;display:flex;position:absolute;-ms-flex-direction:column;flex-direction:column;width:var(--width);min-width:var(--min-width);max-width:var(--max-width);height:var(--height);min-height:var(--min-height);max-height:var(--max-height);border-width:var(--border-width);border-style:var(--border-style);border-color:var(--border-color);background:var(--background);contain:strict;overflow:hidden;z-index:10}.picker-toolbar.sc-ion-picker-legacy-md{width:100%;background:transparent;contain:strict;z-index:1}.picker-button.sc-ion-picker-legacy-md{border:0;font-family:inherit}.picker-button.sc-ion-picker-legacy-md:active,.picker-button.sc-ion-picker-legacy-md:focus{outline:none}.picker-columns.sc-ion-picker-legacy-md{display:-ms-flexbox;display:flex;position:relative;-ms-flex-pack:center;justify-content:center;margin-bottom:var(--ion-safe-area-bottom, 0);contain:strict;overflow:hidden}.picker-above-highlight.sc-ion-picker-legacy-md,.picker-below-highlight.sc-ion-picker-legacy-md{display:none;pointer-events:none}.sc-ion-picker-legacy-md-h{--background:var(--ion-background-color, #fff);--border-width:0.55px 0 0;--border-color:var(--ion-item-border-color, var(--ion-border-color, var(--ion-color-step-150, var(--ion-background-color-step-150, rgba(0, 0, 0, 0.13)))));--height:260px;--backdrop-opacity:var(--ion-backdrop-opacity, 0.26);color:var(--ion-item-color, var(--ion-text-color, #000))}.picker-toolbar.sc-ion-picker-legacy-md{display:-ms-flexbox;display:flex;-ms-flex-pack:end;justify-content:flex-end;height:44px}.picker-button.sc-ion-picker-legacy-md,.picker-button.ion-activated.sc-ion-picker-legacy-md{margin-left:0;margin-right:0;margin-top:0;margin-bottom:0;-webkit-padding-start:1.1em;padding-inline-start:1.1em;-webkit-padding-end:1.1em;padding-inline-end:1.1em;padding-top:0;padding-bottom:0;height:44px;background:transparent;color:var(--ion-color-primary, #0054e9);font-size:14px;font-weight:500;text-transform:uppercase;-webkit-box-shadow:none;box-shadow:none}.picker-columns.sc-ion-picker-legacy-md{height:216px;-webkit-perspective:1800px;perspective:1800px}.picker-above-highlight.sc-ion-picker-legacy-md{top:0;-webkit-transform:translate3d(0, 0, 90px);transform:translate3d(0, 0, 90px);position:absolute;width:100%;height:81px;border-bottom:1px solid var(--ion-item-border-color, var(--ion-border-color, var(--ion-color-step-150, var(--ion-background-color-step-150, rgba(0, 0, 0, 0.13)))));background:-webkit-gradient(linear, left top, left bottom, color-stop(20%, var(--ion-background-color, #fff)), to(rgba(var(--ion-background-color-rgb, 255, 255, 255), 0.8)));background:linear-gradient(to bottom, var(--ion-background-color, #fff) 20%, rgba(var(--ion-background-color-rgb, 255, 255, 255), 0.8) 100%);z-index:10}.picker-above-highlight.sc-ion-picker-legacy-md{inset-inline-start:0}.picker-below-highlight.sc-ion-picker-legacy-md{top:115px;-webkit-transform:translate3d(0, 0, 90px);transform:translate3d(0, 0, 90px);position:absolute;width:100%;height:119px;border-top:1px solid var(--ion-item-border-color, var(--ion-border-color, var(--ion-color-step-150, var(--ion-background-color-step-150, rgba(0, 0, 0, 0.13)))));background:-webkit-gradient(linear, left bottom, left top, color-stop(30%, var(--ion-background-color, #fff)), to(rgba(var(--ion-background-color-rgb, 255, 255, 255), 0.8)));background:linear-gradient(to top, var(--ion-background-color, #fff) 30%, rgba(var(--ion-background-color-rgb, 255, 255, 255), 0.8) 100%);z-index:11}.picker-below-highlight.sc-ion-picker-legacy-md{inset-inline-start:0}";
- const IonPickerLegacyMdStyle0 = pickerMdCss;
- const Picker = /*@__PURE__*/ proxyCustomElement(class Picker extends HTMLElement {
- constructor() {
- super();
- this.__registerHost();
- this.didPresent = createEvent(this, "ionPickerDidPresent", 7);
- this.willPresent = createEvent(this, "ionPickerWillPresent", 7);
- this.willDismiss = createEvent(this, "ionPickerWillDismiss", 7);
- this.didDismiss = createEvent(this, "ionPickerDidDismiss", 7);
- this.didPresentShorthand = createEvent(this, "didPresent", 7);
- this.willPresentShorthand = createEvent(this, "willPresent", 7);
- this.willDismissShorthand = createEvent(this, "willDismiss", 7);
- this.didDismissShorthand = createEvent(this, "didDismiss", 7);
- this.delegateController = createDelegateController(this);
- this.lockController = createLockController();
- this.triggerController = createTriggerController();
- this.onBackdropTap = () => {
- this.dismiss(undefined, BACKDROP);
- };
- this.dispatchCancelHandler = (ev) => {
- const role = ev.detail.role;
- if (isCancel(role)) {
- const cancelButton = this.buttons.find((b) => b.role === 'cancel');
- this.callButtonHandler(cancelButton);
- }
- };
- this.presented = false;
- this.overlayIndex = undefined;
- this.delegate = undefined;
- this.hasController = false;
- this.keyboardClose = true;
- this.enterAnimation = undefined;
- this.leaveAnimation = undefined;
- this.buttons = [];
- this.columns = [];
- this.cssClass = undefined;
- this.duration = 0;
- this.showBackdrop = true;
- this.backdropDismiss = true;
- this.animated = true;
- this.htmlAttributes = undefined;
- this.isOpen = false;
- this.trigger = undefined;
- }
- onIsOpenChange(newValue, oldValue) {
- if (newValue === true && oldValue === false) {
- this.present();
- }
- else if (newValue === false && oldValue === true) {
- this.dismiss();
- }
- }
- triggerChanged() {
- const { trigger, el, triggerController } = this;
- if (trigger) {
- triggerController.addClickListener(el, trigger);
- }
- }
- connectedCallback() {
- prepareOverlay(this.el);
- this.triggerChanged();
- }
- disconnectedCallback() {
- this.triggerController.removeClickListener();
- }
- componentWillLoad() {
- var _a;
- if (!((_a = this.htmlAttributes) === null || _a === void 0 ? void 0 : _a.id)) {
- setOverlayId(this.el);
- }
- }
- componentDidLoad() {
- printIonWarning('[ion-picker-legacy] - ion-picker-legacy and ion-picker-legacy-column have been deprecated in favor of new versions of the ion-picker and ion-picker-column components. These new components display inline with your page content allowing for more presentation flexibility than before.', this.el);
- /**
- * If picker was rendered with isOpen="true"
- * then we should open picker immediately.
- */
- if (this.isOpen === true) {
- raf(() => this.present());
- }
- /**
- * When binding values in frameworks such as Angular
- * it is possible for the value to be set after the Web Component
- * initializes but before the value watcher is set up in Stencil.
- * As a result, the watcher callback may not be fired.
- * We work around this by manually calling the watcher
- * callback when the component has loaded and the watcher
- * is configured.
- */
- this.triggerChanged();
- }
- /**
- * Present the picker overlay after it has been created.
- */
- async present() {
- const unlock = await this.lockController.lock();
- await this.delegateController.attachViewToDom();
- await present(this, 'pickerEnter', iosEnterAnimation, iosEnterAnimation, undefined);
- if (this.duration > 0) {
- this.durationTimeout = setTimeout(() => this.dismiss(), this.duration);
- }
- unlock();
- }
- /**
- * 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"`.
- */
- async dismiss(data, role) {
- const unlock = await this.lockController.lock();
- if (this.durationTimeout) {
- clearTimeout(this.durationTimeout);
- }
- const dismissed = await dismiss(this, data, role, 'pickerLeave', iosLeaveAnimation, iosLeaveAnimation);
- if (dismissed) {
- this.delegateController.removeViewFromDom();
- }
- unlock();
- return dismissed;
- }
- /**
- * Returns a promise that resolves when the picker did dismiss.
- */
- onDidDismiss() {
- return eventMethod(this.el, 'ionPickerDidDismiss');
- }
- /**
- * Returns a promise that resolves when the picker will dismiss.
- */
- onWillDismiss() {
- return eventMethod(this.el, 'ionPickerWillDismiss');
- }
- /**
- * Get the column that matches the specified name.
- *
- * @param name The name of the column.
- */
- getColumn(name) {
- return Promise.resolve(this.columns.find((column) => column.name === name));
- }
- async buttonClick(button) {
- 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();
- }
- async callButtonHandler(button) {
- 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;
- }
- getSelected() {
- const selected = {};
- 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;
- }
- render() {
- const { htmlAttributes } = this;
- const mode = getIonMode(this);
- return (h(Host, Object.assign({ key: 'b6b6ca6f9aa74681e6d67f64b366f5965fec2a6d', "aria-modal": "true", tabindex: "-1" }, htmlAttributes, { style: {
- zIndex: `${20000 + this.overlayIndex}`,
- }, class: Object.assign({ [mode]: true,
- // Used internally for styling
- [`picker-${mode}`]: true, 'overlay-hidden': true }, getClassMap(this.cssClass)), onIonBackdropTap: this.onBackdropTap, onIonPickerWillDismiss: this.dispatchCancelHandler }), h("ion-backdrop", { key: '20202ca1d7b6cd5f517a802879b39efb79033cb1', visible: this.showBackdrop, tappable: this.backdropDismiss }), h("div", { key: '72fe76a1e1748593cdf38deab5100087bfa75983', tabindex: "0", "aria-hidden": "true" }), h("div", { key: '921954cfc716f3774aab66677563754ff479a44a', class: "picker-wrapper ion-overlay-wrapper", role: "dialog" }, h("div", { key: '224413950bfcf2a948e58c2554c2a37a4e6d0319', class: "picker-toolbar" }, this.buttons.map((b) => (h("div", { class: buttonWrapperClass(b) }, h("button", { type: "button", onClick: () => this.buttonClick(b), class: buttonClass(b) }, b.text))))), h("div", { key: '7e688c2d0705940ec8a9ace493b679e6a9b68860', class: "picker-columns" }, h("div", { key: '0ec2db79a9ca9e2a0b324b6c4b90176a0eb33df3', class: "picker-above-highlight" }), this.presented && this.columns.map((c) => h("ion-picker-legacy-column", { col: c })), h("div", { key: 'b8344f4f342fddc3f773435515567ef8f3accbb0', class: "picker-below-highlight" }))), h("div", { key: '374c7a6b31b0a00ab3913faeea0ec3d6c02274b9', tabindex: "0", "aria-hidden": "true" })));
- }
- get el() { return this; }
- static get watchers() { return {
- "isOpen": ["onIsOpenChange"],
- "trigger": ["triggerChanged"]
- }; }
- static get style() { return {
- ios: IonPickerLegacyIosStyle0,
- md: IonPickerLegacyMdStyle0
- }; }
- }, [34, "ion-picker-legacy", {
- "overlayIndex": [2, "overlay-index"],
- "delegate": [16],
- "hasController": [4, "has-controller"],
- "keyboardClose": [4, "keyboard-close"],
- "enterAnimation": [16],
- "leaveAnimation": [16],
- "buttons": [16],
- "columns": [16],
- "cssClass": [1, "css-class"],
- "duration": [2],
- "showBackdrop": [4, "show-backdrop"],
- "backdropDismiss": [4, "backdrop-dismiss"],
- "animated": [4],
- "htmlAttributes": [16],
- "isOpen": [4, "is-open"],
- "trigger": [1],
- "presented": [32],
- "present": [64],
- "dismiss": [64],
- "onDidDismiss": [64],
- "onWillDismiss": [64],
- "getColumn": [64]
- }, undefined, {
- "isOpen": ["onIsOpenChange"],
- "trigger": ["triggerChanged"]
- }]);
- const buttonWrapperClass = (button) => {
- return {
- [`picker-toolbar-${button.role}`]: button.role !== undefined,
- 'picker-toolbar-button': true,
- };
- };
- const buttonClass = (button) => {
- return Object.assign({ 'picker-button': true, 'ion-activatable': true }, getClassMap(button.cssClass));
- };
- function defineCustomElement$1() {
- if (typeof customElements === "undefined") {
- return;
- }
- const components = ["ion-picker-legacy", "ion-backdrop", "ion-picker-legacy-column"];
- components.forEach(tagName => { switch (tagName) {
- case "ion-picker-legacy":
- if (!customElements.get(tagName)) {
- customElements.define(tagName, Picker);
- }
- break;
- case "ion-backdrop":
- if (!customElements.get(tagName)) {
- defineCustomElement$3();
- }
- break;
- case "ion-picker-legacy-column":
- if (!customElements.get(tagName)) {
- defineCustomElement$2();
- }
- break;
- } });
- }
- const IonPickerLegacy = Picker;
- const defineCustomElement = defineCustomElement$1;
- export { IonPickerLegacy, defineCustomElement };
|