Package Exports
- edix
- edix/package.json
Readme
edix
An experimental, framework agnostic, small (4kB+) contenteditable state manager.
Motivation
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.
Demo
Install
npm install edixtypescript >=5.0 is recommended.
Supported browsers
Browser versions supporting beforeinput event are supported.
Mobile browsers are also supported, but with some issues (https://github.com/inokawa/edix/issues/97).
Getting started
Define your contents declaratively. There are rules you have to follow:
- You must render
<br/>in empty row (limitation of contenteditable). - If
multilineoption isfalseor 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
EditorwithcreateEditor.Call
Editor.inputon mount, withHTMLElementwhich is the root of editable contents.Update your state with
onChange, which will be called on edit.Call returned function from
Editor.inputon unmount for cleanup.
Here is an example for React.
Single line
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>
);
};Multi line
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>
);
};Other examples
- 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!
Documentation
- API reference
- Storybook examples for more usages
Contribute
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.
Making a Pull Request
- Fork this repo.
- Run
npm install. - Commit your fix.
- Make a PR and confirm all the CI checks passed.
Inspirations
- 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