mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 22:12:21 -04:00

- expose the data as a writable store - currently only supports raw HTML; example to come - fix changes not marking a deck config as modified - the data is currently packed into the deckconfig object, but we may move these to a separate store in the collection config in the future, like is done with decks/notetypes
23 lines
778 B
TypeScript
23 lines
778 B
TypeScript
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
import { getDeckConfigInfo, DeckConfigState } from "./lib";
|
|
import { setupI18n, ModuleName } from "lib/i18n";
|
|
import { checkNightMode } from "lib/nightmode";
|
|
import DeckConfigPage from "./DeckConfigPage.svelte";
|
|
|
|
export async function deckConfig(
|
|
target: HTMLDivElement,
|
|
deckId: number
|
|
): Promise<DeckConfigPage> {
|
|
checkNightMode();
|
|
await setupI18n({
|
|
modules: [ModuleName.SCHEDULING, ModuleName.ACTIONS, ModuleName.DECK_CONFIG],
|
|
});
|
|
const info = await getDeckConfigInfo(deckId);
|
|
const state = new DeckConfigState(deckId, info);
|
|
return new DeckConfigPage({
|
|
target,
|
|
props: { state },
|
|
});
|
|
}
|