anki/ts/deckconfig/DeckConfigPage.svelte

37 lines
891 B
Svelte
Raw Normal View History

<!--
Copyright: Ankitects Pty Ltd and contributors
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
-->
<script lang="ts">
import ConfigSelector from "./ConfigSelector.svelte";
import ConfigEditor from "./ConfigEditor.svelte";
import type { DeckConfigState } from "./lib";
import { onMount, onDestroy } from "svelte";
import { registerShortcut } from "lib/shortcuts";
export let state: DeckConfigState;
2021-04-22 11:52:44 +02:00
onMount(() => {
onDestroy(registerShortcut(() => state.save(false), "Control+Enter"));
});
</script>
<style lang="scss">
.editor {
// without this, the initial viewport can be wrong
overflow-x: hidden;
}
</style>
<div>
2021-04-22 11:52:44 +02:00
<div id="modal">
<!-- filled in later-->
</div>
2021-04-22 11:52:44 +02:00
<ConfigSelector {state} />
2021-04-22 11:52:44 +02:00
<div class="editor">
<ConfigEditor {state} />
</div>
</div>