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
87 lines
2.4 KiB
TypeScript
87 lines
2.4 KiB
TypeScript
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
/**
|
|
* Code that is shared among all entry points in /ts/editor
|
|
*/
|
|
|
|
import "./legacy.scss";
|
|
import "./editor-base.scss";
|
|
import "@tslib/runtime-require";
|
|
import "$lib/sveltelib/export-runtime";
|
|
|
|
import { setupI18n } from "@tslib/i18n";
|
|
import { uiResolve } from "@tslib/ui";
|
|
|
|
import * as contextKeys from "$lib/components/context-keys";
|
|
import IconButton from "$lib/components/IconButton.svelte";
|
|
import LabelButton from "$lib/components/LabelButton.svelte";
|
|
import WithContext from "$lib/components/WithContext.svelte";
|
|
import WithState from "$lib/components/WithState.svelte";
|
|
|
|
import BrowserEditor from "./BrowserEditor.svelte";
|
|
import NoteCreator from "./NoteCreator.svelte";
|
|
import * as editorContextKeys from "./NoteEditor.svelte";
|
|
import ReviewerEditor from "./ReviewerEditor.svelte";
|
|
|
|
declare global {
|
|
interface Selection {
|
|
addRange(r: Range): void;
|
|
removeAllRanges(): void;
|
|
getRangeAt(n: number): Range;
|
|
}
|
|
}
|
|
|
|
import { ModuleName } from "@tslib/i18n";
|
|
import { mount } from "svelte";
|
|
|
|
export const editorModules = [
|
|
ModuleName.EDITING,
|
|
ModuleName.KEYBOARD,
|
|
ModuleName.ACTIONS,
|
|
ModuleName.BROWSING,
|
|
ModuleName.NOTETYPES,
|
|
ModuleName.IMPORTING,
|
|
ModuleName.UNDO,
|
|
];
|
|
|
|
export const components = {
|
|
IconButton,
|
|
LabelButton,
|
|
WithContext,
|
|
WithState,
|
|
contextKeys: { ...contextKeys, ...editorContextKeys },
|
|
};
|
|
|
|
export { editorToolbar } from "./editor-toolbar";
|
|
|
|
async function setupBrowserEditor(): Promise<void> {
|
|
await setupI18n({ modules: editorModules });
|
|
mount(BrowserEditor, { target: document.body, props: { uiResolve } });
|
|
}
|
|
|
|
async function setupNoteCreator(): Promise<void> {
|
|
await setupI18n({ modules: editorModules });
|
|
mount(NoteCreator, { target: document.body, props: { uiResolve } });
|
|
}
|
|
|
|
async function setupReviewerEditor(): Promise<void> {
|
|
await setupI18n({ modules: editorModules });
|
|
mount(ReviewerEditor, { target: document.body, props: { uiResolve } });
|
|
}
|
|
|
|
export function setupEditor(mode: "add" | "browse" | "review") {
|
|
switch (mode) {
|
|
case "add":
|
|
setupNoteCreator();
|
|
break;
|
|
case "browse":
|
|
setupBrowserEditor();
|
|
break;
|
|
case "review":
|
|
setupReviewerEditor();
|
|
break;
|
|
default:
|
|
alert("unexpected editor type");
|
|
}
|
|
}
|