-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRootForm.js
68 lines (58 loc) · 1.6 KB
/
RootForm.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
import { render } from './utilities.js';
import Form from './fields/Form.js';
export default function (root, props, initialState, schema=false) {
let state = { ...initialState };
let dataSchema = false;
const actions = {
handleFieldChange(e) {
const property = e.detail.property;
state = property ? { ...state, [property]: e.detail.value } : { ...state, ...e.detail.value };
this.update(state);
let errors = [];
if(schema){
//dataSchema = new Schema(schema);
//errors = dataSchema.validate(state);
////validate(state, schema);
}
const event = new CustomEvent("form-changed", {
bubbles: true,
detail: {
name: props.name || "unknown",
value: state,
//errors
}
});
root.dispatchEvent(event);
},
eventDispatch(eventName, path, property, idx) {
let register = path ? getRegister(state, path) : null;
root.dispatchEvent(new CustomEvent(eventName, {
bubbles: true,
detail: {
path,
state,
register,
property,
idx
}
}));
}
}
const update = async function(state) {
const rootForm = await Form(props, state, actions);
render(rootForm, root);
}
const addEventListener = function(...params) {
root.addEventListener(...params);
}
actions.update = update;
update(state);
return {
update,
addEventListener
};
}
export function getRegister(state, path) {
let pathParts = path.split('>');
return pathParts.reduce((ref,prop) => ref[prop], state);
}