UNPKG

@zoff-tech/zt-bottom-drawer

Version:
58 lines (54 loc) 1.57 kB
import { r as registerInstance, h, H as Host, e as getElement } from './index-8f8312e9.js'; import { attachComponent } from '@utils/framework-delegate'; const tabCss = ":host(.tab-hidden){display:none !important}"; const Tab = class { constructor(hostRef) { registerInstance(this, hostRef); this.loaded = false; this.active = false; this.delegate = undefined; this.tab = undefined; this.component = undefined; } async componentWillLoad() { if (this.active) { await this.setActive(); } } /** Set the active component for the tab */ async setActive() { await this.prepareLazyLoaded(); this.active = true; } changeActive(isActive) { if (isActive) { this.prepareLazyLoaded(); } } prepareLazyLoaded() { if (!this.loaded && this.component != null) { this.loaded = true; try { return attachComponent(this.delegate, this.el, this.component, ['ion-page']); } catch (e) { console.error(e); } } return Promise.resolve(undefined); } render() { const { tab, active, component } = this; return (h(Host, { role: "tabpanel", "aria-hidden": !active ? 'true' : null, "aria-labelledby": `tab-button-${tab}`, class: { 'ion-page': component === undefined, 'tab-hidden': !active, } }, h("slot", null))); } get el() { return getElement(this); } static get watchers() { return { "active": ["changeActive"] }; } }; Tab.style = tabCss; export { Tab as ion_tab }; //# sourceMappingURL=ion-tab.entry.js.map