npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

salemoffice-only-office

v1.3.0

Published

React component for ONLYOFFICE Document Server

Downloads

8

Readme

@onlyoffice/document-editor-react

This repo contains the React component for ONLYOFFICE Document Server.

Installation

Install it from npm in your project. Run:

npm install --save @onlyoffice/document-editor-react

or:

yarn add @onlyoffice/document-editor-react

Usage

Find below the component usage example:

...
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;
    }
};
...
...
<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}
/>
...

API

Props

| 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. |

Storybook

Change the address of the document server in the config/default.json file:

"documentServerUrl": "http://documentserver/"

Build Storybook:

yarn build-storybook

Start Storybook:

yarn storybook

Development

Clone project from the GitHub repository:

git clone https://github.com/ONLYOFFICE/document-editor-react

Install the project dependencies:

yarn install

Test the component:

yarn test

Build the project:

yarn rollup

Create the package:

npm pack

Feedback and support

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.