Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

editorjs-undo

Package Overview
Dependencies
Maintainers
2
Versions
45
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

editorjs-undo

Undo tool for Editor.js

  • 2.0.0-rc.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
19K
decreased by-11.66%
Maintainers
2
Weekly downloads
 
Created
Source

EditorJS Undo Plugin

Undo/Redo feature for Editor.js.

Installation

Install via NPM

2.x.x (beta)

This new version 2.0.0-rc.2 introduces breaking changes. Remember that this is a beta version.

Please, report bugs or behavior issues :).

What's new?
  • Overall plugin performance is improved, especially with large documents.
  • Undo/Redo lifecycle is managed through block updates instead of a full document render.
  • Solves issues in documents with several images, for example the blink with undo/redo.
  • Sets the caret in the respective position when the user is typing inside an existing text.
  • Adds support to ReadOnly toggle.
  • Optimizes the observer, saving with the EditorJS API only when the content changes.

Get the package

$ npm i --save-dev editorjs-undo@2.0.0-rc.2

1.x.x (stable version)

To install the latest v1 stable version

Get the package

$ npm i --save-dev editorjs-undo@1.0.1

Include module in your application

import Undo from 'editorjs-undo';

Usage

const editor = new EditorJS({
  onReady: () => {
    new Undo({ editor });
  },
});

On the editor, use Ctrl + Z or + Z to undo, or use Ctrl + Y or + Y to redo.

Usage with react-editor-js.

If you are using react-editor-js, you could create a function to handle the onReady property, the function will store the undo instance and the respective configuration or initialize method if you want to use them (they will be explained below). Then, you must call the function in onReady in the editorJS instance.

const handleReady = (editor) => {
  new Undo({ editor });
};

class ReactEditor extends Component {
  render() {
    return (
      <EditorJs
        onReady = { handleReady }
        tools = { ... }
      />
    )
  }
}

Note: If you are already using editorjs-drag-drop your handleReady function must have the editorjs-drag-drop instance.

const handleReady = (editor) => {
  new Undo({ editor });
  new DragDrop(editor);
};

Initialize the plugin with data

Note: If you have loaded EditorJS with any initial data (such as some saved content), you must pass in an initialData object. If you don't, the default initial undo state lead to an empty editor.

You may use the initialize method inside the editor's onReady callback.

const editor = new EditorJS({
  onReady: () => {
    const undo = new Undo({ editor });
    undo.initialize(initialData);
  },
});

Add a custom shortcut to undo and redo

Note: If you do not add any shortcut, the default shortcuts will be set up.

If you want to add custom shortcuts, pass a config object with a shortcut key in the undo instance, the shortcuts must be called undo and redo.

const config = {
  shortcuts: {
    undo: 'CMD+X',
    redo: 'CMD+ALT+C'
  }
}
const editor = new EditorJS({
  onReady: () => {
    const undo = new Undo({ editor, config });
  },
});

You can set each shortcut with two or three keys, the available special keys are: CMD, ALT, SHIFT. CMD will be set up automatically as Ctrl or depending on your OS.

Available Options

FieldTypeDescription
editorEditorJSRequired. The EditorJS instance.
maxLengthNumberMax amount of changes recorded by the history stack.
onUpdate()functionCallback called when the user performs an undo or redo action.
configobjectSet up the configuration to editorjs-undo like the shortcuts

Development

Development mode

$ yarn build:dev

Production release

  1. Create a production bundle
$ yarn build
  1. Commit dist/bundle.js

Run tests

$ yarn test

Code of conduct

We welcome everyone to contribute. Make sure you have read the CODE_OF_CONDUCT before.

Contributing

For information on how to contribute, please refer to our CONTRIBUTING guide.

Changelog

Features and bug fixes are listed in the CHANGELOG file.

License

This library is licensed under an MIT license. See LICENSE for details.

Acknowledgements

Made with 💙 by kommitters Open Source

Keywords

FAQs

Package last updated on 01 Mar 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc