2021-04-20 15:43:59 +02:00
|
|
|
// Copyright: Ankitects Pty Ltd and contributors
|
|
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
2021-04-25 18:25:03 +02:00
|
|
|
|
2021-04-27 23:08:47 +02:00
|
|
|
import EditorToolbar from "./EditorToolbar.svelte";
|
|
|
|
import "./bootstrap.css";
|
2021-04-20 15:32:02 +02:00
|
|
|
|
2021-04-27 23:08:47 +02:00
|
|
|
export function initToolbar(i18n: Promise<void>): Promise<EditorToolbar> {
|
2021-04-25 19:15:00 +02:00
|
|
|
let toolbarResolve: (value: EditorToolbar) => void;
|
|
|
|
const toolbarPromise = new Promise<EditorToolbar>((resolve) => {
|
2021-04-25 18:25:03 +02:00
|
|
|
toolbarResolve = resolve;
|
|
|
|
});
|
|
|
|
|
2021-04-20 15:32:02 +02:00
|
|
|
document.addEventListener("DOMContentLoaded", () => {
|
|
|
|
i18n.then(() => {
|
2021-04-27 17:20:13 +02:00
|
|
|
const target = document.body;
|
|
|
|
const anchor = document.getElementById("fields")!;
|
2021-04-25 18:25:03 +02:00
|
|
|
|
2021-04-27 23:08:47 +02:00
|
|
|
toolbarResolve(
|
|
|
|
new EditorToolbar({
|
|
|
|
target,
|
|
|
|
anchor,
|
|
|
|
props: {
|
|
|
|
nightMode: document.documentElement.classList.contains(
|
|
|
|
"night-mode"
|
|
|
|
),
|
|
|
|
},
|
|
|
|
})
|
|
|
|
);
|
2021-04-20 15:32:02 +02:00
|
|
|
});
|
|
|
|
});
|
2021-04-25 18:25:03 +02:00
|
|
|
|
|
|
|
return toolbarPromise;
|
2021-04-20 15:32:02 +02:00
|
|
|
}
|
2021-04-27 23:08:47 +02:00
|
|
|
|
|
|
|
/* Exports for editor */
|
|
|
|
// @ts-expect-error insufficient typing of svelte modules
|
2021-04-28 13:32:25 +02:00
|
|
|
export { enableButtons, disableButtons, updateActiveButtons, clearActiveButtons } from "./EditorToolbar.svelte";
|