2021-04-12 06:18:30 +02:00
|
|
|
<!--
|
|
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
-->
|
|
|
|
<script lang="ts">
|
2021-04-22 19:55:26 +02:00
|
|
|
import * as tr from "lib/i18n";
|
2021-05-25 19:18:25 +02:00
|
|
|
import { getContext } from "svelte";
|
|
|
|
import { modalsKey } from "components/contextKeys";
|
2021-04-25 10:40:02 +02:00
|
|
|
import type { DeckOptionsState, ConfigListEntry } from "./lib";
|
2021-05-25 19:18:25 +02:00
|
|
|
import type Modal from "bootstrap/js/dist/modal";
|
2021-05-18 16:32:29 +02:00
|
|
|
|
2021-05-25 18:54:58 +02:00
|
|
|
import TextInputModal from "./TextInputModal.svelte";
|
2021-05-18 14:13:11 +02:00
|
|
|
import StickyBar from "components/StickyBar.svelte";
|
2021-05-25 18:54:58 +02:00
|
|
|
import WithTheming from "components/WithTheming.svelte";
|
2021-05-18 16:32:29 +02:00
|
|
|
import ButtonToolbar from "components/ButtonToolbar.svelte";
|
|
|
|
import ButtonToolbarItem from "components/ButtonToolbarItem.svelte";
|
|
|
|
import ButtonGroup from "components/ButtonGroup.svelte";
|
|
|
|
import ButtonGroupItem from "components/ButtonGroupItem.svelte";
|
|
|
|
|
|
|
|
import SelectButton from "components/SelectButton.svelte";
|
|
|
|
import SelectOption from "components/SelectOption.svelte";
|
2021-05-18 18:55:22 +02:00
|
|
|
import SaveButton from "./SaveButton.svelte";
|
2021-04-12 06:18:30 +02:00
|
|
|
|
2021-04-25 10:40:02 +02:00
|
|
|
export let state: DeckOptionsState;
|
2021-04-16 15:29:21 +02:00
|
|
|
let configList = state.configList;
|
2021-04-12 06:18:30 +02:00
|
|
|
|
2021-04-16 15:29:21 +02:00
|
|
|
function configLabel(entry: ConfigListEntry): string {
|
|
|
|
const count = tr.deckConfigUsedByDecks({ decks: entry.useCount });
|
|
|
|
return `${entry.name} (${count})`;
|
|
|
|
}
|
|
|
|
|
2021-05-18 19:19:05 +02:00
|
|
|
function blur(event: Event): void {
|
|
|
|
state.setCurrentIndex(parseInt((event.target! as HTMLSelectElement).value));
|
2021-04-12 06:18:30 +02:00
|
|
|
}
|
2021-05-25 18:54:58 +02:00
|
|
|
|
|
|
|
function onAddConfig(text: string): void {
|
|
|
|
const trimmed = text.trim();
|
|
|
|
if (trimmed.length) {
|
|
|
|
state.addConfig(trimmed);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function onRenameConfig(text: string): void {
|
|
|
|
state.setCurrentName(text);
|
|
|
|
}
|
2021-05-25 19:18:25 +02:00
|
|
|
|
|
|
|
const modals = getContext<Map<string, Modal>>(modalsKey);
|
|
|
|
|
|
|
|
let addModalKey: string;
|
|
|
|
let renameModalKey: string;
|
|
|
|
let oldName = "";
|
|
|
|
|
|
|
|
function onAdd() {
|
|
|
|
modals.get(addModalKey)!.show();
|
|
|
|
}
|
|
|
|
|
|
|
|
function onRename() {
|
|
|
|
oldName = state.getCurrentName();
|
|
|
|
modals.get(renameModalKey)!.show();
|
|
|
|
}
|
2021-04-12 06:18:30 +02:00
|
|
|
</script>
|
|
|
|
|
2021-05-25 18:54:58 +02:00
|
|
|
<TextInputModal
|
|
|
|
title="Add Config"
|
|
|
|
prompt="Name"
|
|
|
|
onOk={onAddConfig}
|
|
|
|
bind:modalKey={addModalKey} />
|
|
|
|
<TextInputModal
|
|
|
|
title="Rename Config"
|
|
|
|
prompt="Name"
|
|
|
|
onOk={onRenameConfig}
|
2021-05-25 19:18:25 +02:00
|
|
|
value={oldName}
|
2021-05-25 18:54:58 +02:00
|
|
|
bind:modalKey={renameModalKey} />
|
|
|
|
|
2021-05-18 14:13:11 +02:00
|
|
|
<StickyBar>
|
2021-05-20 05:15:17 +02:00
|
|
|
<WithTheming style="--toolbar-size: 2.3rem; --toolbar-wrap: nowrap">
|
2021-05-18 16:32:29 +02:00
|
|
|
<ButtonToolbar class="justify-content-between">
|
|
|
|
<ButtonToolbarItem>
|
|
|
|
<ButtonGroup class="flex-grow-1">
|
|
|
|
<ButtonGroupItem>
|
|
|
|
<SelectButton class="flex-grow-1" on:change={blur}>
|
|
|
|
{#each $configList as entry}
|
|
|
|
<SelectOption
|
|
|
|
value={String(entry.idx)}
|
|
|
|
selected={entry.current}>
|
|
|
|
{configLabel(entry)}
|
|
|
|
</SelectOption>
|
|
|
|
{/each}
|
|
|
|
</SelectButton>
|
|
|
|
</ButtonGroupItem>
|
|
|
|
</ButtonGroup>
|
|
|
|
</ButtonToolbarItem>
|
|
|
|
|
|
|
|
<ButtonToolbarItem>
|
2021-05-25 19:18:25 +02:00
|
|
|
<SaveButton {state} on:add={onAdd} on:rename={onRename} />
|
2021-05-18 16:32:29 +02:00
|
|
|
</ButtonToolbarItem>
|
|
|
|
</ButtonToolbar>
|
|
|
|
</WithTheming>
|
2021-05-18 14:13:11 +02:00
|
|
|
</StickyBar>
|