mirror of
https://github.com/ankitects/anki.git
synced 2025-09-24 08:46:37 -04:00

* 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
158 lines
3.8 KiB
Svelte
158 lines
3.8 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 * as tr from "@generated/ftl";
|
|
import type { Writable } from "svelte/store";
|
|
|
|
import { daysToRevlogRange, RevlogRange } from "./graph-helpers";
|
|
import InputBox from "./InputBox.svelte";
|
|
|
|
enum SearchRange {
|
|
Deck = 1,
|
|
Collection = 2,
|
|
Custom = 3,
|
|
}
|
|
|
|
export let loading: boolean;
|
|
|
|
export let days: Writable<number>;
|
|
export let search: Writable<string>;
|
|
|
|
let revlogRange = daysToRevlogRange($days);
|
|
let searchRange: SearchRange;
|
|
|
|
if ($search === "deck:current") {
|
|
searchRange = SearchRange.Deck;
|
|
} else if ($search === "") {
|
|
searchRange = SearchRange.Collection;
|
|
} else {
|
|
searchRange = SearchRange.Custom;
|
|
}
|
|
|
|
let displayedSearch = $search;
|
|
|
|
$: {
|
|
switch (searchRange as SearchRange) {
|
|
case SearchRange.Deck:
|
|
$search = displayedSearch = "deck:current";
|
|
break;
|
|
case SearchRange.Collection:
|
|
$search = displayedSearch = "";
|
|
break;
|
|
}
|
|
}
|
|
|
|
$: {
|
|
switch (revlogRange as RevlogRange) {
|
|
case RevlogRange.Year:
|
|
$days = 365;
|
|
break;
|
|
case RevlogRange.All:
|
|
$days = 0;
|
|
break;
|
|
}
|
|
}
|
|
|
|
function updateSearch(): void {
|
|
$search = displayedSearch;
|
|
}
|
|
|
|
const year = tr.statisticsRange1YearHistory();
|
|
const deck = tr.statisticsRangeDeck();
|
|
const collection = tr.statisticsRangeCollection();
|
|
const searchLabel = tr.statisticsRangeSearch();
|
|
const all = tr.statisticsRangeAllHistory();
|
|
</script>
|
|
|
|
<div class="range-box">
|
|
<div class="spin" class:loading>◐</div>
|
|
|
|
<InputBox>
|
|
<label>
|
|
<input type="radio" bind:group={searchRange} value={SearchRange.Deck} />
|
|
{deck}
|
|
</label>
|
|
<label>
|
|
<input
|
|
type="radio"
|
|
bind:group={searchRange}
|
|
value={SearchRange.Collection}
|
|
/>
|
|
{collection}
|
|
</label>
|
|
|
|
<!-- This form is an external API and care should be taken when changed -
|
|
other clients e.g. AnkiDroid programmatically update this form by id -->
|
|
<input
|
|
type="text"
|
|
id="statisticsSearchText"
|
|
bind:value={displayedSearch}
|
|
on:change={updateSearch}
|
|
on:focus={() => {
|
|
searchRange = SearchRange.Custom;
|
|
}}
|
|
placeholder={searchLabel}
|
|
/>
|
|
</InputBox>
|
|
|
|
<InputBox>
|
|
<label>
|
|
<input type="radio" bind:group={revlogRange} value={RevlogRange.Year} />
|
|
{year}
|
|
</label>
|
|
<label>
|
|
<input type="radio" bind:group={revlogRange} value={RevlogRange.All} />
|
|
{all}
|
|
</label>
|
|
</InputBox>
|
|
</div>
|
|
|
|
<div class="range-box-pad"></div>
|
|
|
|
<style lang="scss">
|
|
.range-box {
|
|
position: sticky;
|
|
z-index: 1;
|
|
top: 0;
|
|
width: 100vw;
|
|
color: var(--fg);
|
|
background: var(--canvas);
|
|
padding: 0.5em;
|
|
border-bottom: 1px solid var(--border);
|
|
|
|
@media print {
|
|
position: absolute;
|
|
}
|
|
}
|
|
|
|
@keyframes spin {
|
|
0% {
|
|
-webkit-transform: rotate(0deg);
|
|
}
|
|
100% {
|
|
-webkit-transform: rotate(360deg);
|
|
}
|
|
}
|
|
|
|
.spin {
|
|
display: inline-block;
|
|
position: absolute;
|
|
font-size: 2em;
|
|
animation: spin;
|
|
animation-duration: 1s;
|
|
animation-iteration-count: infinite;
|
|
|
|
opacity: 0;
|
|
|
|
&.loading {
|
|
opacity: 0.5;
|
|
transition: opacity var(--transition-slow);
|
|
}
|
|
}
|
|
|
|
.range-box-pad {
|
|
height: 1.5em;
|
|
}
|
|
</style>
|