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
|
|
|
|
-->
|
2021-04-16 15:29:21 +02:00
|
|
|
<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 { createEventDispatcher } from "svelte";
|
2021-04-25 10:40:02 +02:00
|
|
|
import type { DeckOptionsState } from "./lib";
|
2021-04-16 15:29:21 +02:00
|
|
|
|
2021-05-18 16:32:29 +02:00
|
|
|
import ButtonGroup from "components/ButtonGroup.svelte";
|
|
|
|
import ButtonGroupItem from "components/ButtonGroupItem.svelte";
|
|
|
|
|
|
|
|
import LabelButton from "components/LabelButton.svelte";
|
|
|
|
import DropdownMenu from "components/DropdownMenu.svelte";
|
|
|
|
import DropdownItem from "components/DropdownItem.svelte";
|
|
|
|
import DropdownDivider from "components/DropdownDivider.svelte";
|
|
|
|
import WithDropdownMenu from "components/WithDropdownMenu.svelte";
|
|
|
|
|
2021-05-25 19:18:25 +02:00
|
|
|
const dispatch = createEventDispatcher();
|
2021-04-16 15:29:21 +02:00
|
|
|
|
2021-05-25 19:18:25 +02:00
|
|
|
export let state: DeckOptionsState;
|
2021-04-16 15:29:21 +02:00
|
|
|
|
|
|
|
function removeConfig(): void {
|
2021-04-18 03:56:41 +02:00
|
|
|
// show pop-up after dropdown has gone away
|
2021-04-16 15:29:21 +02:00
|
|
|
setTimeout(() => {
|
2021-04-18 03:56:41 +02:00
|
|
|
if (state.defaultConfigSelected()) {
|
|
|
|
alert(tr.schedulingTheDefaultConfigurationCantBeRemoved());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// fixme: move tr.qt_misc schema mod msg into core
|
|
|
|
// fixme: include name of deck in msg
|
|
|
|
const msg = state.removalWilLForceFullSync()
|
|
|
|
? "This will require a one-way sync. Are you sure?"
|
|
|
|
: "Are you sure?";
|
|
|
|
if (confirm(msg)) {
|
2021-04-16 15:29:21 +02:00
|
|
|
try {
|
|
|
|
state.removeCurrentConfig();
|
|
|
|
} catch (err) {
|
|
|
|
alert(err);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}, 100);
|
|
|
|
}
|
2021-04-20 11:50:05 +02:00
|
|
|
|
|
|
|
function save(applyToChildDecks: boolean): void {
|
|
|
|
state.save(applyToChildDecks);
|
|
|
|
}
|
2021-04-16 15:29:21 +02:00
|
|
|
</script>
|
|
|
|
|
2021-05-18 16:32:29 +02:00
|
|
|
<ButtonGroup>
|
|
|
|
<ButtonGroupItem>
|
|
|
|
<LabelButton theme="primary" on:click={() => save(false)}>Save</LabelButton>
|
|
|
|
</ButtonGroupItem>
|
2021-04-12 06:18:30 +02:00
|
|
|
|
2021-05-18 16:32:29 +02:00
|
|
|
<ButtonGroupItem>
|
2021-05-18 18:55:22 +02:00
|
|
|
<WithDropdownMenu let:createDropdown let:activateDropdown let:menuId>
|
|
|
|
<LabelButton on:mount={createDropdown} on:click={activateDropdown} />
|
2021-05-18 16:32:29 +02:00
|
|
|
<DropdownMenu id={menuId}>
|
2021-05-26 01:21:33 +02:00
|
|
|
<DropdownItem on:click={() => dispatch("add")}>Add Config</DropdownItem>
|
|
|
|
<DropdownItem on:click={() => dispatch("rename")}>
|
2021-05-25 19:18:25 +02:00
|
|
|
Rename Config
|
|
|
|
</DropdownItem>
|
2021-05-18 16:32:29 +02:00
|
|
|
<DropdownItem on:click={removeConfig}>Remove Config</DropdownItem>
|
|
|
|
<DropdownDivider />
|
|
|
|
<DropdownItem on:click={() => save(true)}>
|
|
|
|
Save to All Children
|
|
|
|
</DropdownItem>
|
|
|
|
</DropdownMenu>
|
|
|
|
</WithDropdownMenu>
|
|
|
|
</ButtonGroupItem>
|
|
|
|
</ButtonGroup>
|