Skip to content

Commit 71ab8f4

Browse files
committed
support undo and redo. 0.2.1.
1 parent ea0b69e commit 71ab8f4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+1054
-707
lines changed

CHANGELOG.md

+11
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,14 @@
1+
## 0.2.1
2+
3+
Support undo and redo. This feature is disabled by default. To enable it add the below config.
4+
5+
```js
6+
const config = {
7+
undoStackSize: 10,
8+
// ...
9+
};
10+
```
11+
112
## 0.2.0
213

314
#### Editor's Context

README.md

+7-4
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,13 @@ const definition = {
9494
};
9595

9696
const configuration = {
97-
theme: 'light',
98-
isReadonly: false,
97+
theme: 'light', // optional, default: 'light'
98+
isReadonly: false, // optional, default: false
99+
undoStackSize: 10, // optional, default: 0 - disabled, 1+ - enabled
99100

100101
toolbox: {
101-
isHidden: false,
102+
isHidden: false, // optional, default: false
103+
102104
groups: [
103105
{
104106
name: 'Files',
@@ -134,7 +136,8 @@ const configuration = {
134136
},
135137

136138
editors: {
137-
isHidden: false,
139+
isHidden: false, // optional, default: false
140+
138141
globalEditorProvider: (definition) => {
139142
const container = document.createElement('div');
140143
// ...

examples/assets/fullscreen.js

+2
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ function toolboxGroup(name) {
5050

5151
let designer;
5252
const configuration = {
53+
undoStackSize: 20,
54+
5355
toolbox: {
5456
isHidden: false,
5557
groups: [

examples/assets/image-filter.js

+1
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ function createTaskStep(id, type, name) {
9191

9292
const configuration = {
9393
theme: 'dark',
94+
undoStackSize: 10,
9495

9596
toolbox: {
9697
isHidden: false,

examples/assets/live-testing.js

+7-2
Original file line numberDiff line numberDiff line change
@@ -119,11 +119,14 @@ function appendTextField(parent, label, startValue, set) {
119119
field.addEventListener('input', () => set(input.value));
120120
}
121121

122-
function globalEditorProvider(definition) {
122+
function globalEditorProvider(definition, globalContext) {
123123
const container = document.createElement('span');
124124
appendTitle(container, 'State machine config');
125125
appendTextField(container, 'Speed (ms)', definition.properties['speed'],
126-
v => definition.properties['speed'] = parseInt(v, 10));
126+
v => {
127+
definition.properties['speed'] = parseInt(v, 10);
128+
globalContext.notifyPropertiesChanged();
129+
});
127130
return container;
128131
}
129132

@@ -161,6 +164,8 @@ function stepEditorProvider(step, editorContext) {
161164
}
162165

163166
const configuration = {
167+
undoStackSize: 5,
168+
164169
toolbox: {
165170
isHidden: false,
166171
groups: [

0 commit comments

Comments
 (0)