68fa661b53
* Move up MathjaxOverlay to be initialized only once * Move ImageOverlay to NoteEditor root * Move Symbols Overlay to NoteEditor root * Refactor image overlay to not require second mutation observer * Use elevation + overflow:hidden in Editorfield * Make it possible to show input next to each other again * Set handle background color to code bg * Make Collapsible unmount the component * Simplify how decorated elements are mounted * Set RichTextInput background to frame-bg again * Strip out FocusTrap code * Revert "Make Collapsible unmount the component" This reverts commit 52722065ea199fa57ae750fa34bf47ee1c5aab3c. * Allow clicking on label container to unfocus field * Fix mathjax overlay resetting too its api too soon * Allow scrolling on overlays * Set focus-border border-color in focused field * Fix background color of fields * Add back grid-gap removed it during merge to see if margin-top would behave any differently - which is not the case. * Fix double border issue within Collapsible.svelte * Format * Edit appearance of focused fields a bit * Remove unused properties * Include elevation in button_mixins_lib * Give label-container a background color Co-authored-by: Henrik Giesel <hengiesel@gmail.com>
62 lines
1.7 KiB
TypeScript
62 lines
1.7 KiB
TypeScript
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
import {
|
|
fragmentToString,
|
|
nodeContainsInlineContent,
|
|
nodeIsElement,
|
|
} from "../../lib/dom";
|
|
import { createDummyDoc } from "../../lib/parsing";
|
|
import { decoratedElements } from "../decorated-elements";
|
|
|
|
function adjustInputHTML(html: string): string {
|
|
for (const component of decoratedElements) {
|
|
html = component.toUndecorated(html);
|
|
}
|
|
|
|
return html;
|
|
}
|
|
|
|
function adjustInputFragment(fragment: DocumentFragment): void {
|
|
if (nodeContainsInlineContent(fragment)) {
|
|
fragment.appendChild(document.createElement("br"));
|
|
}
|
|
}
|
|
|
|
export function storedToFragment(storedHTML: string): DocumentFragment {
|
|
/* We need .createContextualFragment so that customElements are initialized */
|
|
const fragment = document
|
|
.createRange()
|
|
.createContextualFragment(createDummyDoc(adjustInputHTML(storedHTML)));
|
|
|
|
adjustInputFragment(fragment);
|
|
return fragment;
|
|
}
|
|
|
|
function adjustOutputFragment(fragment: DocumentFragment): void {
|
|
if (
|
|
fragment.hasChildNodes() &&
|
|
nodeIsElement(fragment.lastChild!) &&
|
|
nodeContainsInlineContent(fragment) &&
|
|
fragment.lastChild!.tagName === "BR"
|
|
) {
|
|
fragment.lastChild!.remove();
|
|
}
|
|
}
|
|
|
|
function adjustOutputHTML(html: string): string {
|
|
for (const component of decoratedElements) {
|
|
html = component.toStored(html);
|
|
}
|
|
|
|
return html;
|
|
}
|
|
|
|
export function fragmentToStored(fragment: DocumentFragment): string {
|
|
const clone = document.importNode(fragment, true);
|
|
adjustOutputFragment(clone);
|
|
|
|
const storedHTML = adjustOutputHTML(fragmentToString(clone));
|
|
return storedHTML;
|
|
}
|