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
booleanbooleanUndooArrayUndooUndoobooleanUndooUndooUndoo\*number\*UndooUndooUndoofunctionfunctionfunctionfunctionfunctionCreate 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 |
booleanCheck if undo is available
Kind: instance method of Undoo
booleanKind: instance method of Undoo
Check: if redo is available
UndooImport external history
Kind: instance method of Undoo
| Param | Type |
|---|---|
| history | Array |
ArrayGet history
Kind: instance method of Undoo
UndooSave history
Kind: instance method of Undoo
| Param | Type |
|---|---|
| [item] | * |
UndooSuspend save method
Kind: instance method of Undoo
| Param | Type | Default |
|---|---|---|
| [state] | boolean | true |
booleanCheck if save is allowed
Kind: instance method of Undoo
UndooClear history
Kind: instance method of Undoo
UndooUndo
Kind: instance method of Undoo
| Param | Type | Description |
|---|---|---|
| [callback] | undoCallback | callback function |
UndooRedo
Kind: instance method of Undoo
| Param | Type | Description |
|---|---|---|
| [callback] | redoCallback | callback function |
\*Get current item in history
Kind: instance method of Undoo
numberCount history items, the first element is not considered
Kind: instance method of Undoo
\*Get initial state history
Kind: instance method of Undoo
UndooTriggered when history is updated
Kind: instance method of Undoo
| Param | Type | Description |
|---|---|---|
| callback | updateCallback | callback function |
UndooTriggered when maxLength is exceeded
Kind: instance method of Undoo
| Param | Type | Description |
|---|---|---|
| callback | maxLengthCallback | callback function |
UndooTriggered 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();
})
functionundo callback
Kind: inner typedef of Undoo
| Param | Type | Description |
|---|---|---|
| item | * | current history item |
functionredo callback
Kind: inner typedef of Undoo
| Param | Type | Description |
|---|---|---|
| item | * | current history item |
functiononUpdate 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 |
functiononMaxLength callback
Kind: inner typedef of Undoo
| Param | Type | Description |
|---|---|---|
| item | * | current history item |
| history | Array | history array |
| istance | Undoo |
functiononBeforeSave 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