Anki/ts/deckconfig/DeckConfigPage.svelte
Damien Elmes c3fc07ac20 more experimental updates to deck config screen
- try out bootstrap modals - they're not perfect, but let's see how
they go for now. Won't be hard to switch to bridge commands if required.
- handle adding/renaming/removing
- add a class to manage the state
2021-04-16 23:29:21 +10:00

41 lines
866 B
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 ConfigSelector from "./ConfigSelector.svelte";
import ConfigEditor from "./ConfigEditor.svelte";
import * as tr from "anki/i18n";
import type { DeckConfigState } from "./lib";
export let state: DeckConfigState;
</script>
<style>
.outer {
display: flex;
justify-content: center;
}
.inner {
padding: 0.5em;
}
:global(input, select) {
font-size: 16px;
}
</style>
<div id="modal">
<!-- filled in later-->
</div>
<div class="outer">
<div class="inner">
<div><b>{tr.actionsOptionsFor({ val: state.currentDeck.name })}</b></div>
<ConfigSelector {state} />
<ConfigEditor {state} />
</div>
</div>