Integration with React
Make sure you are familiar with basic React concepts and patterns. For a refresher, see the React documentation.
DHTMLX RichText works with React. For a complete code example, see the GitHub demo.
Create a project
Create a new my-react-richtext-app project with Create React App:
npx create-react-app my-react-richtext-app
Install dependencies
Switch to the new app directory:
cd my-react-richtext-app
Install dependencies and start the dev server with a package manager.
For yarn, run:
yarn
yarn start
For npm, run:
npm install
npm start
The app runs on localhost (for example, http://localhost:3000).
Create RichText
Stop the app and install the RichText package.
Step 1. Install the package
Download the trial RichText package and follow the steps in the README file. The trial license is valid for 30 days.
Step 2. Create the component
Create a React component to add RichText to the application. In the src/ directory, create a new file named Richtext.jsx.
Import source files
Open Richtext.jsx and import the RichText source files.
For the PRO version installed from a local folder, use:
import { Richtext } from 'dhx-richtext-package';
import 'dhx-richtext-package/dist/richtext.css';
For the trial version, use:
import { Richtext } from '@dhx/trial-richtext';
import "@dhx/trial-richtext/dist/richtext.css";
This tutorial uses the trial version of RichText.
Set the container and initialize RichText
Set a container element for RichText and initialize the component with the Richtext constructor inside useEffect(). Call the destructor() method in the cleanup function to remove RichText:
import { useEffect, useRef } from "react";
import { Richtext } from '@dhx/trial-richtext';
import '@dhx/trial-richtext/dist/richtext.css'; // include RichText styles
export default function RichTextComponent(props) {
let richtext_container = useRef(); // container for RichText
useEffect(() => {
// initialize the RichText component
const editor = new Richtext(richtext_container.current, {});
return () => {
editor.destructor(); // destroy RichText
};
}, []);
return <div className="component_container">
<div ref={richtext_container} className="widget"></div>
</div>
}
Add styles
Add the styles for RichText and its container to the main CSS file of the project:
/* base page styles */
html,
body,
#root {
height: 100%;
padding: 0;
margin: 0;
}
/* RichText container */
.component_container {
height: 100%;
margin: 0 auto;
}
/* RichText widget */
.widget {
height: calc(100% - 56px);
}
Load data
Provide data for RichText. Create the data.js file in the src/ directory:
export function getData() {
const value = `
<h2>RichText 2.0</h2>
<p>Repository at <a href="https://git.webix.io/xbs/richtext">https://git.webix.io/xbs/richtext</a></p>
<p><img src="https://placecats.com/500/300" style={{width: '500px', height: '300px'}}></p>`;
return { value };
}
Open App.js and import the data. Pass the value to the <RichText/> component as a prop:
import RichText from "./Richtext";
import { getData } from "./data";
function App() {
const { value } = getData();
return <RichText value={value} />;
}
export default App;
Open Richtext.jsx and pass props.value to the RichText configuration:
import { useEffect, useRef } from "react";
import { Richtext } from "@dhx/trial-richtext";
import "@dhx/trial-richtext/dist/richtext.css";
export default function RichTextComponent(props) {
let richtext_container = useRef();
useEffect(() => {
const editor = new Richtext(richtext_container.current, {
value: props.value, // apply value
// other configuration properties
});
return () => {
editor.destructor();
};
}, []);
return <div className="component_container">
<div ref={richtext_container} className="widget"></div>
</div>
}
Alternatively, call the setValue() method inside useEffect() to load data into RichText:
import { useEffect, useRef } from "react";
import { Richtext } from "@dhx/trial-richtext";
import "@dhx/trial-richtext/dist/richtext.css";
export default function RichTextComponent(props) {
let richtext_container = useRef();
let value = props.value;
useEffect(() => {
const editor = new Richtext(richtext_container.current, {
// configuration properties
});
editor.setValue(value);
return () => {
editor.destructor();
};
}, []);
return <div className="component_container">
<div ref={richtext_container} className="widget"></div>
</div>
}
The RichText component is ready to use. React renders the editor with data when the <RichText/> element mounts. For the full list of configuration options, see the RichText API overview.
Handle events
RichText fires events on user actions. Subscribe to events with the api.on() method to react to user input. See the full list of events.
Open Richtext.jsx and update the useEffect() hook. The example below logs a message on every print event:
// ...
useEffect(() => {
const editor = new Richtext(richtext_container.current, {});
editor.api.on("print", () => {
console.log("The document is printing");
});
return () => {
editor.destructor();
};
}, []);
// ...
Start the app to see RichText render with data on the page.

You now have a working RichText integration in React. Customize the code to fit your needs. A complete example is available on GitHub.