2022-01-24 02:43:09 +01:00
|
|
|
<!--
|
|
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
-->
|
|
|
|
<script context="module" lang="ts">
|
|
|
|
import { writable } from "svelte/store";
|
|
|
|
|
|
|
|
const active = writable(false);
|
2022-02-03 05:52:11 +01:00
|
|
|
|
|
|
|
export function togglePreviewButtonState(state: boolean): void {
|
|
|
|
active.set(state);
|
|
|
|
}
|
|
|
|
|
|
|
|
Object.assign(globalThis, { togglePreviewButtonState });
|
2022-01-24 02:43:09 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2022-02-03 05:52:11 +01:00
|
|
|
import LabelButton from "../components/LabelButton.svelte";
|
|
|
|
import Shortcut from "../components/Shortcut.svelte";
|
2022-02-04 09:36:34 +01:00
|
|
|
import { bridgeCommand } from "../lib/bridgecommand";
|
|
|
|
import * as tr from "../lib/ftl";
|
|
|
|
import { getPlatformString } from "../lib/shortcuts";
|
2022-01-24 02:43:09 +01:00
|
|
|
|
|
|
|
const keyCombination = "Control+Shift+P";
|
|
|
|
function preview(): void {
|
|
|
|
bridgeCommand("preview");
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<LabelButton
|
|
|
|
tooltip={tr.browsingPreviewSelectedCard({ val: getPlatformString(keyCombination) })}
|
|
|
|
active={$active}
|
|
|
|
on:click={preview}
|
|
|
|
>
|
|
|
|
{tr.actionsPreview()}
|
|
|
|
</LabelButton>
|
|
|
|
|
|
|
|
<Shortcut keyCombination="Control+Shift+P" on:action={preview} />
|