UNPKG

@zoff-tech/zt-bottom-drawer

Version:
279 lines (268 loc) 13.4 kB
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const index = require('./index-d7fcb92f.js'); const config = require('@utils/config'); const helpers = require('@utils/helpers'); const overlays = require('@utils/overlays'); const sanitization = require('@utils/sanitization'); const theme = require('@utils/theme'); const ionicGlobal = require('./ionic-global-70a62cb2.js'); const animation = require('@utils/animation/animation'); /*! * (C) Ionic http://ionicframework.com - MIT License */ /** * iOS Loading Enter Animation */ const iosEnterAnimation = (baseEl) => { const baseAnimation = animation.createAnimation(); const backdropAnimation = animation.createAnimation(); const wrapperAnimation = animation.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('.loading-wrapper')).keyframes([ { offset: 0, opacity: 0.01, transform: 'scale(1.1)' }, { offset: 1, opacity: 1, transform: 'scale(1)' }, ]); return baseAnimation .addElement(baseEl) .easing('ease-in-out') .duration(200) .addAnimation([backdropAnimation, wrapperAnimation]); }; /*! * (C) Ionic http://ionicframework.com - MIT License */ /** * iOS Loading Leave Animation */ const iosLeaveAnimation = (baseEl) => { const baseAnimation = animation.createAnimation(); const backdropAnimation = animation.createAnimation(); const wrapperAnimation = animation.createAnimation(); backdropAnimation.addElement(baseEl.querySelector('ion-backdrop')).fromTo('opacity', 'var(--backdrop-opacity)', 0); wrapperAnimation.addElement(baseEl.querySelector('.loading-wrapper')).keyframes([ { offset: 0, opacity: 0.99, transform: 'scale(1)' }, { offset: 1, opacity: 0, transform: 'scale(0.9)' }, ]); return baseAnimation .addElement(baseEl) .easing('ease-in-out') .duration(200) .addAnimation([backdropAnimation, wrapperAnimation]); }; /*! * (C) Ionic http://ionicframework.com - MIT License */ /** * Md Loading Enter Animation */ const mdEnterAnimation = (baseEl) => { const baseAnimation = animation.createAnimation(); const backdropAnimation = animation.createAnimation(); const wrapperAnimation = animation.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('.loading-wrapper')).keyframes([ { offset: 0, opacity: 0.01, transform: 'scale(1.1)' }, { offset: 1, opacity: 1, transform: 'scale(1)' }, ]); return baseAnimation .addElement(baseEl) .easing('ease-in-out') .duration(200) .addAnimation([backdropAnimation, wrapperAnimation]); }; /*! * (C) Ionic http://ionicframework.com - MIT License */ /** * Md Loading Leave Animation */ const mdLeaveAnimation = (baseEl) => { const baseAnimation = animation.createAnimation(); const backdropAnimation = animation.createAnimation(); const wrapperAnimation = animation.createAnimation(); backdropAnimation.addElement(baseEl.querySelector('ion-backdrop')).fromTo('opacity', 'var(--backdrop-opacity)', 0); wrapperAnimation.addElement(baseEl.querySelector('.loading-wrapper')).keyframes([ { offset: 0, opacity: 0.99, transform: 'scale(1)' }, { offset: 1, opacity: 0, transform: 'scale(0.9)' }, ]); return baseAnimation .addElement(baseEl) .easing('ease-in-out') .duration(200) .addAnimation([backdropAnimation, wrapperAnimation]); }; const loadingIosCss = ".sc-ion-loading-ios-h{--min-width:auto;--width:auto;--min-height:auto;--height:auto;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;left:0;right:0;top:0;bottom:0;display:flex;position:fixed;align-items:center;justify-content:center;outline:none;font-family:var(--ion-font-family, inherit);contain:strict;touch-action:none;user-select:none;z-index:1001}.overlay-hidden.sc-ion-loading-ios-h{display:none}.loading-wrapper.sc-ion-loading-ios{display:flex;align-items:inherit;justify-content:inherit;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);background:var(--background);opacity:0;z-index:10}ion-spinner.sc-ion-loading-ios{color:var(--spinner-color)}.sc-ion-loading-ios-h{--background:var(--ion-overlay-background-color, var(--ion-color-step-100, #f9f9f9));--max-width:270px;--max-height:90%;--spinner-color:var(--ion-color-step-600, #666666);--backdrop-opacity:var(--ion-backdrop-opacity, 0.3);color:var(--ion-text-color, #000);font-size:14px}.loading-wrapper.sc-ion-loading-ios{border-radius:8px;-webkit-padding-start:34px;padding-inline-start:34px;-webkit-padding-end:34px;padding-inline-end:34px;padding-top:24px;padding-bottom:24px}@supports (backdrop-filter: blur(0)){.loading-translucent.sc-ion-loading-ios-h .loading-wrapper.sc-ion-loading-ios{background-color:rgba(var(--ion-background-color-rgb, 255, 255, 255), 0.8);backdrop-filter:saturate(180%) blur(20px)}}.loading-content.sc-ion-loading-ios{font-weight:bold}.loading-spinner.sc-ion-loading-ios+.loading-content.sc-ion-loading-ios{-webkit-margin-start:16px;margin-inline-start:16px}"; const loadingMdCss = ".sc-ion-loading-md-h{--min-width:auto;--width:auto;--min-height:auto;--height:auto;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;left:0;right:0;top:0;bottom:0;display:flex;position:fixed;align-items:center;justify-content:center;outline:none;font-family:var(--ion-font-family, inherit);contain:strict;touch-action:none;user-select:none;z-index:1001}.overlay-hidden.sc-ion-loading-md-h{display:none}.loading-wrapper.sc-ion-loading-md{display:flex;align-items:inherit;justify-content:inherit;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);background:var(--background);opacity:0;z-index:10}ion-spinner.sc-ion-loading-md{color:var(--spinner-color)}.sc-ion-loading-md-h{--background:var(--ion-color-step-50, #f2f2f2);--max-width:280px;--max-height:90%;--spinner-color:var(--ion-color-primary, #3880ff);--backdrop-opacity:var(--ion-backdrop-opacity, 0.32);color:var(--ion-color-step-850, #262626);font-size:14px}.loading-wrapper.sc-ion-loading-md{border-radius:2px;-webkit-padding-start:24px;padding-inline-start:24px;-webkit-padding-end:24px;padding-inline-end:24px;padding-top:24px;padding-bottom:24px;box-shadow:0 16px 20px rgba(0, 0, 0, 0.4)}.loading-spinner.sc-ion-loading-md+.loading-content.sc-ion-loading-md{-webkit-margin-start:16px;margin-inline-start:16px}"; const Loading = class { constructor(hostRef) { index.registerInstance(this, hostRef); this.didPresent = index.createEvent(this, "ionLoadingDidPresent", 7); this.willPresent = index.createEvent(this, "ionLoadingWillPresent", 7); this.willDismiss = index.createEvent(this, "ionLoadingWillDismiss", 7); this.didDismiss = index.createEvent(this, "ionLoadingDidDismiss", 7); this.didPresentShorthand = index.createEvent(this, "didPresent", 7); this.willPresentShorthand = index.createEvent(this, "willPresent", 7); this.willDismissShorthand = index.createEvent(this, "willDismiss", 7); this.didDismissShorthand = index.createEvent(this, "didDismiss", 7); this.delegateController = overlays.createDelegateController(this); this.triggerController = overlays.createTriggerController(); this.customHTMLEnabled = ionicGlobal.config.get('innerHTMLTemplatesEnabled', config.ENABLE_HTML_CONTENT_DEFAULT); this.presented = false; this.onBackdropTap = () => { this.dismiss(undefined, overlays.BACKDROP); }; this.overlayIndex = undefined; this.delegate = undefined; this.hasController = false; this.keyboardClose = true; this.enterAnimation = undefined; this.leaveAnimation = undefined; this.message = undefined; this.cssClass = undefined; this.duration = 0; this.backdropDismiss = false; this.showBackdrop = true; this.spinner = undefined; this.translucent = false; 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() { overlays.prepareOverlay(this.el); this.triggerChanged(); } componentWillLoad() { if (this.spinner === undefined) { const mode = ionicGlobal.getIonMode(this); this.spinner = ionicGlobal.config.get('loadingSpinner', ionicGlobal.config.get('spinner', mode === 'ios' ? 'lines' : 'crescent')); } overlays.setOverlayId(this.el); } componentDidLoad() { /** * If loading indicator was rendered with isOpen="true" * then we should open loading indicator immediately. */ if (this.isOpen === true) { helpers.raf(() => this.present()); } } disconnectedCallback() { this.triggerController.removeClickListener(); } /** * Present the loading overlay after it has been created. */ async present() { /** * When using an inline loading indicator * and dismissing a loading indicator it is possible to * quickly present the loading indicator while it is * dismissing. We need to await any current * transition to allow the dismiss to finish * before presenting again. */ if (this.currentTransition !== undefined) { await this.currentTransition; } await this.delegateController.attachViewToDom(); this.currentTransition = overlays.present(this, 'loadingEnter', iosEnterAnimation, mdEnterAnimation); await this.currentTransition; if (this.duration > 0) { this.durationTimeout = setTimeout(() => this.dismiss(), this.duration + 10); } this.currentTransition = undefined; } /** * Dismiss the loading 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 loading. * This can be useful in a button handler for determining which button was * clicked to dismiss the loading. * Some examples include: ``"cancel"`, `"destructive"`, "selected"`, and `"backdrop"`. */ async dismiss(data, role) { if (this.durationTimeout) { clearTimeout(this.durationTimeout); } this.currentTransition = overlays.dismiss(this, data, role, 'loadingLeave', iosLeaveAnimation, mdLeaveAnimation); const dismissed = await this.currentTransition; if (dismissed) { this.delegateController.removeViewFromDom(); } return dismissed; } /** * Returns a promise that resolves when the loading did dismiss. */ onDidDismiss() { return overlays.eventMethod(this.el, 'ionLoadingDidDismiss'); } /** * Returns a promise that resolves when the loading will dismiss. */ onWillDismiss() { return overlays.eventMethod(this.el, 'ionLoadingWillDismiss'); } renderLoadingMessage(msgId) { const { customHTMLEnabled, message } = this; if (customHTMLEnabled) { return index.h("div", { class: "loading-content", id: msgId, innerHTML: sanitization.sanitizeDOMString(message) }); } return (index.h("div", { class: "loading-content", id: msgId }, message)); } render() { const { message, spinner, htmlAttributes, overlayIndex } = this; const mode = ionicGlobal.getIonMode(this); const msgId = `loading-${overlayIndex}-msg`; /** * If the message is defined, use that as the label. * Otherwise, don't set aria-labelledby. */ const ariaLabelledBy = message !== undefined ? msgId : null; return (index.h(index.Host, Object.assign({ role: "dialog", "aria-modal": "true", "aria-labelledby": ariaLabelledBy, tabindex: "-1" }, htmlAttributes, { style: { zIndex: `${40000 + this.overlayIndex}`, }, onIonBackdropTap: this.onBackdropTap, class: Object.assign(Object.assign({}, theme.getClassMap(this.cssClass)), { [mode]: true, 'overlay-hidden': true, 'loading-translucent': this.translucent }) }), index.h("ion-backdrop", { visible: this.showBackdrop, tappable: this.backdropDismiss }), index.h("div", { tabindex: "0" }), index.h("div", { class: "loading-wrapper ion-overlay-wrapper" }, spinner && (index.h("div", { class: "loading-spinner" }, index.h("ion-spinner", { name: spinner, "aria-hidden": "true" }))), message !== undefined && this.renderLoadingMessage(msgId)), index.h("div", { tabindex: "0" }))); } get el() { return index.getElement(this); } static get watchers() { return { "isOpen": ["onIsOpenChange"], "trigger": ["triggerChanged"] }; } }; Loading.style = { ios: loadingIosCss, md: loadingMdCss }; exports.ion_loading = Loading; //# sourceMappingURL=ion-loading.cjs.entry.js.map