forked from formio/formio.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuilder.js
95 lines (82 loc) · 2.34 KB
/
builder.js
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
import _ from 'lodash';
import { eachComponent, uniqueKey } from './utils';
export default {
/**
* Appends a number to a component.key to keep it unique
*
* @param {Object} form
* The components parent form.
* @param {Object} component
* The component to uniquify
*/
uniquify(container, component) {
let changed = false;
const formKeys = {};
eachComponent(container, (comp) => {
formKeys[comp.key] = true;
if (['address', 'container', 'datagrid', 'editgrid', 'dynamicWizard', 'tree'].includes(comp.type) || comp.tree || comp.arrayTree) {
return true;
}
}, true);
// Recurse into all child components.
eachComponent([component], (component) => {
// Skip key uniquification if this component doesn't have a key.
if (!component.key) {
return;
}
const newKey = uniqueKey(formKeys, component.key);
if (newKey !== component.key) {
component.key = newKey;
changed = true;
}
formKeys[newKey] = true;
if (['address', 'container', 'datagrid', 'editgrid', 'dynamicWizard', 'tree'].includes(component.type) || component.tree || component.arrayTree) {
return true;
}
}, true);
return changed;
},
additionalShortcuts: {
button: [
'Enter',
'Esc'
]
},
getAlphaShortcuts() {
return _.range('A'.charCodeAt(), 'Z'.charCodeAt() + 1).map((charCode) => String.fromCharCode(charCode));
},
getAdditionalShortcuts(type) {
return this.additionalShortcuts[type] || [];
},
getBindedShortcuts(components, input) {
const result = [];
eachComponent(components, (component) => {
if (component === input) {
return;
}
if (component.shortcut) {
result.push(component.shortcut);
}
if (component.values) {
component.values.forEach((value) => {
if (value.shortcut) {
result.push(value.shortcut);
}
});
}
}, true);
return result;
},
getAvailableShortcuts(form, component) {
if (!component) {
return [];
}
return [''].concat(_.difference(
this.getAlphaShortcuts().concat(this.getAdditionalShortcuts(component.type)),
this.getBindedShortcuts(form.components, component)),
).map((shortcut) => ({
label: shortcut,
value: shortcut,
}));
}
};