-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathindex.js
More file actions
26 lines (24 loc) · 1.04 KB
/
index.js
File metadata and controls
26 lines (24 loc) · 1.04 KB
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
import delve from 'dlv';
/** Create an Event handler function that sets a given state property.
* @param {Component} component The component whose state should be updated
* @param {string} key A dot-notated key path to update in the component's state
* @param {string} eventPath A dot-notated key path to the value that should be retrieved from the Event or component
* @returns {function} linkedStateHandler
*/
export default function linkState(component, key, eventPath) {
let path = key.split('.'),
cache = component.__lsc || (component.__lsc = {});
return cache[key+eventPath] || (cache[key+eventPath] = function(e) {
let t = e && e.target || this,
state = {},
cloneState = JSON.parse(JSON.stringify(component.state)),
obj = state,
v = typeof eventPath==='string' ? delve(e, eventPath) : t.nodeName ? (t.type.match(/^che|rad/) ? t.checked : t.value) : e,
i = 0;
for ( ; i<path.length-1; i++) {
obj = obj[path[i]] || (obj[path[i]] = !i && cloneState[path[i]] || {});
}
obj[path[i]] = v;
component.setState(state);
});
}