f72570c604
* Make tags editor resizable using Henrik's components All credit for the components goes to Henrik. I just tweaked the design a bit and implemented them in NoteEditor. Co-Authored-By: Henrik Giesel <hengiesel@gmail.com> * Remove PaneContent padding Co-Authored-By: Henrik Giesel <hengiesel@gmail.com> * Add responsive box-shadows on scroll/resize only shown when content overflows in the respective direction. * Remove comment * Fix overflow calculations and shadow mix-up This happened when I switched from using scrolledToX to overflowX booleans. * Simplify overflow calculations * Make drag handles 0 height/width The remaining height requirement comes from a margin set on NoteEditor. * Run eslint on components * Split editor into three panes: Toolbar, Fields, Tags * Remove upper split for now to unblock 2.1.55 beta * Move panes.scss to sass folder * Use single type for resizable panes * Implement collapsed state toggled with click on resizer * Add button to uncollapse tags pane and focus input * Add indicator for # of tags * Use dbclick to prevent interference with resize state * Add utility functions for expand/collapse * Meddle around with types and formatting * Fix collapsed state being forgotten on second browser open (dae) * Fix typecheck (dae) Our tooling generates .d.ts files from the Svelte files, but it doesn't expect variables to be exported. By changing them into functions, they get included in .bazel/bin/ts/components/Pane.svelte.d.ts * Remove an unnecessary bridgeCommand (dae) * Fix the bottom of tags getting cut off (dae) Not sure why offsetHeight is inaccurate in this case. * Add missing header (dae) Co-authored-by: Henrik Giesel <hengiesel@gmail.com>
132 lines
3.9 KiB
Svelte
132 lines
3.9 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 type { Writable } from "svelte/store";
|
|
|
|
import { resetAllState, updateAllState } from "../../components/WithState.svelte";
|
|
import type { DefaultSlotInterface } from "../../sveltelib/dynamic-slotting";
|
|
|
|
export function updateActiveButtons(event: Event) {
|
|
updateAllState(event);
|
|
}
|
|
|
|
export function clearActiveButtons() {
|
|
resetAllState(false);
|
|
}
|
|
|
|
export interface RemoveFormat {
|
|
name: string;
|
|
key: string;
|
|
show: boolean;
|
|
active: boolean;
|
|
}
|
|
|
|
export interface EditorToolbarAPI {
|
|
toolbar: DefaultSlotInterface;
|
|
notetypeButtons: DefaultSlotInterface;
|
|
inlineButtons: DefaultSlotInterface;
|
|
blockButtons: DefaultSlotInterface;
|
|
templateButtons: DefaultSlotInterface;
|
|
removeFormats: Writable<RemoveFormat[]>;
|
|
}
|
|
|
|
/* Our dynamic components */
|
|
import AddonButtons from "./AddonButtons.svelte";
|
|
|
|
export const editorToolbar = {
|
|
AddonButtons,
|
|
};
|
|
|
|
import contextProperty from "../../sveltelib/context-property";
|
|
|
|
const key = Symbol("editorToolbar");
|
|
const [context, setContextProperty] = contextProperty<EditorToolbarAPI>(key);
|
|
|
|
export { context };
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
import { createEventDispatcher } from "svelte";
|
|
import { writable } from "svelte/store";
|
|
|
|
import ButtonToolbar from "../../components/ButtonToolbar.svelte";
|
|
import DynamicallySlottable from "../../components/DynamicallySlottable.svelte";
|
|
import Item from "../../components/Item.svelte";
|
|
import BlockButtons from "./BlockButtons.svelte";
|
|
import InlineButtons from "./InlineButtons.svelte";
|
|
import NotetypeButtons from "./NotetypeButtons.svelte";
|
|
import OptionsButton from "./OptionsButton.svelte";
|
|
import RichTextClozeButtons from "./RichTextClozeButtons.svelte";
|
|
import TemplateButtons from "./TemplateButtons.svelte";
|
|
|
|
export let size: number;
|
|
export let wrap: boolean;
|
|
|
|
const toolbar = {} as DefaultSlotInterface;
|
|
const notetypeButtons = {} as DefaultSlotInterface;
|
|
const inlineButtons = {} as DefaultSlotInterface;
|
|
const blockButtons = {} as DefaultSlotInterface;
|
|
const templateButtons = {} as DefaultSlotInterface;
|
|
const removeFormats = writable<RemoveFormat[]>([]);
|
|
|
|
let apiPartial: Partial<EditorToolbarAPI> = {};
|
|
export { apiPartial as api };
|
|
|
|
const api: EditorToolbarAPI = Object.assign(apiPartial, {
|
|
toolbar,
|
|
notetypeButtons,
|
|
inlineButtons,
|
|
blockButtons,
|
|
templateButtons,
|
|
removeFormats,
|
|
} as EditorToolbarAPI);
|
|
|
|
setContextProperty(api);
|
|
|
|
const dispatch = createEventDispatcher();
|
|
|
|
let clientHeight: number;
|
|
$: dispatch("heightChange", { height: clientHeight });
|
|
</script>
|
|
|
|
<div class="editor-toolbar" bind:clientHeight>
|
|
<ButtonToolbar {size} {wrap}>
|
|
<DynamicallySlottable slotHost={Item} api={toolbar}>
|
|
<Item id="notetype">
|
|
<NotetypeButtons api={notetypeButtons}>
|
|
<slot name="notetypeButtons" />
|
|
</NotetypeButtons>
|
|
</Item>
|
|
|
|
<Item id="inlineFormatting">
|
|
<InlineButtons api={inlineButtons} />
|
|
</Item>
|
|
|
|
<Item id="blockFormatting">
|
|
<BlockButtons api={blockButtons} />
|
|
</Item>
|
|
|
|
<Item id="template">
|
|
<TemplateButtons api={templateButtons} />
|
|
</Item>
|
|
|
|
<Item id="cloze">
|
|
<RichTextClozeButtons />
|
|
</Item>
|
|
|
|
<Item id="options">
|
|
<OptionsButton />
|
|
</Item>
|
|
</DynamicallySlottable>
|
|
</ButtonToolbar>
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.editor-toolbar {
|
|
padding: 0 0 4px;
|
|
border-bottom: 1px solid var(--border);
|
|
}
|
|
</style>
|