9ca13ca3bc
* Export surrounder directly from RichTextInput * Change wording in editor/surround * Remove empty line * Change wording * Fix interfaces * Add field description directly in NoteEditor * Strip description logic from ContentEditable * Make RichTextInput position: relative * Make attachToShadow an async function * Apply field styling to field description * Show FieldDescription only if content empty * Remove descriptionStore and descriptionKey * Revert "Make attachToShadow an async function" This reverts commit b62705eadf7335c7ee0c6c8797047e1f1ccdbf44. SvelteActionReturnType does not accept Promise<void> * Fix mess after merge commit * Require registering surround formats
115 lines
3.6 KiB
Svelte
115 lines
3.6 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 { writable } from "svelte/store";
|
|
|
|
import ButtonToolbar from "../../components/ButtonToolbar.svelte";
|
|
import DynamicallySlottable from "../../components/DynamicallySlottable.svelte";
|
|
import Item from "../../components/Item.svelte";
|
|
import StickyContainer from "../../components/StickyContainer.svelte";
|
|
import BlockButtons from "./BlockButtons.svelte";
|
|
import InlineButtons from "./InlineButtons.svelte";
|
|
import NotetypeButtons from "./NotetypeButtons.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);
|
|
</script>
|
|
|
|
<StickyContainer --gutter-block="0.1rem" --sticky-borders="0 0 1px">
|
|
<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>
|
|
</DynamicallySlottable>
|
|
</ButtonToolbar>
|
|
</StickyContainer>
|