Skip to content

kchzhang/document-editor-vue

 
 

Repository files navigation

@onlyoffice/document-editor-vue

This repo contains the Vue component for ONLYOFFICE Document Server.

Installation

Install it from npm in your project. Run:

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

or:

yarn add @onlyoffice/document-editor-vue

Usage

Find below the component usage example:

<template>
  <DocumentEditor 
    id="docEditor" 
    documentServerUrl="http://documentserver/"
    :config="config"
    :events_onDocumentReady="onDocumentReady"
    /> 
</template>

<script lang="ts">
import { defineComponent } from 'vue';
import { DocumentEditor } from "@onlyoffice/document-editor-vue";
 
export default defineComponent({
  name: 'ExampleComponent',
  components: {
    DocumentEditor
  },
  data() {
    return {
      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"
        }
      }
    }
  },
  methods: {
    onDocumentReady() {
      console.log("Document is loaded");
    }
  },
});
</script>

API

Props

Name Type Default Required Description
id string null yes Component unique identifier.
documentServerUrl string null yes Address ONLYOFFICE Document Server.
config object null yes Generic configuration object for opening a file with token. Config API
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:

npm run build-storybook

Start Storybook:

npm run storybook

Development

Clone project from the GitHub repository:

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

Install the project dependencies:

npm install

Test the component:

npm run test

Build the project:

npm run build

Create the package:

npm pack

Feedback and support

In case you have any issues, questions, or suggestions for the ONLYOFFICE Document Server Vue component, please refer to the Issues section.

Official project website: www.onlyoffice.com.

Support forum: forum.onlyoffice.com.

About

Vue component for ONLYOFFICE Document Server

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 38.5%
  • Vue 38.1%
  • TypeScript 23.4%