🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

immutable-undo

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

immutable-undo

Data structure for and Undo/Redo stack, using ImmutableJS

2.0.0
latest
Source
npm
Version published
Weekly downloads
152
-96.08%
Maintainers
1
Weekly downloads
 
Created
Source

Immutable Undo

Simple data structure for and undo/redo stack, using ImmutableJS. The structure holds a stack of undo states, and a stack of redo states. It does not keep a reference to the current state to avoid duplicating data if your state is already stored in another structure.

Installation

npm install --save immutable-undo

Reference

Static

History.create

  • {Object} [opts] Option object
  • {Number} [opts.maxUndos=500] Maximum number of undos stored. Beyond that, some undos are dropped, according to the specified drop strategy.
  • { (History) => History } [opts.strategy=History.lru] The drop strategy. See strategies.
  • return {History} An empty history
var history = History.create({
    maxUndos: 100
});

Properties

canUndo

  • return {Boolean} True if the history has undos

canRedo

  • return {Boolean} True if the history has redos

previous

  • return {State | Undefined} The most recent state in the undo stack

next

  • return {State | Undefined} The most recent state in the redo stack

Methods

push

  • {State} newState The state to push on top of the undo stack
  • return {History}

Pushes a new state on the undo stack, and clears the redo stack

undo

  • {State} current The current state, that will be pushed on the redo stack
  • return {History} The history with the undo stack popped once, and the current state added to redos.

redo

  • {State} current The current state, that will be pushed on the undo stack
  • return {History} The history with the redo stack popped once, and the current state added to redos

Strategies

These are built-in strategies for keeping the undo stack under its size limit.

History.lru

Least Recently Used. Simply drops the oldest undo to make room for new one.

History.smooth

Will always keep the initial state (the first undo), and will drop undos such as the oldest undos grow more and more spaced in time, but the more recent undos keep a high precision.

You can imagine the density of undos over time becoming more like this curve:

curve

Keywords

immutable

FAQs

Package last updated on 06 Jan 2019

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