Anki/ts/routes/graphs/GraphsPage.svelte
Abdo bf46a5f08c
Update to Svelte 5 (#3292)
* Update to Svelte 5

* Fix `<tr> is invalid inside <table>`

* Update sveltekit-svg to match svelte version

Fixes deck options failing to load, and a bunch of warnings with
./yarn dev

* Fix graph tooltips

* Fix editor loading

* Fix MathJax editor not loading

* Formatting

* Fix new formatting errors

* Merge remote-tracking branch 'origin/main' into svelte5

* Remove slot inside EditorToolbar

I think this is just stray code left over from a refactor, but I'm
not 100% sure.

Fixes
Error: Object literal may only specify known properties, and 'children' does not exist in type '{ size: number; wrap: boolean; api?: Partial<EditorToolbarAPI> | undefined; }'. (ts)
<div class="note-editor">
    <EditorToolbar {size} {wrap} api={toolbar}>
        <slot slot="notetypeButtons" name="notetypeButtons" />

* Fix component typing error

* Comment out svelte/internal exports, so editor loads

* Fix image occlusions in editor

* Revert "Remove slot inside EditorToolbar"

This reverts commit b3095e07ac,
which prevented the Preview button from showing in the browser.

This will break our tests again.

* Update vite

* Disable routes/tmp for now

* Fix references issue in routes/tmp
2024-09-25 18:49:07 +10:00

88 lines
2.5 KiB
Svelte

<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<script lang="ts">
import { bridgeCommand } from "@tslib/bridgecommand";
import type { SvelteComponent } from "svelte";
import { writable } from "svelte/store";
import { pageTheme } from "$lib/sveltelib/theme";
import RangeBox from "./RangeBox.svelte";
import WithGraphData from "./WithGraphData.svelte";
export let initialSearch: string;
export let initialDays: number;
const search = writable(initialSearch);
const days = writable(initialDays);
export let graphs: (typeof SvelteComponent<any>)[];
/** See RangeBox */
export let controller: typeof SvelteComponent<any> | null = RangeBox;
function browserSearch(event: CustomEvent) {
bridgeCommand(`browserSearch: ${$search} ${event.detail.query}`);
}
</script>
<WithGraphData {search} {days} let:sourceData let:loading let:prefs let:revlogRange>
{#if controller}
<svelte:component this={controller} {search} {days} {loading} />
{/if}
<div class="graphs-container">
{#if sourceData && revlogRange}
{#each graphs as graph}
<svelte:component
this={graph}
{sourceData}
{prefs}
{revlogRange}
nightMode={$pageTheme.isDark}
on:search={browserSearch}
/>
{/each}
{/if}
</div>
<div class="spacer"></div>
</WithGraphData>
<style lang="scss">
.graphs-container {
display: grid;
gap: 1em;
grid-template-columns: repeat(3, minmax(0, 1fr));
// required on Safari to stretch whole width
width: calc(100vw - 3em);
margin-left: 1em;
margin-right: 1em;
@media only screen and (max-width: 600px) {
width: calc(100vw - 1rem);
margin-left: 0.5rem;
margin-right: 0.5rem;
}
@media only screen and (max-width: 1400px) {
grid-template-columns: 1fr 1fr;
}
@media only screen and (max-width: 1200px) {
grid-template-columns: 1fr;
}
@media only screen and (max-width: 600px) {
font-size: 12px;
}
@media only print {
// grid layout does not honor page-break-inside
display: block;
margin-top: 3em;
}
}
.spacer {
height: 1.5em;
}
</style>