@huluvu424242/honey-slideshow
Version:
Text to Speech component wich is reading texts from DOM elements.
45 lines (39 loc) • 1.36 kB
JavaScript
;
Object.defineProperty(exports, '__esModule', { value: true });
const index = require('./index-99ba775b.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) {
index.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 (index.h(index.Host, { onClick: this.onClick }));
}
get el() { return index.getElement(this); }
};
exports.ion_nav_link = NavLink;