mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -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
153 lines
3.5 KiB
Svelte
153 lines
3.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 { createEventDispatcher } from "svelte";
|
|
|
|
import { pageTheme } from "$lib/sveltelib/theme";
|
|
|
|
export let offsetX = 0;
|
|
export let offsetY = 0;
|
|
|
|
export let active = false;
|
|
export let activeSize = 5;
|
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
const onPointerdown =
|
|
(north: boolean, west: boolean) =>
|
|
(event: PointerEvent): void => {
|
|
dispatch("pointerclick", { north, west, originalEvent: event });
|
|
};
|
|
</script>
|
|
|
|
<div
|
|
class="handle-control"
|
|
style="--offsetX: {offsetX}px; --offsetY: {offsetY}px; --activeSize: {activeSize}px;"
|
|
>
|
|
<div
|
|
class:nightMode={$pageTheme.isDark}
|
|
class="bordered"
|
|
on:mousedown|preventDefault
|
|
tabindex="-1"
|
|
role="button"
|
|
></div>
|
|
<div
|
|
class:nightMode={$pageTheme.isDark}
|
|
class:active
|
|
class="control nw"
|
|
on:mousedown|preventDefault
|
|
on:pointerdown={onPointerdown(true, true)}
|
|
on:pointermove
|
|
tabindex="-1"
|
|
role="button"
|
|
></div>
|
|
<div
|
|
class:nightMode={$pageTheme.isDark}
|
|
class:active
|
|
class="control ne"
|
|
on:mousedown|preventDefault
|
|
on:pointerdown={onPointerdown(true, false)}
|
|
on:pointermove
|
|
tabindex="-1"
|
|
role="button"
|
|
></div>
|
|
<div
|
|
class:nightMode={$pageTheme.isDark}
|
|
class:active
|
|
class="control sw"
|
|
on:mousedown|preventDefault
|
|
on:pointerdown={onPointerdown(false, true)}
|
|
on:pointermove
|
|
tabindex="-1"
|
|
role="button"
|
|
></div>
|
|
<div
|
|
class:nightMode={$pageTheme.isDark}
|
|
class:active
|
|
class="control se"
|
|
on:mousedown|preventDefault
|
|
on:pointerdown={onPointerdown(false, false)}
|
|
on:pointermove
|
|
tabindex="-1"
|
|
role="button"
|
|
></div>
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.handle-control {
|
|
display: contents;
|
|
}
|
|
|
|
.bordered {
|
|
position: absolute;
|
|
|
|
top: calc(0px - var(--activeSize) + var(--offsetY));
|
|
bottom: calc(0px - var(--activeSize) + var(--offsetY));
|
|
left: calc(0px - var(--activeSize) + var(--offsetX));
|
|
right: calc(0px - var(--activeSize) + var(--offsetX));
|
|
|
|
pointer-events: none;
|
|
border: 2px dashed black;
|
|
|
|
&.nightMode {
|
|
border-color: white;
|
|
}
|
|
}
|
|
|
|
.control {
|
|
position: absolute;
|
|
|
|
width: var(--activeSize);
|
|
height: var(--activeSize);
|
|
|
|
&.active {
|
|
background-color: black;
|
|
}
|
|
|
|
&.nightMode {
|
|
border-color: white;
|
|
|
|
&.active {
|
|
background-color: white;
|
|
}
|
|
}
|
|
|
|
&.nw {
|
|
top: calc(0px - var(--offsetY));
|
|
left: calc(0px - var(--offsetX));
|
|
|
|
&.active {
|
|
cursor: nw-resize;
|
|
}
|
|
}
|
|
|
|
&.ne {
|
|
top: calc(0px - var(--offsetY));
|
|
right: calc(0px - var(--offsetX));
|
|
|
|
&.active {
|
|
cursor: ne-resize;
|
|
}
|
|
}
|
|
|
|
&.sw {
|
|
bottom: calc(0px - var(--offsetY));
|
|
left: calc(0px - var(--offsetX));
|
|
|
|
&.active {
|
|
cursor: sw-resize;
|
|
}
|
|
}
|
|
|
|
&.se {
|
|
bottom: calc(0px - var(--offsetY));
|
|
right: calc(0px - var(--offsetX));
|
|
|
|
&.active {
|
|
cursor: se-resize;
|
|
}
|
|
}
|
|
}
|
|
</style>
|