History Extension (Preview)
This is the official history extension for Harlem. The history extension adds undo and redo capabilities to your store for easily integrating history features into your application.
Getting Started
Follow the steps below to get started using the history extension.
Installation
Before installing this extension make sure you have installed @harlem/core
.
yarn add @harlem/extension-history
npm install @harlem/extension-history
Registration
To get started simply register this extension with the store you wish to extend.
import historyExtension from '@harlem/extension-history';
import {
createStore
} from '@harlem/core';
const STATE = {
firstName: 'Jane',
lastName: 'Smith'
};
const {
state,
getter,
mutation,
undo,
redo
} = createStore('example', STATE, {
extensions: [
historyExtension({
max: 50,
mutations: [
{
name: 'set-name',
description: 'Set the current user\'s name'
}
]
})
]
});
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
The history extension adds several new methods to the store instance (highlighted above).
Usage
Options
The history extension method accepts an options object with the following properties:
- max:
number
- The maximum number of history steps to store. The default value is50
. - mutations:
object[]
- The mutations you wish to track. leaving this undefined will cause all mutations to be tracked. The default is undefined.- name:
string
- The name of the mutation to track. This must match the name of a registered mutation. - description:
string?
- An optional description of the mutations intentions. This is useful for displaying a list of commands in the UI.
- name:
Undoing/Redoing mutations
To undo or redo a mutation simply call the undo
or redo
methods returned from the store instance.
Considerations
Please keep the following points in mind when using this extension:
- This extension has a slight performance cost. Each tracked mutation is proxied and values are cloned pre/post mutation. If you are assigning/moving/deleting large object structures around state this cause a performance hit and increase in memory usage. It is recommended to keep mutations granular and precise when tracking them with the history (or trace) extension.
- This extension cannot handle untracked mutation side-effects. For example, say you have 2 mutations,
mutation1
andmutation2
. Both mutations modify the same branch of state butmutation1
is tracked by the history extension andmutation2
is not. Undoing the changes frommutation1
any time after runningmutation2
will cause changes frommutation2
to be lost and unrecoverable.