Undo/redo manager
npm install undoo --save
<script src="node_modules/undoo/dist/undoo.min.js"></script>
<script src="https://unpkg.com/undoo/dist/undoo.min.js"></script>
const Undoo = require('undoo');
const myHistory = new Undoo();
myHistory
.save('one')
.save('two')
.save('three')
.save('four');
myHistory.undo((item)=>{
console.log(item); //=> three
});
myHistory.current(); //=> three
myHistory.redo((item)=>{
console.log(item); //=> four
});
const Undoo = require('undoo');
const myHistory = new Undoo({
provider: () => document.getElementById('myTextArea').value
});
myHistory.save();
Kind: global class
boolean
boolean
Undoo
Array
Undoo
Undoo
boolean
Undoo
Undoo
Undoo
\*
number
\*
Undoo
Undoo
Undoo
function
function
function
function
function
Create instance
Param | Type | Default | Description |
---|---|---|---|
[opts] | Object | configuration object |
|
[opts.provider] | function |
| optional function called on save that returns new state for history |
[opts.maxLength] | number | 20 | max length history |
boolean
Check if undo is available
Kind: instance method of Undoo
boolean
Kind: instance method of Undoo
Check: if redo is available
Undoo
Import external history
Kind: instance method of Undoo
Param | Type |
---|---|
history | Array |
Array
Get history
Kind: instance method of Undoo
Undoo
Save history
Kind: instance method of Undoo
Param | Type |
---|---|
[item] | * |
Undoo
Suspend save method
Kind: instance method of Undoo
Param | Type | Default |
---|---|---|
[state] | boolean | true |
boolean
Check if save is allowed
Kind: instance method of Undoo
Undoo
Clear history
Kind: instance method of Undoo
Undoo
Undo
Kind: instance method of Undoo
Param | Type | Description |
---|---|---|
[callback] | undoCallback | callback function |
Undoo
Redo
Kind: instance method of Undoo
Param | Type | Description |
---|---|---|
[callback] | redoCallback | callback function |
\*
Get current item in history
Kind: instance method of Undoo
number
Count history items, the first element is not considered
Kind: instance method of Undoo
\*
Get initial state history
Kind: instance method of Undoo
Undoo
Triggered when history is updated
Kind: instance method of Undoo
Param | Type | Description |
---|---|---|
callback | updateCallback | callback function |
Undoo
Triggered when maxLength is exceeded
Kind: instance method of Undoo
Param | Type | Description |
---|---|---|
callback | maxLengthCallback | callback function |
Undoo
Triggered before save
Kind: instance method of Undoo
Param | Type | Description |
---|---|---|
callback | beforeSaveCallback | callback function |
Example
// If callback returns `false` the save command will not be executed
myHistory.onBeforeSave(()=>false)
// You can overwrite item before save
myHistory.onBeforeSave((item)=>{
return item.toUpperCase();
})
function
undo callback
Kind: inner typedef of Undoo
Param | Type | Description |
---|---|---|
item | * | current history item |
function
redo callback
Kind: inner typedef of Undoo
Param | Type | Description |
---|---|---|
item | * | current history item |
function
onUpdate callback
Kind: inner typedef of Undoo
Param | Type | Description |
---|---|---|
item | * | current history item |
action | string | action that has called update event. Can be: redo, undo, save, clear |
history | Array | history array |
istance | Undoo |
function
onMaxLength callback
Kind: inner typedef of Undoo
Param | Type | Description |
---|---|---|
item | * | current history item |
history | Array | history array |
istance | Undoo |
function
onBeforeSave callback
Kind: inner typedef of Undoo
Param | Type | Description |
---|---|---|
item | * | current history item |
istance | Undoo |
You can view the changelog here
Undoo is open-sourced software licensed under the MIT license