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
| function State (initialState) { var sanitizedInitialState = j.either({}, initialState, 'object'), stateStruct = new Struct(), stateKeys = Object.keys(sanitizedInitialState); Struct.prototype.constructor.apply(stateStruct, stateKeys); stateStruct.merge(sanitizedInitialState); this.get = {}; this.set = {};
this.addState = this.addState.bind(this, stateStruct); stateKeys.foreach(this.attachStructMethods.bind(this, stateStruct)); }
State.prototype = { accessorBase: function (struct, key) { return j.clone(struct.get[key]()); }, attachStructMethods: function (struct, key) { this.get[key] = this.accessorBase.bind(this, struct, key); this.set[key] = struct.set[key]; }, addState: function (struct, key, value) { struct.addProperty(key); struct.set[key](maybe(value)); this.attachStructMethods(struct, key); } };
|