30bbbaf00b
* Make eslint sort our imports * fix missing deps in eslint rule (dae) Caught on Linux due to the stricter sandboxing * Remove exports-last eslint rule (for now?) * Adjust browserslist settings - We use ResizeObserver which is not supported in browsers like KaiOS, Baidu or Android UC * Raise minimum iOS version 13.4 - It's the first version that supports ResizeObserver * Apply new eslint rules to sort imports
39 lines
1.1 KiB
Svelte
39 lines
1.1 KiB
Svelte
<!--
|
|
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);
|
|
|
|
export function togglePreviewButtonState(state: boolean): void {
|
|
active.set(state);
|
|
}
|
|
|
|
Object.assign(globalThis, { togglePreviewButtonState });
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
import LabelButton from "../components/LabelButton.svelte";
|
|
import Shortcut from "../components/Shortcut.svelte";
|
|
import { bridgeCommand } from "../lib/bridgecommand";
|
|
import * as tr from "../lib/ftl";
|
|
import { getPlatformString } from "../lib/shortcuts";
|
|
|
|
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} />
|