2021-04-15 15:59:52 +02:00
|
|
|
<!--
|
|
|
|
Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
-->
|
2021-10-26 00:43:02 +02:00
|
|
|
<script context="module" lang="ts">
|
2022-02-22 13:17:22 +01:00
|
|
|
import type { Writable } from "svelte/store";
|
|
|
|
|
2022-02-04 09:36:34 +01:00
|
|
|
import { resetAllState, updateAllState } from "../../components/WithState.svelte";
|
2022-02-22 13:17:22 +01:00
|
|
|
import type { SurroundFormat } from "../../domlib/surround";
|
2022-02-03 05:52:11 +01:00
|
|
|
import type { DefaultSlotInterface } from "../../sveltelib/dynamic-slotting";
|
2021-11-05 02:29:02 +01:00
|
|
|
|
2021-04-28 13:32:25 +02:00
|
|
|
export function updateActiveButtons(event: Event) {
|
2021-04-28 14:01:55 +02:00
|
|
|
updateAllState(event);
|
2021-04-28 13:32:25 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
export function clearActiveButtons() {
|
|
|
|
resetAllState(false);
|
2021-04-07 23:53:09 +02:00
|
|
|
}
|
2021-05-05 01:22:51 +02:00
|
|
|
|
2022-02-22 13:17:22 +01:00
|
|
|
export interface RemoveFormat<T> {
|
|
|
|
name: string;
|
|
|
|
show: boolean;
|
|
|
|
active: boolean;
|
|
|
|
format: SurroundFormat<T>;
|
|
|
|
}
|
|
|
|
|
2021-10-19 23:09:12 +02:00
|
|
|
export interface EditorToolbarAPI {
|
2022-02-03 05:52:11 +01:00
|
|
|
toolbar: DefaultSlotInterface;
|
|
|
|
notetypeButtons: DefaultSlotInterface;
|
2022-02-22 13:17:22 +01:00
|
|
|
inlineButtons: DefaultSlotInterface;
|
|
|
|
blockButtons: DefaultSlotInterface;
|
2022-02-03 05:52:11 +01:00
|
|
|
templateButtons: DefaultSlotInterface;
|
2022-02-22 13:17:22 +01:00
|
|
|
removeFormats: Writable<RemoveFormat<any>[]>;
|
2021-10-19 23:09:12 +02:00
|
|
|
}
|
|
|
|
|
2021-07-05 16:19:03 +02:00
|
|
|
/* Our dynamic components */
|
2021-05-06 20:29:55 +02:00
|
|
|
import AddonButtons from "./AddonButtons.svelte";
|
2021-05-06 16:10:26 +02:00
|
|
|
|
|
|
|
export const editorToolbar = {
|
2021-05-06 20:29:55 +02:00
|
|
|
AddonButtons,
|
2021-05-06 16:10:26 +02:00
|
|
|
};
|
2022-02-22 13:17:22 +01:00
|
|
|
|
|
|
|
import contextProperty from "../../sveltelib/context-property";
|
|
|
|
|
|
|
|
const key = Symbol("editorToolbar");
|
|
|
|
const [context, setContextProperty] = contextProperty<EditorToolbarAPI>(key);
|
|
|
|
|
|
|
|
export { context };
|
2021-04-07 23:53:09 +02:00
|
|
|
</script>
|
|
|
|
|
2021-10-26 00:43:02 +02:00
|
|
|
<script lang="ts">
|
2022-02-22 13:17:22 +01:00
|
|
|
import { writable } from "svelte/store";
|
|
|
|
|
2022-01-24 02:43:09 +01:00
|
|
|
import ButtonToolbar from "../../components/ButtonToolbar.svelte";
|
2022-02-03 05:52:11 +01:00
|
|
|
import DynamicallySlottable from "../../components/DynamicallySlottable.svelte";
|
2022-01-24 02:43:09 +01:00
|
|
|
import Item from "../../components/Item.svelte";
|
2022-02-04 09:36:34 +01:00
|
|
|
import StickyContainer from "../../components/StickyContainer.svelte";
|
2022-02-22 13:17:22 +01:00
|
|
|
import BlockButtons from "./BlockButtons.svelte";
|
|
|
|
import InlineButtons from "./InlineButtons.svelte";
|
2022-02-04 09:36:34 +01:00
|
|
|
import NotetypeButtons from "./NotetypeButtons.svelte";
|
2022-05-13 05:04:20 +02:00
|
|
|
import RichTextClozeButtons from "./RichTextClozeButtons.svelte";
|
2021-04-28 02:27:38 +02:00
|
|
|
import TemplateButtons from "./TemplateButtons.svelte";
|
2021-04-27 21:01:44 +02:00
|
|
|
|
2021-10-18 14:01:15 +02:00
|
|
|
export let size: number;
|
|
|
|
export let wrap: boolean;
|
2021-05-27 15:50:49 +02:00
|
|
|
|
2022-02-22 13:17:22 +01:00
|
|
|
const toolbar = {} as DefaultSlotInterface;
|
|
|
|
const notetypeButtons = {} as DefaultSlotInterface;
|
|
|
|
const inlineButtons = {} as DefaultSlotInterface;
|
|
|
|
const blockButtons = {} as DefaultSlotInterface;
|
|
|
|
const templateButtons = {} as DefaultSlotInterface;
|
|
|
|
const removeFormats = writable<RemoveFormat<any>[]>([]);
|
2021-10-19 23:09:12 +02:00
|
|
|
|
2022-02-22 13:17:22 +01:00
|
|
|
let apiPartial: Partial<EditorToolbarAPI> = {};
|
|
|
|
export { apiPartial as api };
|
2021-11-05 02:29:02 +01:00
|
|
|
|
2022-02-22 13:17:22 +01:00
|
|
|
const api: EditorToolbarAPI = Object.assign(apiPartial, {
|
2021-10-19 23:09:12 +02:00
|
|
|
toolbar,
|
|
|
|
notetypeButtons,
|
2022-02-22 13:17:22 +01:00
|
|
|
inlineButtons,
|
|
|
|
blockButtons,
|
2021-10-19 23:09:12 +02:00
|
|
|
templateButtons,
|
2022-02-22 13:17:22 +01:00
|
|
|
removeFormats,
|
2021-11-05 02:29:02 +01:00
|
|
|
} as EditorToolbarAPI);
|
2022-02-22 13:17:22 +01:00
|
|
|
|
|
|
|
setContextProperty(api);
|
2021-03-25 21:11:40 +01:00
|
|
|
</script>
|
|
|
|
|
2021-11-17 04:49:52 +01:00
|
|
|
<StickyContainer --gutter-block="0.1rem" --sticky-borders="0 0 1px">
|
2022-02-03 05:52:11 +01:00
|
|
|
<ButtonToolbar {size} {wrap}>
|
|
|
|
<DynamicallySlottable slotHost={Item} api={toolbar}>
|
|
|
|
<Item id="notetype">
|
|
|
|
<NotetypeButtons api={notetypeButtons}>
|
|
|
|
<slot name="notetypeButtons" />
|
|
|
|
</NotetypeButtons>
|
|
|
|
</Item>
|
|
|
|
|
|
|
|
<Item id="inlineFormatting">
|
2022-02-22 13:17:22 +01:00
|
|
|
<InlineButtons api={inlineButtons} />
|
2022-02-03 05:52:11 +01:00
|
|
|
</Item>
|
|
|
|
|
|
|
|
<Item id="blockFormatting">
|
2022-02-22 13:17:22 +01:00
|
|
|
<BlockButtons api={blockButtons} />
|
2022-02-03 05:52:11 +01:00
|
|
|
</Item>
|
|
|
|
|
|
|
|
<Item id="template">
|
|
|
|
<TemplateButtons api={templateButtons} />
|
|
|
|
</Item>
|
2022-03-31 05:30:00 +02:00
|
|
|
|
|
|
|
<Item id="cloze">
|
2022-05-13 05:04:20 +02:00
|
|
|
<RichTextClozeButtons />
|
2022-03-31 05:30:00 +02:00
|
|
|
</Item>
|
2022-02-03 05:52:11 +01:00
|
|
|
</DynamicallySlottable>
|
2021-05-27 17:13:36 +02:00
|
|
|
</ButtonToolbar>
|
2021-11-17 04:49:52 +01:00
|
|
|
</StickyContainer>
|