-
-
Notifications
You must be signed in to change notification settings - Fork 141
/
index.js
243 lines (207 loc) · 5.49 KB
/
index.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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
import { assert } from '@ember/debug';
import { dependentKeyCompat } from '@ember/object/compat';
import { BufferedChangeset } from 'validated-changeset';
import ArrayProxy from '@ember/array/proxy';
import ObjectProxy from '@ember/object/proxy';
import mergeDeep from './utils/merge-deep';
import { notifyPropertyChange } from '@ember/object';
import { tracked } from '@glimmer/tracking';
import { get as safeGet, set as safeSet } from '@ember/object';
const CHANGES = '_changes';
const ERRORS = '_errors';
const CONTENT = '_content';
const defaultValidatorFn = () => true;
function isProxy(o) {
return !!(o && (o instanceof ObjectProxy || o instanceof ArrayProxy));
}
function maybeUnwrapProxy(o) {
return isProxy(o) ? maybeUnwrapProxy(safeGet(o, 'content')) : o;
}
export class EmberChangeset extends BufferedChangeset {
@tracked '_changes';
@tracked '_errors';
@tracked '_content';
maybeUnwrapProxy = maybeUnwrapProxy;
// DO NOT override setDeep. Ember.set does not work wth empty hash and nested
// key Ember.set({}, 'user.name', 'foo');
// override base class
// DO NOT override setDeep. Ember.set does not work with Ember.set({}, 'user.name', 'foo');
getDeep = safeGet;
// override base class
safeGet(obj, key) {
return safeGet(obj, key);
}
safeSet(obj, key, value) {
return safeSet(obj, key, value);
}
/**
* @property isValid
* @type {Array}
*/
@dependentKeyCompat
get isValid() {
return super.isValid;
}
/**
* @property isInvalid
* @type {Boolean}
*/
@dependentKeyCompat
get isInvalid() {
return super.isInvalid;
}
/**
* @property isPristine
* @type {Boolean}
*/
@dependentKeyCompat
get isPristine() {
return super.isPristine;
}
/**
* @property isDirty
* @type {Boolean}
*/
@dependentKeyCompat
get isDirty() {
return super.isDirty;
}
/**
* Manually add an error to the changeset. If there is an existing
* error or change for `key`, it will be overwritten.
*
* @method addError
*/
addError(key, error) {
super.addError(key, error);
notifyPropertyChange(this, ERRORS);
// Notify that `key` has changed.
notifyPropertyChange(this, key);
// Return passed-in `error`.
return error;
}
/**
* Manually push multiple errors to the changeset as an array.
*
* @method pushErrors
*/
pushErrors(key, ...newErrors) {
const { value, validation } = super.pushErrors(key, ...newErrors);
notifyPropertyChange(this, ERRORS);
notifyPropertyChange(this, key);
return { value, validation };
}
/**
* Sets property or error on the changeset.
* Returns value or error
*/
_setProperty({ key, value, oldValue }) {
super._setProperty({ key, value, oldValue })
// Happy path: notify that `key` was added.
notifyPropertyChange(this, CHANGES);
notifyPropertyChange(this, key);
}
/**
* Notifies virtual properties set on the changeset of a change.
* You can specify which keys are notified by passing in an array.
*
* @private
* @param {Array} keys
* @return {Void}
*/
_notifyVirtualProperties(keys) {
keys = super._notifyVirtualProperties(keys);
(keys || []).forEach(key => notifyPropertyChange(this, key));
return;
}
/**
* Deletes a key off an object and notifies observers.
*/
_deleteKey(objName, key = '') {
const result = super._deleteKey(objName, key);
notifyPropertyChange(this, `${objName}.${key}`);
notifyPropertyChange(this, objName);
return result;
}
/**
* Executes the changeset if in a valid state.
*
* @method execute
*/
execute() {
if (this.isValid && this.isDirty) {
let content = this[CONTENT];
let changes = this[CHANGES];
// we want mutation on original object
// @tracked
this[CONTENT] = mergeDeep(content, changes, { safeGet, safeSet });
}
return this;
}
}
/**
* Creates new changesets.
*/
export function changeset(
obj,
validateFn = defaultValidatorFn,
validationMap = {},
options = {}
) {
assert('Underlying object for changeset is missing', Boolean(obj));
assert('Array is not a valid type to pass as the first argument to `changeset`', !Array.isArray(obj));
if (options.changeset) {
return new options.changeset(obj, validateFn, validationMap, options);
}
const c = new EmberChangeset(obj, validateFn, validationMap, options);
return c;
}
/**
* Creates new changesets.
* @function Changeset
*/
export function Changeset(
obj,
validateFn = defaultValidatorFn,
validationMap = {},
options = {}
) {
const c = changeset(obj, validateFn, validationMap, options);
return new Proxy(c, {
get(targetBuffer, key/*, receiver*/) {
const res = targetBuffer.get(key.toString());
return res;
},
set(targetBuffer, key, value/*, receiver*/) {
targetBuffer.set(key.toString(), value);
return true;
}
});
}
export default class ChangesetKlass {
/**
* Changeset factory
* TODO: deprecate in favor of factory function
*
* @class ChangesetKlass
* @constructor
*/
constructor(
obj,
validateFn = defaultValidatorFn,
validationMap = {},
options = {}
) {
const c = changeset(obj, validateFn, validationMap, options);
return new Proxy(c, {
get(targetBuffer, key/*, receiver*/) {
const res = targetBuffer.get(key.toString());
return res;
},
set(targetBuffer, key, value/*, receiver*/) {
targetBuffer.set(key.toString(), value);
return true;
}
});
}
}