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

editorjs-undo

Package Overview
Dependencies
Maintainers
1
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

  • 0.1.0
  • Source
  • npm
  • Socket score

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

EditorJS Undo Plugin

Undo/Redo feature for Editor.js.

Installation

Install via NPM

Get the package

$ npm i --save-dev editorjs-undo

Include module at your application

import Undo from 'editorjs-undo';

Usage

let dataHistory;

const editor = new EditorJS({
  onChange: () => {
    dataHistory.registerChange();
  },
  onReady: () => {
    dataHistory = new DataHistory({ editor });
  },
});

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

Initialize the plugin with data

To initialize the plugin with data, use the initialize method inside the editor's onReady callback.

onReady: () => {
  dataHistory = new DataHistory({ editor });
  dataHistory.initialize(initialData);
},

Available Options

FieldTypeDescription
maxLengthNumberMax amount of changes recorded by the history stack.
onUpdate()functionCallback called when the user performs an undo or redo action.

Development

Development mode

$ yarn build:dev

Production release

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

Run tests

$ yarn test

Keywords

FAQs

Package last updated on 23 Jun 2020

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