diff --git a/building-blocks/hyperdrive.md b/building-blocks/hyperdrive.md index 0efd572..cebb883 100644 --- a/building-blocks/hyperdrive.md +++ b/building-blocks/hyperdrive.md @@ -6,7 +6,7 @@ Notable features include: * Uses Hyperbee internally for storing file metadata * Major API simplification. Instead of mirroring POSIX APIs, the new API better captures the core requirements of P2P file transfer. -* Auxiliary tools, [`localdrive`](./helpers/localdrive.md) and [`mirrordrive`](./helpers/mirrordrive.md), that streamline import/export flows and make it easy to mirror drives to and from the local filesystem. +* Auxiliary tools, [`localdrive`](../helpers/localdrive.md) and [`mirrordrive`](../helpers/mirrordrive.md), that streamline import/export flows and make it easy to mirror drives to and from the local filesystem. > [GitHub (Hyperdrive)](https://github.com/holepunchto/hyperdrive) diff --git a/lib/app-router.js b/lib/app-router.js index a9b155b..4f0ca6c 100644 --- a/lib/app-router.js +++ b/lib/app-router.js @@ -4,6 +4,7 @@ customElements.define('app-router', class AppRouter extends HTMLElement { super() this.routes = {} this.page = null + this.anchor = null } unload () { @@ -11,8 +12,9 @@ customElements.define('app-router', class AppRouter extends HTMLElement { } async load (pathname = '/', opts = {}) { - if (this.page === pathname) return + if (this.page === pathname && this.anchor === opts.anchor) return this.page = pathname + this.anchor = opts.anchor for (const [route, element] of Object.entries(this.routes)) { if (pathname.startsWith(route)) { const page = pathname.slice(route.length) || '/' @@ -73,11 +75,11 @@ customElements.define('app-router', class AppRouter extends HTMLElement { const page = '/' + (Pear.config.linkData || '') console.log('load', page) this.load(page).catch(console.error) - Pear.wakeups(({ data }) => { - Pear.Window.self.focus({ steal: true }).catch(console.error) - const page = '/' + (data || '') - this.load(page).catch(console.error) - }) + // Pear.wakeups(({ data }) => { + // Pear.Window.self.focus({ steal: true }).catch(console.error) + // const page = '/' + (data || '') + // this.load(page).catch(console.error) + // }) }) } })