218 lines
No EOL
6.1 KiB
TypeScript
218 lines
No EOL
6.1 KiB
TypeScript
import { Component, createEffect, createMemo, createSignal, For, on, onMount, untrack } from 'solid-js';
|
|
import { debounce } from '@solid-primitives/scheduled';
|
|
import { createSelection, getTextNodes } from '@solid-primitives/selection';
|
|
import { createSource } from '~/features/source';
|
|
import { isServer } from 'solid-js/web';
|
|
import css from './textarea.module.css';
|
|
|
|
interface TextareaProps {
|
|
class?: string;
|
|
value: string;
|
|
lang: string;
|
|
placeholder?: string;
|
|
oninput?: (next: string) => any;
|
|
spellChecker?: any;
|
|
grammarChecker?: any;
|
|
}
|
|
|
|
export function Textarea(props: TextareaProps) {
|
|
const [selection, setSelection] = createSelection();
|
|
const [editorRef, setEditorRef] = createSignal<HTMLElement>();
|
|
let mounted = false;
|
|
|
|
const source = createSource(props.value);
|
|
|
|
createEffect(on(() => [props.oninput, source.in] as const, ([oninput, text]) => {
|
|
if (!mounted) {
|
|
return;
|
|
}
|
|
|
|
oninput?.(text);
|
|
}));
|
|
|
|
onMount((() => {
|
|
mounted = true;
|
|
}));
|
|
|
|
createEffect(() => {
|
|
source.in = props.value;
|
|
});
|
|
|
|
const mutate = debounce(() => {
|
|
const [, start, end] = selection();
|
|
const ref = editorRef();
|
|
|
|
if (ref) {
|
|
source.out = ref.innerHTML;
|
|
|
|
ref.style.height = `1px`;
|
|
ref.style.height = `${2 + ref.scrollHeight}px`;
|
|
|
|
setSelection([ref, start, end]);
|
|
}
|
|
}, 300);
|
|
|
|
onMount(() => {
|
|
new MutationObserver(mutate).observe(editorRef()!, {
|
|
subtree: true,
|
|
childList: true,
|
|
characterData: true,
|
|
});
|
|
});
|
|
|
|
createEffect(() => {
|
|
createHighlights(editorRef()!, 'spelling-error', source.spellingErrors);
|
|
});
|
|
|
|
createEffect(() => {
|
|
createHighlights(editorRef()!, 'grammar-error', source.grammarErrors);
|
|
});
|
|
|
|
createEffect(() => {
|
|
createHighlights(editorRef()!, 'search-results', source.queryResults);
|
|
});
|
|
|
|
return <>
|
|
<Suggestions />
|
|
<input class={css.search} type="search" oninput={e => source.query = e.target.value} />
|
|
<div
|
|
ref={setEditorRef}
|
|
class={`${css.textarea} ${props.class}`}
|
|
contentEditable
|
|
dir="auto"
|
|
lang={props.lang}
|
|
innerHTML={source.out}
|
|
data-placeholder={props.placeholder ?? ''}
|
|
on:keydown={e => e.stopPropagation()}
|
|
on:pointerdown={e => e.stopPropagation()}
|
|
/>
|
|
</>;
|
|
}
|
|
|
|
const Suggestions: Component = () => {
|
|
const [selection] = createSelection();
|
|
const [suggestionRef, setSuggestionRef] = createSignal<HTMLElement>();
|
|
const [suggestions, setSuggestions] = createSignal<string[]>([]);
|
|
|
|
const marker = createMemo(() => {
|
|
if (isServer) {
|
|
return;
|
|
}
|
|
|
|
const [n] = selection();
|
|
const s = window.getSelection();
|
|
|
|
if (n === null || s === null || s.rangeCount < 1) {
|
|
return;
|
|
}
|
|
|
|
return (findMarkerNode(s.getRangeAt(0)?.commonAncestorContainer) ?? undefined) as HTMLElement | undefined;
|
|
});
|
|
|
|
createEffect<HTMLElement | undefined>((prev) => {
|
|
if (prev) {
|
|
prev.style.setProperty('anchor-name', null);
|
|
}
|
|
|
|
const m = marker();
|
|
const ref = untrack(() => suggestionRef()!);
|
|
|
|
if (m === undefined) {
|
|
if (ref.matches(':popover-open')) {
|
|
ref.hidePopover();
|
|
}
|
|
|
|
return;
|
|
}
|
|
|
|
m.style.setProperty('anchor-name', '--suggestions');
|
|
|
|
if (ref.matches(':not(:popover-open)')) {
|
|
ref.showPopover();
|
|
}
|
|
|
|
ref.focus()
|
|
|
|
return m;
|
|
});
|
|
|
|
createEffect(() => {
|
|
marker();
|
|
|
|
setSuggestions(Array(Math.ceil(Math.random() * 5)).fill('').map((_, i) => `suggestion ${i}`));
|
|
});
|
|
|
|
const onPointerDown = (e: PointerEvent) => {
|
|
marker()?.replaceWith(document.createTextNode(e.target.textContent));
|
|
};
|
|
|
|
const onKeyDown = (e: KeyboardEvent) => {
|
|
console.log(e);
|
|
}
|
|
|
|
return <menu ref={setSuggestionRef} class={css.suggestions} popover="manual" onkeydown={onKeyDown}>
|
|
<For each={suggestions()}>{
|
|
suggestion => <li onpointerdown={onPointerDown}>{suggestion}</li>
|
|
}</For>
|
|
</menu>;
|
|
};
|
|
|
|
const findMarkerNode = (node: Node | null) => {
|
|
while (node !== null) {
|
|
if (node.nodeType === Node.ELEMENT_NODE && (node as HTMLElement).hasAttribute('data-marker')) {
|
|
break;
|
|
}
|
|
|
|
node = node.parentNode;
|
|
}
|
|
|
|
return node;
|
|
};
|
|
|
|
const spellChecker = checker(/\w+/gi);
|
|
const grammarChecker = checker(/\w+\s+\w+/gi);
|
|
|
|
function checker(regex: RegExp) {
|
|
return (subject: string, lang: string): [number, number][] => {
|
|
// return [];
|
|
|
|
const threshold = .75//.99;
|
|
|
|
return Array.from<RegExpExecArray>(subject.matchAll(regex)).filter(() => Math.random() >= threshold).map(({ 0: match, index }) => {
|
|
return [index, index + match.length] as const;
|
|
});
|
|
}
|
|
}
|
|
|
|
const createHighlights = (node: Node, type: string, ranges: [number, number][]) => {
|
|
queueMicrotask(() => {
|
|
const nodes = getTextNodes(node);
|
|
|
|
CSS.highlights.set(type, new Highlight(...ranges.map(([start, end]) => indicesToRange(start, end, nodes))));
|
|
});
|
|
};
|
|
|
|
const indicesToRange = (start: number, end: number, textNodes: Node[]) => {
|
|
const [startNode, startPos] = getRangeArgs(start, textNodes);
|
|
const [endNode, endPos] = start === end ? [startNode, startPos] : getRangeArgs(end, textNodes);
|
|
|
|
const range = new Range();
|
|
|
|
if (startNode && endNode && startPos !== -1 && endPos !== -1) {
|
|
range.setStart(startNode, startPos);
|
|
range.setEnd(endNode, endPos);
|
|
}
|
|
|
|
return range;
|
|
}
|
|
|
|
const getRangeArgs = (offset: number, texts: Node[]): [node: Node | null, offset: number] =>
|
|
texts.reduce(
|
|
([node, pos], text) =>
|
|
node
|
|
? [node, pos]
|
|
: pos <= (text as Text).data.length
|
|
? [text, pos]
|
|
: [null, pos - (text as Text).data.length],
|
|
[null, offset] as [node: Node | null, pos: number],
|
|
); |