4360fd16fb
Refactor PlainTextInput Put CodeMirror themes into variables
184 lines
4.4 KiB
Svelte
184 lines
4.4 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 { EditingInputAPI } from "./EditingArea.svelte";
|
|
import CodeMirror from "./CodeMirror.svelte";
|
|
|
|
export interface PlainTextInputAPI extends EditingInputAPI {
|
|
name: "plain-text";
|
|
moveCaretToEnd(): void;
|
|
toggle(): boolean;
|
|
getEditor(): CodeMirror.Editor;
|
|
}
|
|
|
|
export const parsingInstructions: string[] = [];
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
import type { CodeMirrorAPI } from "./CodeMirror.svelte";
|
|
import { tick, onMount } from "svelte";
|
|
import { writable } from "svelte/store";
|
|
import { pageTheme } from "../sveltelib/theme";
|
|
import { getDecoratedElements } from "./DecoratedElements.svelte";
|
|
import { getEditingArea } from "./EditingArea.svelte";
|
|
import { htmlanki, baseOptions, gutterOptions } from "./code-mirror";
|
|
|
|
export let hidden = false;
|
|
|
|
const configuration = {
|
|
mode: htmlanki,
|
|
...baseOptions,
|
|
...gutterOptions,
|
|
};
|
|
|
|
const { editingInputs, content } = getEditingArea();
|
|
const decoratedElements = getDecoratedElements();
|
|
const code = writable($content);
|
|
|
|
function adjustInputHTML(html: string): string {
|
|
for (const component of decoratedElements) {
|
|
html = component.toUndecorated(html);
|
|
}
|
|
|
|
return html;
|
|
}
|
|
|
|
const parser = new DOMParser();
|
|
|
|
function removeTag(element: HTMLElement, tagName: string): void {
|
|
for (const elem of element.getElementsByTagName(tagName)) {
|
|
elem.remove();
|
|
}
|
|
}
|
|
|
|
function parseAsHTML(html: string): string {
|
|
const doc = parser.parseFromString(
|
|
parsingInstructions.join("") + html,
|
|
"text/html",
|
|
);
|
|
const body = doc.body;
|
|
|
|
removeTag(body, "script");
|
|
removeTag(body, "link");
|
|
removeTag(body, "style");
|
|
|
|
return doc.body.innerHTML;
|
|
}
|
|
|
|
function adjustOutputHTML(html: string): string {
|
|
for (const component of decoratedElements) {
|
|
html = component.toStored(html);
|
|
}
|
|
|
|
return html;
|
|
}
|
|
|
|
let codeMirror: CodeMirrorAPI;
|
|
|
|
function focus(): void {
|
|
codeMirror?.editor.focus();
|
|
}
|
|
|
|
function refocus(): void {
|
|
(codeMirror?.editor as any).display.input.blur();
|
|
focus();
|
|
}
|
|
|
|
function moveCaretToEnd(): void {
|
|
codeMirror?.editor.setCursor(codeMirror.editor.lineCount(), 0);
|
|
}
|
|
|
|
function toggle(): boolean {
|
|
hidden = !hidden;
|
|
return hidden;
|
|
}
|
|
|
|
function getEditor(): CodeMirror.Editor {
|
|
return codeMirror?.editor;
|
|
}
|
|
|
|
export const api = {
|
|
name: "plain-text",
|
|
focus,
|
|
focusable: !hidden,
|
|
moveCaretToEnd,
|
|
refocus,
|
|
toggle,
|
|
getEditor,
|
|
} as PlainTextInputAPI;
|
|
|
|
function pushUpdate(): void {
|
|
api.focusable = !hidden;
|
|
$editingInputs = $editingInputs;
|
|
}
|
|
|
|
function refresh() {
|
|
codeMirror.editor.refresh();
|
|
}
|
|
|
|
$: {
|
|
hidden;
|
|
tick().then(refresh);
|
|
pushUpdate();
|
|
}
|
|
|
|
onMount(() => {
|
|
$editingInputs.push(api);
|
|
$editingInputs = $editingInputs;
|
|
|
|
const unsubscribeFromEditingArea = content.subscribe((value: string): void => {
|
|
const adjusted = adjustInputHTML(value);
|
|
code.set(adjusted);
|
|
});
|
|
|
|
const unsubscribeToEditingArea = code.subscribe((value: string): void => {
|
|
const parsed = parseAsHTML(value);
|
|
content.set(adjustOutputHTML(parsed));
|
|
});
|
|
|
|
return () => {
|
|
unsubscribeFromEditingArea();
|
|
unsubscribeToEditingArea();
|
|
};
|
|
});
|
|
</script>
|
|
|
|
<div
|
|
class="plain-text-input"
|
|
class:light-theme={!$pageTheme.isDark}
|
|
class:hidden
|
|
on:focusin
|
|
on:focusout
|
|
>
|
|
<CodeMirror
|
|
{configuration}
|
|
{code}
|
|
bind:api={codeMirror}
|
|
on:change={({ detail: html }) => code.set(parseAsHTML(html))}
|
|
/>
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
.plain-text-input {
|
|
overflow-x: hidden;
|
|
|
|
:global(.CodeMirror) {
|
|
border-radius: 0 0 5px 5px;
|
|
}
|
|
|
|
:global(.CodeMirror-lines) {
|
|
padding: 6px 0;
|
|
}
|
|
|
|
&.hidden {
|
|
display: none;
|
|
}
|
|
}
|
|
|
|
.light-theme :global(.CodeMirror) {
|
|
border-top: 1px solid #ddd;
|
|
}
|
|
</style>
|