tiptap-solid
Solid components for tiptap v2
Installation
npm i tiptap-solid
# or
yarn add tiptap-solid
Note: This package just provides components for solid. For configuring/customizing the editor, refer tiptap’s official documentation.
For any issues with the editor. You may need to open the issue on tiptap’s repository
Usage
The structure of the helper components has been designed to mimic the React components provided by tiptap, so for further inspiration on how to use tiptap-solid
see tiptap’s section on React
A Simple editor
import { Component } from "solid-js";
import StarterKit from "@tiptap/starter-kit";
import { createEditor, EditorContent } from "tiptap-solid";
const App: Component = () => {
const editor = createEditor({
extensions: [StarterKit],
content: `Hello world!`,
});
return <EditorContent editor={editor()} />;
};
Rendering a Solid component inside the editor:
Counter.tsx
Create a component import { NodeViewProps } from "@tiptap/core";
import { Component } from "solid-js";
import { NodeViewWrapper } from "tiptap-solid";
const Counter: Component<NodeViewProps> = (props) => {
const increase = () => {
props.updateAttributes({
count: props.node.attrs.count + 1,
});
};
return (
<NodeViewWrapper className="solid-component">
<span contenteditable={false} className="label">
Solid Component
</span>
<div contenteditable={false} className="content">
<button onClick={increase}>
This button has been clicked {props.node.attrs.count} times.
</button>
</div>
</NodeViewWrapper>
);
};
export default Counter;
Extension.ts
Create a node extension import { Node, mergeAttributes } from "@tiptap/core";
import { SolidNodeViewRenderer } from "tiptap-solid";
import Counter from "./Counter";
export default Node.create({
name: "solidComponent",
group: "block",
atom: true,
addAttributes() {
return {
count: {
default: 0,
},
};
},
parseHTML() {
return [
{
tag: "solid-component",
},
];
},
renderHTML({ HTMLAttributes }) {
return ["solid-component", mergeAttributes(HTMLAttributes)];
},
addNodeView() {
return SolidNodeViewRenderer(Counter);
},
});
App.tsx
Register extension in your editor, and use the component’s tag import { Component } from "solid-js";
import StarterKit from "@tiptap/starter-kit";
import { createEditor, EditorContent } from "tiptap-solid";
import Extension from "./Extension";
const App: Component = () => {
const editor = createEditor({
extensions: [StarterKit, Extension],
content: `
<p>
This is still the text editor you’re used to, but enriched with node views.
</p>
<solid-component count="5">
<p>
Editable
</p>
</solid-component>
<p>
Did you see that? That’s a Solid component. We are really living in the future.
</p>
`,
});
return <EditorContent editor={editor()} />;
};