UNPKG

kompendium

Version:

Documentation generator for Stencil components

33 lines (28 loc) 879 B
'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const index = require('./index-4264cbf1.js'); const activeRouter = require('./active-router-64317b4c.js'); // Get the URL for this route link without the root from the router const getUrl = (url, root) => { // Don't allow double slashes if (url.charAt(0) == '/' && root.charAt(root.length - 1) == '/') { return root.slice(0, root.length - 1) + url; } return root + url; }; const Redirect = class { constructor(hostRef) { index.registerInstance(this, hostRef); } componentWillLoad() { if (this.history && this.root && this.url) { return this.history.replace(getUrl(this.url, this.root)); } } get el() { return index.getElement(this); } }; activeRouter.ActiveRouter.injectProps(Redirect, [ 'history', 'root' ]); exports.stencil_router_redirect = Redirect;