mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 23:42:23 -04:00

* Remove empty divs in rich text input * Refactor inline content detection * Fix formatting
65 lines
1.8 KiB
TypeScript
65 lines
1.8 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 "../DecoratedElements.svelte";
|
|
|
|
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.append(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 (
|
|
nodeContainsInlineContent(fragment) &&
|
|
fragment.lastChild &&
|
|
nodeIsElement(fragment.lastChild) &&
|
|
fragment.lastChild.tagName === "BR"
|
|
) {
|
|
fragment.lastChild.remove();
|
|
}
|
|
|
|
for (const divElement of fragment.querySelectorAll("div:empty")) {
|
|
divElement.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;
|
|
}
|