Edix
An experimental, framework agnostic, small (4kB+) contenteditable state manager.
Install / Use
/learn @inokawa/EdixREADME
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, that was designed for Internet Explorer and copied by other browsers. As you may know it has so many problems. It has no clear spec, 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 edix
typescript >=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
singlelineoption isfalseor undefined, direct children of the root are treated as rows. They must be elements, not text.true, direct children of the root are treated as inline nodes.
- (TODO)
- You must render
-
Initialize
EditorwithcreatePlainEditor/createEditor. -
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.
Plain text
import { useState, useEffect, useRef } from "react";
import { createPlainEditor } from "edix";
export const App = () => {
const ref = useRef<HTMLDivElement>(null);
const [text, setText] = useState("Hello world.");
useEffect(() => {
// 2. init
const editor = createPlainEditor({
text: text,
onChange: (v) => {
// 4. update state
setText(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,
}}
>
{text.split("\n").map((t, i) => (
<div key={i}>{t ? t : <br />}</div>
))}
</div>
);
};
Rich text
Standard Schema is supported.
import { useState, useEffect, useRef, useMemo } from "react";
import { createEditor, ToggleFormat } from "edix";
import * as v from "valibot";
const schema = v.strictObject({
children: v.array(
v.array(
v.strictObject({
text: v.string(),
bold: v.optional(v.boolean()),
italic: v.optional(v.boolean()),
}),
),
),
});
export const App = () => {
const ref = useRef<HTMLDivElement>(null);
type Doc = v.InferOutput<typeof schema>;
const [doc, setDoc] = useState<Doc>({
children: [
[
{ text: "Hello", bold: true },
{ text: " " },
{ text: "World", italic: true },
{ text: "." },
],
],
});
const editor = useMemo(
() =>
createEditor({
doc,
schema,
onChange: setDoc,
}),
[],
);
useEffect(() => {
return editor.input(ref.current);
}, []);
return (
<div>
<div>
<button
onClick={() => {
editor.apply(ToggleFormat, "bold");
}}
>
bold
</button>
<button
onClick={() => {
editor.apply(ToggleFormat, "italic");
}}
>
italic
</button>
</div>
<div
ref={ref}
style={{
backgroundColor: "white",
border: "solid 1px darkgray",
padding: 8,
}}
>
{doc.children.map((r, i) => (
<div key={i}>
{r.map((n, j) => (
<span
key={j}
style={{
fontWeight: n.bold ? "bold" : undefined,
fontStyle: n.italic ? "italic" : undefined,
}}
>
{n.text || <br />}
</span>
))}
</div>
))}
</div>
</div>
);
};
Other examples
- React (Demo, Source)
- Vue (Demo, Source)
- Svelte (Demo, Source)
- Solid (Demo, Source)
- Angular (Demo, Source)
- Preact (Demo, 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
- ProseMirror
- Slate
- Lexical
- Quill
- Tiptap
- Draft.js
- rich-textarea (my early project)
- use-editable
- @react-libraries/markdown-editor
- urql
- TanStack DB
- VS Code
- Language Server Protocol
- Textbus
- vistree
- Proposed EditContext API
- Proposed Richer Text Fields in Open UI
Related Skills
bluebubbles
337.3kUse when you need to send or manage iMessages via BlueBubbles (recommended iMessage integration). Calls go through the generic message tool with channel="bluebubbles".
slack
337.3kUse when you need to control Slack from OpenClaw via the slack tool, including reacting to messages or pinning/unpinning items in Slack channels or DMs.
frontend-design
83.2kCreate distinctive, production-grade frontend interfaces with high design quality. Use this skill when the user asks to build web components, pages, or applications. Generates creative, polished code that avoids generic AI aesthetics.
Agent Development
83.2kThis skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.
