Anki/ts/routes/import-anki-package/index.ts
2025-06-29 14:40:56 +07:00

52 lines
1.4 KiB
TypeScript

// Copyright: Ankitects Pty Ltd and contributors
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
import "./import-anki-package-base.scss";
import { getImportAnkiPackagePresets } from "@generated/backend";
import { ModuleName, setupI18n } from "@tslib/i18n";
import { checkNightMode } from "@tslib/nightmode";
import { modalsKey } from "$lib/components/context-keys";
import ImportAnkiPackagePage from "./ImportAnkiPackagePage.svelte";
const i18n = setupI18n({
modules: [
ModuleName.IMPORTING,
ModuleName.ACTIONS,
ModuleName.HELP,
ModuleName.DECK_CONFIG,
ModuleName.ADDING,
ModuleName.EDITING,
ModuleName.KEYBOARD,
],
});
export async function setupImportAnkiPackagePage(
path: string,
): Promise<ImportAnkiPackagePage> {
const [_, options] = await Promise.all([
i18n,
getImportAnkiPackagePresets({}),
]);
const context = new Map();
context.set(modalsKey, new Map());
checkNightMode();
return new ImportAnkiPackagePage({
target: document.body,
props: {
path,
options,
},
context,
});
}
// eg http://localhost:40000/_anki/pages/import-anki-package.html#test-/home/dae/foo.apkg
if (window.location.hash.startsWith("#test-")) {
const apkgPath = window.location.hash.replace("#test-", "");
setupImportAnkiPackagePage(apkgPath);
}