2022-01-12 05:51:43 +01:00
|
|
|
<!--
|
|
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
-->
|
|
|
|
<script lang="ts">
|
2022-01-16 06:05:35 +01:00
|
|
|
import { onMount, onDestroy } from "svelte";
|
|
|
|
import { bridgeCommand } from "../lib/bridgecommand";
|
|
|
|
import { registerShortcut } from "../lib/shortcuts";
|
|
|
|
import StickyBadge from "./StickyBadge.svelte";
|
|
|
|
import OldEditorAdapter from "./OldEditorAdapter.svelte";
|
|
|
|
import type { NoteEditorAPI } from "./OldEditorAdapter.svelte";
|
2022-01-12 05:51:43 +01:00
|
|
|
|
|
|
|
const api: Partial<NoteEditorAPI> = {};
|
|
|
|
let noteEditor: OldEditorAdapter;
|
|
|
|
|
|
|
|
export let uiResolve: (api: NoteEditorAPI) => void;
|
|
|
|
|
|
|
|
$: if (noteEditor) {
|
|
|
|
uiResolve(api as NoteEditorAPI);
|
|
|
|
}
|
2022-01-16 06:05:35 +01:00
|
|
|
|
|
|
|
let stickies: boolean[] = [];
|
|
|
|
|
|
|
|
function setSticky(stckies: boolean[]): void {
|
|
|
|
stickies = stckies;
|
|
|
|
}
|
|
|
|
|
|
|
|
function toggleStickyAll(): void {
|
|
|
|
bridgeCommand("toggleStickyAll", (values: boolean[]) => (stickies = values));
|
|
|
|
}
|
|
|
|
|
|
|
|
let deregisterSticky: () => void;
|
|
|
|
export function activateStickyShortcuts() {
|
|
|
|
deregisterSticky = registerShortcut(toggleStickyAll, "Shift+F9");
|
|
|
|
}
|
|
|
|
|
|
|
|
onMount(() => {
|
|
|
|
Object.assign(globalThis, {
|
|
|
|
setSticky,
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
onDestroy(() => deregisterSticky);
|
2022-01-12 05:51:43 +01:00
|
|
|
</script>
|
|
|
|
|
2022-01-16 06:05:35 +01:00
|
|
|
<OldEditorAdapter bind:this={noteEditor} {api}>
|
|
|
|
<svelte:fragment slot="field-state" let:index>
|
|
|
|
<StickyBadge active={stickies[index]} {index} />
|
|
|
|
</svelte:fragment>
|
|
|
|
</OldEditorAdapter>
|