
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
@onlyoffice/document-editor-react
Advanced tools
This repo contains the ONLYOFFICE Docs React component which integrates ONLYOFFICE Document Server into React projects.
Please note: Before working with this component, you need to install ONLYOFFICE Docs. To do so, you can use Docker (recommended).
This procedure requires Node.js (and npm).
This procedure creates a basic React application and installs an ONLYOFFICE Docs editor in it.
npx create-react-app onlyoffice-react-demo
cd onlyoffice-react-demo
npm install --save @onlyoffice/document-editor-react
You can also use the following yarn command:
yarn add @onlyoffice/document-editor-react
import React, { useRef } from 'react';
import { DocumentEditor } from "@onlyoffice/document-editor-react";
var onDocumentReady = function (event) {
console.log("Document is loaded");
};
var onLoadComponentError = function (errorCode, errorDescription) {
switch(errorCode) {
case -1: // Unknown error loading component
console.log(errorDescription);
break;
case -2: // Error load DocsAPI from http://documentserver/
console.log(errorDescription);
break;
case -3: // DocsAPI is not defined
console.log(errorDescription);
break;
}
};
export default function App() {
return (
<pre>
<DocumentEditor
id="docxEditor"
documentServerUrl="http://documentserver/"
config={{
"document": {
"fileType": "docx",
"key": "Khirz6zTPdfd7",
"title": "Example Document Title.docx",
"url": "https://example.com/url-to-example-document.docx"
},
"documentType": "word",
"editorConfig": {
"callbackUrl": "https://example.com/url-to-callback.ashx"
}
}}
events_onDocumentReady={onDocumentReady}
onLoadComponentError={onLoadComponentError}
/>
</>
);
}
Replace the following lines with your own data:
This JavaScript file will create the App component containing the ONLYOFFICE Docs editor configured with basic features.
npm run start
The easiest way to deploy the application to a production environment is to install serve and create a static server:
npm install -g serve
serve -s build
Another port can be adjusted using the -l or --listen flags:
serve -s build -l 4000
cd onlyoffice-react-demo
serve
Now you can deploy the application to the created server:
npm run build
The build directory will be created with a production build of your app.
The application will be deployed on the web server (http://localhost:3000 by default).
| Name | Type | Default | Required | Description |
|---|---|---|---|---|
id | string | null | yes | Component unique identifier. |
documentServerUrl | string | null | yes | Address of ONLYOFFICE Document Server. |
config | object | null | yes | Generic configuration object for opening a file with token. Config API |
onLoadComponentError | (errorCode: number, errorDescription: string) => void | null | no | The function called when an error occurs while loading a component |
document_fileType | string | null | no | The type of the file. |
document_title | string | null | no | The file name. |
documentType | string | null | no | The document type. |
height | string | null | no | Defines the document height in the browser window. |
type | string | null | no | Defines the platform type used to access the document (desktop, mobile or embedded). |
width | string | null | no | Defines the document width in the browser window. |
events_onAppReady | (event: object) => void | null | no | The function called when the application is loaded into the browser. |
events_onDocumentStateChange | (event: object) => void | null | no | The function called when the document is modified. |
events_onMetaChange | (event: object) => void | null | no | The function called when the meta information of the document is changed via the meta command. |
events_onDocumentReady | (event: object) => void | null | no | The function called when the document is loaded into the document editor. |
events_onInfo | (event: object) => void | null | no | The function called when the application opened the file. |
events_onWarning | (event: object) => void | null | no | The function called when a warning occurs. |
events_onError | (event: object) => void | null | no | The function called when an error or some other specific event occurs. |
events_onRequestSharingSettings | (event: object) => void | null | no | The function called when the user is trying to manage document access rights by clicking Change access rights button. |
events_onRequestRename | (event: object) => void | null | no | The function called when the user is trying to rename the file by clicking the Rename... button. |
events_onMakeActionLink | (event: object) => void | null | no | The function called when the user is trying to get link for opening the document which contains a bookmark, scrolling to the bookmark position. |
events_onRequestInsertImage | (event: object) => void | null | no | The function called when the user is trying to insert an image by clicking the Image from Storage button. |
events_onRequestSaveAs | (event: object) => void | null | no | The function called when the user is trying to save file by clicking Save Copy as... button. |
events_onRequestMailMergeRecipients | (event: object) => void | null | no | the function called when the user is trying to select recipients data by clicking the Mail merge button. |
events_onRequestCompareFile | (event: object) => void | null | no | The function called when the user is trying to select document for comparing by clicking the Document from Storage button. |
events_onRequestEditRights | (event: object) => void | null | no | The function called when the user is trying to switch the document from the viewing into the editing mode by clicking the Edit Document button. |
events_onRequestHistory | (event: object) => void | null | no | The function called when the user is trying to show the document version history by clicking the Version History button. |
events_onRequestHistoryClose | (event: object) => void | null | no | The function called when the user is trying to go back to the document from viewing the document version history by clicking the Close History button. |
events_onRequestHistoryData | (event: object) => void | null | no | The function called when the user is trying to click the specific document version in the document version history. |
events_onRequestRestore | (event: object) => void | null | no | The function called when the user is trying to restore the file version by clicking the Restore button in the version history. |
Change the address of the document server in the config/default.json file:
"documentServerUrl": "http://documentserver/"
yarn build-storybook
yarn storybook
git clone https://github.com/ONLYOFFICE/document-editor-react
yarn install
yarn test
yarn rollup
npm pack
In case you have any issues, questions, or suggestions for the ONLYOFFICE Document Server React component, please refer to the Issues section.
Official project website: www.onlyoffice.com.
Support forum: forum.onlyoffice.com.
FAQs
React component for ONLYOFFICE Document Server
The npm package @onlyoffice/document-editor-react receives a total of 38,554 weekly downloads. As such, @onlyoffice/document-editor-react popularity was classified as popular.
We found that @onlyoffice/document-editor-react demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.