Compare commits
No commits in common. "4dffc731b6b75f2a7f804db4424941e8f36aaeaf" and "bd57812964a072a167fae257eb3341f650c6a684" have entirely different histories.
4dffc731b6
...
bd57812964
4 changed files with 47 additions and 16 deletions
|
@ -1,10 +1,11 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import BottomAppBar from '$lib/components/BottomAppBar.svelte';
|
import BottomAppBar from '$lib/components/BottomAppBar.svelte';
|
||||||
import Toast from '$lib/components/Toast.svelte';
|
// import Toast from '$lib/components/Toast.svelte';
|
||||||
import { onMount } from 'svelte';
|
// import { onMount } from 'svelte';
|
||||||
|
|
||||||
let node: HTMLElement;
|
let node;
|
||||||
|
|
||||||
|
/**
|
||||||
onMount(() => {
|
onMount(() => {
|
||||||
if(import.meta.env.DEV) return;
|
if(import.meta.env.DEV) return;
|
||||||
|
|
||||||
|
@ -16,30 +17,22 @@
|
||||||
if (BroadcastChannel) {
|
if (BroadcastChannel) {
|
||||||
const channel = new BroadcastChannel('sw-messages');
|
const channel = new BroadcastChannel('sw-messages');
|
||||||
channel.addEventListener('message', (event) => {
|
channel.addEventListener('message', (event) => {
|
||||||
|
console.log(event.data);
|
||||||
new Toast({ target: node });
|
new Toast({ target: node });
|
||||||
});
|
});
|
||||||
} else {
|
} else {
|
||||||
navigator.serviceWorker.addEventListener('message', (evt) => {
|
navigator.serviceWorker.addEventListener('message', (evt) => {
|
||||||
|
console.log(evt.data);
|
||||||
new Toast({ target: node });
|
new Toast({ target: node });
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
navigator.serviceWorker.ready.then((registration) => {
|
navigator.serviceWorker.ready.then((registration) => {
|
||||||
registration?.active?.postMessage('Save client');
|
registration.active.postMessage('Save client');
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
*/
|
||||||
onNavigate((navigation: { complete: any; }) => {
|
|
||||||
if (!(document.startViewTransition)) return;
|
|
||||||
|
|
||||||
return new Promise<void>((resolve) => {
|
|
||||||
document?.startViewTransition(async () => {
|
|
||||||
resolve();
|
|
||||||
await navigation.complete;
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<div bind:this={node}></div>
|
<div bind:this={node}></div>
|
||||||
|
|
|
@ -1,9 +1,22 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import Path from '$lib/components/Path.svelte';
|
import Path from '$lib/components/Path.svelte';
|
||||||
import Splash from '$lib/components/Splash.svelte';
|
import Splash from '$lib/components/Splash.svelte';
|
||||||
|
import { onNavigate } from '$app/navigation';
|
||||||
|
|
||||||
export let data;
|
export let data;
|
||||||
let categories = data.categories;
|
let categories = data.categories;
|
||||||
|
|
||||||
|
onNavigate((navigation) => {
|
||||||
|
if (!document.startViewTransition) return;
|
||||||
|
|
||||||
|
return new Promise((resolve) => {
|
||||||
|
document.startViewTransition(async () => {
|
||||||
|
resolve();
|
||||||
|
await navigation.complete;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<Splash />
|
<Splash />
|
||||||
|
|
|
@ -1,7 +1,19 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import Route from '$lib/components/Route.svelte';
|
import Route from '$lib/components/Route.svelte';
|
||||||
import HomeHeader from '$lib/components/HomeHeader.svelte';
|
import HomeHeader from '$lib/components/HomeHeader.svelte';
|
||||||
|
import { onNavigate } from '$app/navigation';
|
||||||
|
|
||||||
|
onNavigate((navigation) => {
|
||||||
|
if (!document.startViewTransition) return;
|
||||||
|
|
||||||
|
return new Promise((resolve) => {
|
||||||
|
document.startViewTransition(async () => {
|
||||||
|
resolve();
|
||||||
|
await navigation.complete;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
export let data;
|
export let data;
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
|
|
|
@ -1,9 +1,22 @@
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import Header from '$lib/components/Header.svelte';
|
import Header from '$lib/components/Header.svelte';
|
||||||
import Tabs from '$lib/components/Tabs.svelte';
|
import Tabs from '$lib/components/Tabs.svelte';
|
||||||
|
import { onNavigate } from '$app/navigation';
|
||||||
|
|
||||||
export let data: App.Route;
|
export let data: App.Route;
|
||||||
|
|
||||||
|
onNavigate((navigation) => {
|
||||||
|
if (!document.startViewTransition) return;
|
||||||
|
|
||||||
|
return new Promise((resolve) => {
|
||||||
|
document.startViewTransition(async () => {
|
||||||
|
resolve();
|
||||||
|
await navigation.complete;
|
||||||
|
});
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
let divider;
|
let divider;
|
||||||
|
|
||||||
const mapClick = () => {};
|
const mapClick = () => {};
|
||||||
|
|
Loading…
Reference in a new issue