An experimental, framework agnostic, small (4kB+) contenteditable state manager.
Web editing is so hard even today. There are excellent libraries to make complex rich text editor, but they are too much for small purposes. Native textarea element is accessible and easy to use, but it's hardly customizable.
contenteditable attribute is a primitive for rich text editing, but as you may know it has so many problems. It has many edge case bugs, and has cross browser/OS/input device problems. And it doesn't work well with declarative frontend frameworks... However, at least the core of contenteditable is stable and it works in all browsers except the inconsistencies. This library aims to fill that gap, fix contenteditable to fit modern web development.
npm install edix
typescript >=5.0
is recommended.
Browser versions supporting beforeinput event are supported.
Mobile browsers are also supported, but with some issues (#97).
-
Define your contents declaratively. There are rules you have to follow:
- You must render
<br/>
in empty row (limitation of contenteditable). - If
multiline
option isfalse
or undefined, direct children of the root are treated as inline nodes.true
, direct children of the root are treated as rows. They must be elements, not text.
- (TODO)
- You must render
-
Initialize
Editor
withcreateEditor
. -
Call
Editor.input
on mount, withHTMLElement
which is the root of editable contents. -
Update your state with
onChange
, which will be called on edit. -
Call returned function from
Editor.input
on unmount for cleanup.
Here is an example for React.
import { useState, useEffect, useRef } from "react";
import { createEditor, plainSchema } from "edix";
export const App = () => {
const ref = useRef<HTMLDivElement>(null);
const [value, setValue] = useState("Hello world.");
useEffect(() => {
// 2. init
const editor = createEditor({
doc: value,
schema: plainSchema(),
onChange: (v) => {
// 4. update state
setValue(v);
},
});
// 3. bind to DOM
const cleanup = editor.input(ref.current);
return () => {
// 5. cleanup DOM
cleanup();
};
}, []);
// 1. render contents from state
return (
<div
ref={ref}
style={{
backgroundColor: "white",
border: "solid 1px darkgray",
padding: 8,
}}
>
{value ? value : <br />}
</div>
);
};
import { useState, useEffect, useRef } from "react";
import { createEditor, plainSchema } from "edix";
export const App = () => {
const ref = useRef<HTMLDivElement>(null);
const [value, setValue] = useState("Hello world.");
useEffect(() => {
// 2. init
const editor = createEditor({
doc: value,
schema: plainSchema({ multiline: true }),
onChange: (v) => {
// 4. update state
setValue(v);
},
});
// 3. bind to DOM
const cleanup = editor.input(ref.current);
return () => {
// 5. cleanup DOM
cleanup();
};
}, []);
// 1. render contents from state
return (
<div
ref={ref}
style={{
backgroundColor: "white",
border: "solid 1px darkgray",
padding: 8,
}}
>
{value.split("\n").map((t, i) => (
<div key={i}>{t ? t : <br />}</div>
))}
</div>
);
};
- React (Demo, Source)
- Vue (Demo, Source)
- Svelte (Demo, Source)
- Solid (Demo, Source)
- Angular (Demo, Source)
- Preact (Demo, Source)
- Qwik (Source)
- Vanilla (Demo, Source)
...and more! Contribution welcome!
- API reference
- Storybook examples for more usages
All contributions are welcome. If you find a problem, feel free to create an issue or a PR. If you have a question, ask in discussions.
- Fork this repo.
- Run
npm install
. - Commit your fix.
- Make a PR and confirm all the CI checks passed.
- Many great text editor libraries (ProseMirror, Lexical, Slate, Quill, Draft.js, etc.)
- rich-textarea (my early work)
- use-editable
- @react-libraries/markdown-editor
- Textbus
- vistree
- Proposed EditContext API
- Proposed Richer Text Fields in Open UI