1.1.1 • Published 5 years ago

simple-state-shot v1.1.1

Weekly downloads
4
License
MIT
Repository
github
Last release
5 years ago

simple-state-shot

Build Status Coverage Status semantic-release

a simple state history manager

Getting Started

Installing

A step by step series of examples that tell you how to get a development env running

Say what the step will be

npm i simple-state-shot

Basic Usage

import SimpleStateShot from 'simple-state-shot';

const simpleStateShot = new SimpleStateShot();

const firstState = {foo: 1};

simpleStateShot.push(firstState);
simpleStateShot.get();  // {foo: 1}
simpleStateShot.undo().get();   // null
simpleStateShot.redo().get();   // {foo: 1}

API

options

  • maxLength - How many state the manager will store. strongly recommend to set this param to prevent memory leak
const simpleStateShot = new SimpleStateShot(10)

push

push a new state to the stack note: state should be JSON-safe.

get

get the last state. if no state in the stack, null will be returned

undo

undo the last state. if no state in the stack, null will be returned

redo

redo the last undo state.

length

the states length of current instance

reset

reset stack

hasUndo、hasRedo

whether current state has a before/after state

License

This project is licensed under the MIT License.

Inspired by StateShot