Some checks failed
dev release / build (push) Has been cancelled
Updates leads with “Boot a snapshot from GRUB (BOS snapshots)” and links to Snapshots. Snapshots is the list to pick in GRUB, not snapper rollback.
75 lines
1.7 KiB
Svelte
75 lines
1.7 KiB
Svelte
<script lang="ts">
|
|
import { onMount, setContext } from "svelte";
|
|
import { listen } from "@tauri-apps/api/event";
|
|
import Sidebar from "$lib/components/Sidebar.svelte";
|
|
import Placeholder from "$lib/components/Placeholder.svelte";
|
|
import { DEFAULT_PAGE } from "$lib/sidebar";
|
|
import { NAVIGATE_KEY, type Navigate } from "$lib/nav";
|
|
import { initTheme } from "$lib/theme";
|
|
import { VIEWS } from "$lib/views/registry";
|
|
|
|
let activePage = $state(DEFAULT_PAGE);
|
|
let ActiveView = $derived(VIEWS[activePage]);
|
|
setContext<Navigate>(NAVIGATE_KEY, (page) => {
|
|
activePage = page;
|
|
});
|
|
|
|
onMount(() => {
|
|
initTheme();
|
|
// Screenshot mode only (src-tauri's screenshot.rs) — lets the Rust
|
|
// core drive which sidebar section is showing for a capture without
|
|
// a real user ever clicking the sidebar.
|
|
const unlisten = listen<string>("screenshot-set-view", (event) => {
|
|
activePage = event.payload;
|
|
});
|
|
return () => {
|
|
unlisten.then((f) => f());
|
|
};
|
|
});
|
|
</script>
|
|
|
|
<div class="shell">
|
|
<Sidebar bind:activePage />
|
|
<main class="content">
|
|
{#if ActiveView}
|
|
<ActiveView />
|
|
{:else}
|
|
<Placeholder page={activePage} />
|
|
{/if}
|
|
</main>
|
|
</div>
|
|
|
|
<style>
|
|
:global(*) {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
:global(html, body) {
|
|
margin: 0;
|
|
border: none;
|
|
outline: none;
|
|
height: 100%;
|
|
color-scheme: dark;
|
|
background-color: var(--bg, #0c0c0c);
|
|
color: var(--fg);
|
|
font-family: var(--font-family, sans-serif);
|
|
font-size: var(--font-size-base, 14px);
|
|
}
|
|
|
|
:global(#svelte) {
|
|
height: 100%;
|
|
}
|
|
|
|
.shell {
|
|
display: flex;
|
|
height: 100vh;
|
|
background-color: var(--bg, #0c0c0c);
|
|
}
|
|
|
|
.content {
|
|
flex: 1;
|
|
min-width: 0;
|
|
overflow-y: auto;
|
|
overscroll-behavior: contain;
|
|
}
|
|
</style>
|