@huluvu424242/honey-slideshow
Version:
Text to Speech component wich is reading texts from DOM elements.
41 lines (37 loc) • 1.3 kB
JavaScript
import { r as registerInstance, h, g as getElement, H as Host } from './index-a2883912.js';
const navLink = (el, routerDirection, component, componentProps) => {
const nav = el.closest('ion-nav');
if (nav) {
if (routerDirection === 'forward') {
if (component !== undefined) {
return nav.push(component, componentProps, { skipIfBusy: true });
}
}
else if (routerDirection === 'root') {
if (component !== undefined) {
return nav.setRoot(component, componentProps, { skipIfBusy: true });
}
}
else if (routerDirection === 'back') {
return nav.pop({ skipIfBusy: true });
}
}
return Promise.resolve(false);
};
const NavLink = class {
constructor(hostRef) {
registerInstance(this, hostRef);
/**
* The transition direction when navigating to another page.
*/
this.routerDirection = 'forward';
this.onClick = () => {
return navLink(this.el, this.routerDirection, this.component, this.componentProps);
};
}
render() {
return (h(Host, { onClick: this.onClick }));
}
get el() { return getElement(this); }
};
export { NavLink as ion_nav_link };