forked from adopted-ember-addons/ember-data-model-fragments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrecord-data.js
1273 lines (1124 loc) · 35 KB
/
record-data.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
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// eslint-disable-next-line ember/use-ember-data-rfc-395-imports
import { RecordData } from 'ember-data/-private';
import { diffArray } from '@ember-data/model/-private';
import { recordDataFor } from '@ember-data/store/-private';
import { assert } from '@ember/debug';
import { typeOf } from '@ember/utils';
import { isArray } from '@ember/array';
import { getActualFragmentType, isFragment } from './fragment';
import isInstanceOfType from './util/instance-of-type';
import unwrapRecordDataFrom from './util/unwrap-record-data-from';
import { gte } from 'ember-compatibility-helpers';
class FragmentBehavior {
constructor(recordData, definition) {
this.recordData = recordData;
this.definition = definition;
}
getDefaultValue(key) {
const { options } = this.definition;
if (options.defaultValue === undefined) {
return null;
}
let defaultValue;
if (typeof options.defaultValue === 'function') {
const record = this.recordData._fragmentGetRecord();
defaultValue = options.defaultValue.call(null, record, options, key);
} else {
defaultValue = options.defaultValue;
}
assert(
"The fragment's default value must be an object or null",
defaultValue === null ||
typeOf(defaultValue) === 'object' ||
isFragment(defaultValue)
);
if (defaultValue === null) {
return null;
}
if (isFragment(defaultValue)) {
assert(
`The fragment's default value must be a '${this.definition.modelName}' fragment`,
isInstanceOfType(
defaultValue.store.modelFor(this.definition.modelName),
defaultValue
)
);
const recordData = recordDataFor(defaultValue);
recordData.setFragmentOwner(this.recordData, key);
return recordData;
}
return this.recordData._newFragmentRecordData(
this.definition,
defaultValue
);
}
pushData(identifier, fragment, canonical) {
assert(
'Fragment value must be a RecordData',
fragment === null || fragment instanceof RecordData
);
assert(
'Fragment canonical value must be an object or null',
canonical === null || typeOf(canonical) === 'object'
);
if (canonical === null) {
// server replaced fragment with null
return null;
}
if (fragment) {
// merge the fragment with the new data from the server
fragment._fragmentPushData({ attributes: canonical });
return fragment;
}
return this.recordData._newFragmentRecordData(this.definition, canonical);
}
willCommit(fragment) {
assert(
'Fragment value must be a RecordData',
fragment instanceof RecordData
);
fragment._fragmentWillCommit();
}
didCommit(fragment, canonical) {
assert(
'Fragment value must be a RecordData',
fragment === null || fragment instanceof RecordData
);
assert(
'Fragment canonical value must be an object',
canonical == null || typeOf(canonical) === 'object'
);
if (canonical == null) {
fragment?._fragmentDidCommit(null);
if (canonical === null) {
// server replaced fragment with null
return null;
}
// server confirmed in-flight fragment
return fragment;
}
if (fragment) {
// merge the fragment with the new data from the server
fragment._fragmentDidCommit({ attributes: canonical });
return fragment;
}
return this.recordData._newFragmentRecordData(this.definition, canonical);
}
commitWasRejected(fragment) {
assert(
'Fragment value must be a RecordData',
fragment instanceof RecordData
);
fragment._fragmentCommitWasRejected();
}
rollback(fragment) {
assert(
'Fragment value must be a RecordData',
fragment instanceof RecordData
);
fragment._fragmentRollbackAttributes();
}
unload(fragment) {
assert(
'Fragment value must be a RecordData',
fragment instanceof RecordData
);
fragment._fragmentUnloadRecord();
}
isDirty(value, originalValue) {
assert(
'Fragment value must be a RecordData',
value === null || value instanceof RecordData
);
assert(
'Fragment original value must be a RecordData',
originalValue === null || originalValue instanceof RecordData
);
return (
value !== originalValue ||
(value !== null && value.hasChangedAttributes())
);
}
currentState(fragment) {
assert(
'Fragment value must be a RecordData',
fragment === null || fragment instanceof RecordData
);
return fragment === null ? null : fragment.getCurrentState();
}
canonicalState(fragment) {
assert(
'Fragment value must be a RecordData',
fragment === null || fragment instanceof RecordData
);
return fragment === null ? null : fragment.getCanonicalState();
}
}
class FragmentArrayBehavior {
constructor(recordData, definition) {
this.recordData = recordData;
this.definition = definition;
}
getDefaultValue(key) {
const { options } = this.definition;
if (options.defaultValue === undefined) {
return [];
}
let defaultValue;
if (typeof options.defaultValue === 'function') {
const record = this.recordData._fragmentGetRecord();
defaultValue = options.defaultValue.call(null, record, options, key);
} else {
defaultValue = options.defaultValue;
}
assert(
"The fragment array's default value must be an array of fragments or null",
defaultValue === null ||
(isArray(defaultValue) &&
defaultValue.every((v) => typeOf(v) === 'object' || isFragment(v)))
);
if (defaultValue === null) {
return null;
}
return defaultValue.map((item) => {
if (isFragment(item)) {
assert(
`The fragment array's default value can only include '${this.definition.modelName}' fragments`,
isInstanceOfType(item.store.modelFor(this.definition.modelName), item)
);
const recordData = recordDataFor(defaultValue);
recordData.setFragmentOwner(this.recordData, key);
return recordData;
}
return this.recordData._newFragmentRecordData(this.definition, item);
});
}
pushData(identifier, fragmentArray, canonical) {
if (gte ('ember-data', '4.7.0')) {
fragmentArray = this._unwrap (fragmentArray);
}
assert(
'Fragment array value must be an array of RecordData',
fragmentArray === null ||
(isArray(fragmentArray) &&
fragmentArray.every((rd) => rd instanceof RecordData))
);
assert(
'Fragment array canonical value must be an array of objects',
canonical === null ||
(isArray(canonical) && canonical.every((v) => typeOf(v) === 'object'))
);
if (canonical === null) {
// push replaced fragment array with null
return null;
}
// merge the fragment array with the pushed data
return canonical.map((attributes, i) => {
const fragment = fragmentArray?.[i];
if (fragment) {
fragment._fragmentPushData({ attributes });
return fragment;
} else {
return this.recordData._newFragmentRecordData(
this.definition,
attributes
);
}
});
}
willCommit(fragmentArray) {
if (gte ('ember-data', '4.7.0')) {
fragmentArray = this._unwrap (fragmentArray);
}
assert(
'Fragment array value must be an array of RecordData',
isArray(fragmentArray) &&
fragmentArray.every((rd) => rd instanceof RecordData)
);
fragmentArray.forEach((fragment) => fragment._fragmentWillCommit());
}
didCommit(fragmentArray, canonical) {
if (gte ('ember-data', '4.7.0')) {
fragmentArray = this._unwrap (fragmentArray);
}
assert(
'Fragment array value must be an array of RecordData',
fragmentArray === null ||
(isArray(fragmentArray) &&
fragmentArray.every((rd) => rd instanceof RecordData))
);
assert(
'Fragment array canonical value must be an array of objects',
canonical == null ||
(isArray(canonical) && canonical.every((v) => typeOf(v) === 'object'))
);
if (canonical == null) {
fragmentArray?.forEach((fragment) => fragment._fragmentDidCommit(null));
if (canonical === null) {
// server replaced fragment array with null
return null;
}
// server confirmed in-flight fragments
return fragmentArray;
}
// merge the fragment array with the new data from the server
const result = canonical.map((attributes, i) => {
const fragment = fragmentArray?.[i];
if (fragment) {
fragment._fragmentDidCommit({ attributes });
return fragment;
} else {
return this.recordData._newFragmentRecordData(
this.definition,
attributes
);
}
});
// cleanup the remaining fragments
for (let i = canonical.length; i < fragmentArray?.length; ++i) {
fragmentArray[i]._fragmentDidCommit(null);
}
return result;
}
commitWasRejected(fragmentArray) {
if (gte ('ember-data', '4.7.0')) {
fragmentArray = this._unwrap (fragmentArray);
}
assert(
'Fragment array value must be an array of RecordData',
isArray(fragmentArray) &&
fragmentArray.every((rd) => rd instanceof RecordData)
);
fragmentArray.forEach((fragment) => fragment._fragmentCommitWasRejected());
}
rollback(fragmentArray) {
if (gte ('ember-data', '4.7.0')) {
fragmentArray = this._unwrap (fragmentArray);
}
assert(
'Fragment array value must be an array of RecordData',
isArray(fragmentArray) &&
fragmentArray.every((rd) => rd instanceof RecordData)
);
fragmentArray.forEach((fragment) => fragment._fragmentRollbackAttributes());
}
unload(fragmentArray) {
if (gte ('ember-data', '4.7.0')) {
fragmentArray = this._unwrap (fragmentArray);
}
assert(
'Fragment array value must be an array of RecordData',
isArray(fragmentArray) &&
fragmentArray.every((rd) => rd instanceof RecordData)
);
fragmentArray.forEach((fragment) => fragment._fragmentUnloadRecord());
}
isDirty(value, originalValue) {
assert(
'Fragment array value must be an array of RecordData',
value === null ||
(isArray(value) && value.every((rd) => rd instanceof RecordData))
);
assert(
'Fragment array original value must be an array of RecordData',
originalValue === null ||
(isArray(originalValue) &&
originalValue.every((rd) => rd instanceof RecordData))
);
return (
!isArrayEqual(value, originalValue) ||
(value !== null && value.some((rd) => rd.hasChangedAttributes()))
);
}
currentState(fragmentArray) {
if (gte ('ember-data', '4.7.0')) {
fragmentArray = this._unwrap (fragmentArray);
}
assert(
'Fragment array value must be an array of RecordData',
fragmentArray === null ||
(isArray(fragmentArray) &&
fragmentArray.every((rd) => rd instanceof RecordData))
);
return fragmentArray === null
? null
: fragmentArray.map((fragment) => fragment.getCurrentState());
}
canonicalState(fragmentArray) {
if (gte ('ember-data', '4.7.0')) {
fragmentArray = this._unwrap (fragmentArray);
}
assert(
'Fragment array value must be an array of RecordData',
fragmentArray === null ||
(isArray(fragmentArray) &&
fragmentArray.every((rd) => rd instanceof RecordData))
);
return fragmentArray === null
? null
: fragmentArray.map((fragment) => fragment.getCanonicalState());
}
_unwrap (fragmentArray) {
if (fragmentArray === null) {
return null;
}
return fragmentArray.map (data => data.__private_1_recordData ? data.__private_1_recordData : data);
}
}
class ArrayBehavior {
constructor(recordData, definition) {
this.recordData = recordData;
this.definition = definition;
}
getDefaultValue(key) {
const { options } = this.definition;
if (options.defaultValue === undefined) {
return [];
}
let defaultValue;
if (typeof options.defaultValue === 'function') {
const record = this.recordData._fragmentGetRecord();
defaultValue = options.defaultValue.call(null, record, options, key);
} else {
defaultValue = options.defaultValue;
}
assert(
"The array's default value must be an array or null",
defaultValue === null || isArray(defaultValue)
);
if (defaultValue === null) {
return null;
}
return defaultValue.slice();
}
pushData(identifier, array, canonical) {
assert('Array value must be an array', array === null || isArray(array));
assert(
'Array canonical value must be an array',
canonical === null || isArray(canonical)
);
if (canonical === null) {
return null;
}
return canonical.slice();
}
willCommit(array) {
assert('Array value must be an array', isArray(array));
// nothing to do
}
didCommit(array, canonical) {
assert('Array value must be an array', array === null || isArray(array));
assert(
'Array canonical value must be an array',
canonical === null || canonical === undefined || isArray(canonical)
);
if (canonical === null) {
// server replaced array with null
return null;
}
if (canonical === undefined) {
// server confirmed in-flight array
return array;
}
// server returned new canonical data
return canonical.slice();
}
commitWasRejected(array) {
assert('Array value must be an array', isArray(array));
// nothing to do
}
rollback(array) {
assert('Array value must be an array', isArray(array));
// nothing to do
}
unload(array) {
assert('Array value must be an array', isArray(array));
// nothing to do
}
isDirty(value, originalValue) {
assert('Array value must be an array', value === null || isArray(value));
assert(
'Array original value must be an array',
originalValue === null || isArray(originalValue)
);
return !isArrayEqual(value, originalValue);
}
currentState(array) {
assert('Array value must be an array', array === null || isArray(array));
return array === null ? null : array.slice();
}
canonicalState(array) {
assert('Array value must be an array', array === null || isArray(array));
return array === null ? null : array.slice();
}
}
export default class FragmentRecordData extends RecordData {
constructor (storeWrapper) {
super (storeWrapper);
}
createCache (identifier) {
super.createCache (identifier);
// The current architecture creates a new fragment record data instance even though
// we are derived from a singleton object, and the ember-data framework is optimized
// to use a singleton. We therefore store the identifier since it is used on other
// methods that do not have an identifier parameter. If the FragmentRecordData moves
// to being a singleton design, then we need not cache the identifier.
this.identifier = identifier;
const behavior = Object.create(null);
const definitions = gte ('ember-data', '4.7.0') ?
this.storeWrapper.getSchemaDefinitionService ().attributesDefinitionFor (identifier) :
this.storeWrapper.attributesDefinitionFor (identifier.type);
for (const [key, definition] of Object.entries(definitions)) {
if (!definition.isFragment) {
continue;
}
switch (definition.kind) {
case 'fragment-array':
behavior[key] = new FragmentArrayBehavior(this, definition);
break;
case 'fragment':
behavior[key] = new FragmentBehavior(this, definition);
break;
case 'array':
behavior[key] = new ArrayBehavior(this, definition);
break;
default:
assert(`Unsupported fragment type: ${definition.kind}`);
break;
}
}
this._fragmentBehavior = behavior;
}
get storeWrapper () {
return this.__storeWrapper;
}
get modelName () {
return this.identifier.type;
}
_getFragmentDefault(key) {
const behavior = this._fragmentBehavior[key];
assert(
`Attribute '${key}' for model '${this.modelName}' must be a fragment`,
behavior != null
);
assert(
'Fragment default value was already initialized',
!this.hasFragment(key)
);
const defaultValue = behavior.getDefaultValue(key);
this._fragmentData[key] = defaultValue;
return defaultValue;
}
getFragment(key) {
let fragment;
if (key in this._fragments) {
fragment = this._fragments[key];
} else if (key in this._inFlightFragments) {
fragment = this._inFlightFragments[key];
} else if (key in this._fragmentData) {
fragment = this._fragmentData[key];
} else {
fragment = this._getFragmentDefault(key);
}
if (gte ('ember-data', '4.7.0')) {
if (isArray (fragment)) {
fragment = fragment.map (fragment => fragment && fragment.__private_1_recordData ? fragment.__private_1_recordData : fragment)
}
else if (fragment && fragment.__private_1_recordData) {
fragment = fragment.__private_1_recordData;
}
}
return fragment;
}
hasFragment(key) {
return (
key in this._fragments ||
key in this._inFlightFragments ||
key in this._fragmentData
);
}
setDirtyFragment(key, value) {
const behavior = this._fragmentBehavior[key];
assert(
`Attribute '${key}' for model '${this.modelName}' must be a fragment`,
behavior != null
);
let originalValue;
if (key in this._inFlightFragments) {
originalValue = this._inFlightFragments[key];
} else if (key in this._fragmentData) {
originalValue = this._fragmentData[key];
} else {
originalValue = this._getFragmentDefault(key);
}
const isDirty = behavior.isDirty(value, originalValue);
const oldDirty = this.isFragmentDirty(key);
if (isDirty !== oldDirty) {
this.notifyStateChange(key);
}
if (isDirty) {
this._fragments[key] = value;
this.fragmentDidDirty();
} else {
delete this._fragments[key];
this.fragmentDidReset();
}
// this._fragmentArrayCache[key]?.notify();
}
setDirtyAttribute(key, value) {
assert(
`Attribute '${key}' for model '${this.modelName}' must not be a fragment`,
this._fragmentBehavior[key] == null
);
const oldDirty = this.isAttrDirty(key);
super.setDirtyAttribute(key, value);
const isDirty = this.isAttrDirty(key);
if (isDirty !== oldDirty) {
this.notifyStateChange(key);
}
if (isDirty) {
this.fragmentDidDirty();
} else {
this.fragmentDidReset();
}
}
getFragmentOwner() {
return this._fragmentOwner?.recordData;
}
setFragmentOwner(recordData, key) {
assert(
'Fragment owner must be a RecordData',
recordData instanceof RecordData
);
assert(
'Fragment owner key must be a fragment',
recordData._fragmentBehavior[key] != null
);
assert(
'Fragments can only belong to one owner, try copying instead',
!this._fragmentOwner || this._fragmentOwner.recordData === recordData
);
this._fragmentOwner = { recordData, key };
}
_newFragmentRecordDataForKey(key, attributes) {
const behavior = this._fragmentBehavior[key];
assert(
`Attribute '${key}' for model '${this.modelName}' must be a fragment`,
behavior != null
);
return this._newFragmentRecordData(behavior.definition, attributes);
}
_newFragmentRecordData(definition, attributes) {
const type = getActualFragmentType(
definition.modelName,
definition.options,
attributes,
this._fragmentGetRecord()
);
const recordData = this.storeWrapper.recordDataFor(type);
const unwrapped = unwrapRecordDataFrom (recordData);
unwrapped.setFragmentOwner(this, definition.name);
unwrapped._fragmentPushData({ attributes });
return recordData;
}
hasChangedAttributes() {
return super.hasChangedAttrs (this.identifier) || this.hasChangedFragments();
}
hasChangedFragments() {
return Object.keys(this._fragmentsOrInFlight).length > 0;
}
isFragmentDirty(key) {
return this.__fragments?.[key] !== undefined;
}
getCanonicalState() {
const result = Object.assign({}, this._data);
for (const [key, behavior] of Object.entries(this._fragmentBehavior)) {
const value =
key in this._fragmentData
? this._fragmentData[key]
: this._getFragmentDefault(key);
result[key] = behavior.canonicalState(value);
}
return result;
}
getCurrentState() {
const result = Object.assign(
{},
this._data,
this._inFlightAttributes,
this._attributes
);
for (const [key, behavior] of Object.entries(this._fragmentBehavior)) {
result[key] = behavior.currentState(this.getFragment(key));
}
return result;
}
/*
Returns an object, whose keys are changed properties, and value is an
[oldProp, newProp] array.
@method changedAttributes
@private
*/
changedAttributes() {
const result = super.changedAttributes();
if (this.hasChangedFragments()) {
Object.assign(result, this.changedFragments());
}
return result;
}
changedFragments() {
const diffData = Object.create(null);
for (const [key, newFragment] of Object.entries(
this._fragmentsOrInFlight
)) {
const behavior = this._fragmentBehavior[key];
const oldFragment = this._fragmentData[key];
diffData[key] = [
behavior.canonicalState(oldFragment),
behavior.currentState(newFragment),
];
}
return diffData;
}
_changedFragmentKeys(updates) {
const changedKeys = [];
const original = Object.assign(
{},
this._fragmentData,
this._inFlightFragments
);
for (const key of Object.keys(updates)) {
if (this._fragments[key]) {
continue;
}
const eitherIsNull = original[key] === null || updates[key] === null;
if (
eitherIsNull ||
diffArray(original[key], updates[key]).firstChangeIndex !== null
) {
changedKeys.push(key);
}
}
return changedKeys;
}
pushData(identifier, data, calculateChanges) {
let changedFragmentKeys;
const subFragmentsToProcess = [];
if (data.attributes) {
// copy so that we don't mutate the caller's data
const attributes = Object.assign({}, data.attributes);
data = Object.assign({}, data, { attributes });
for (const [key, behavior] of Object.entries(this._fragmentBehavior)) {
const canonical = data.attributes[key];
if (canonical === undefined) {
continue;
}
// strip fragments from the attributes so the super call does not process them
delete data.attributes[key];
subFragmentsToProcess.push({ key, behavior, canonical, attributes });
}
}
// We need first the attributes to be setup before the fragment, to be able to access
// them (for polymorphic fragments for example).
const changedAttributeKeys = super.pushData(identifier, data, calculateChanges);
if (data.attributes) {
const newCanonicalFragments = {};
subFragmentsToProcess.forEach(({ key, behavior, canonical }) => {
let current =
key in this._fragmentData
? this._fragmentData[key]
: this._getFragmentDefault(key);
if (current && current.__private_1_recordData) {
current = current.__private_1_recordData;
}
newCanonicalFragments[key] = behavior.pushData(identifier, current, canonical);
});
if (calculateChanges) {
changedFragmentKeys = this._changedFragmentKeys(newCanonicalFragments);
}
Object.assign(this._fragmentData, newCanonicalFragments);
// update fragment arrays
changedFragmentKeys?.forEach((key) =>
this._fragmentArrayCache[key]?.notify()
);
}
const changedKeys = mergeArrays(changedAttributeKeys, changedFragmentKeys);
if (gte('ember-data', '4.5.0') && changedKeys?.length > 0) {
if (gte ('ember-data', '4.7.0')) {
notifyAttributes (this.__storeWrapper, identifier, changedKeys);
}
else {
internalModelFor(this).notifyAttributes(changedKeys);
}
}
// on ember-data 2.8 - 4.4, InternalModel.setupData will notify
return changedKeys || [];
}
willCommit() {
for (const [key, behavior] of Object.entries(this._fragmentBehavior)) {
const data = this.getFragment(key);
if (data) {
behavior.willCommit(data);
}
}
this._inFlightFragments = this._fragments;
this._fragments = null;
// this.notifyStateChange();
super.willCommit (...arguments);
}
/**
* Checks if the fragments which are considered as changed are still
* different to the state which is acknowledged by the server.
*
* This method is needed when data for the internal model is pushed and the
* pushed data might acknowledge dirty attributes as confirmed.
*/
_updateChangedFragments() {
for (const key of Object.keys(this._fragments)) {
const value = this._fragments[key];
const originalValue = this._fragmentData[key];
const behavior = this._fragmentBehavior[key];
const isDirty = behavior.isDirty(value, originalValue);
if (!isDirty) {
delete this._fragments[key];
}
}
}
didCommit(identifier, data) {
if (!gte('ember-data', '4.7.0')) {
data = identifier;
}
if (data?.attributes) {
// copy so that we don't mutate the caller's data
const attributes = Object.assign({}, data.attributes);
data = Object.assign({}, data, { attributes });
}
const newCanonicalFragments = {};
for (const [key, behavior] of Object.entries(this._fragmentBehavior)) {
let canonical;
if (data?.attributes) {
// strip fragments from the attributes so the super call does not process them
canonical = data.attributes[key];
delete data.attributes[key];
}
const fragment =
key in this._inFlightFragments
? unwrapRecordDataFrom (this._inFlightFragments[key])
: unwrapRecordDataFrom (this._fragmentData[key]);
newCanonicalFragments[key] = behavior.didCommit(fragment, canonical);
}
const changedFragmentKeys = this._changedFragmentKeys(
newCanonicalFragments
);
Object.assign(this._fragmentData, newCanonicalFragments);
this._inFlightFragments = null;
this._updateChangedFragments();
const changedAttributeKeys = super.didCommit(...arguments);
// update fragment arrays
Object.keys(newCanonicalFragments).forEach((key) =>
this._fragmentArrayCache[key]?.notify()
);
const changedKeys = mergeArrays(changedAttributeKeys, changedFragmentKeys);
if (gte('ember-data', '4.5.0') && changedKeys?.length > 0) {
if (gte ('ember-data', '4.7.0')) {
notifyAttributes (this.__storeWrapper, identifier, changedKeys);
}
else {
internalModelFor(this).notifyAttributes(changedKeys);
}
}
// on ember-data 2.8 - 4.4, InternalModel.adapterDidCommit will notify
return changedKeys;
}
commitWasRejected(identifier, errors) {
for (const [key, behavior] of Object.entries(this._fragmentBehavior)) {
const fragment =
key in this._inFlightFragments
? this._inFlightFragments[key]
: this._fragmentData[key];
if (fragment == null) {
continue;
}
behavior.commitWasRejected(fragment);
}
Object.assign(this._fragments, this._inFlightFragments);
this._inFlightFragments = null;
super.commitWasRejected(...arguments);
}
rollbackAttributes() {
let dirtyFragmentKeys;
if (this.hasChangedFragments()) {
dirtyFragmentKeys = Object.keys(this._fragments);
dirtyFragmentKeys.forEach((key) => {
this.rollbackFragment(key);
});
this._fragments = null;
}
const dirtyAttributeKeys = super.rollbackAttributes(...arguments);
this.notifyStateChange();
this.fragmentDidReset();
return mergeArrays(dirtyAttributeKeys, dirtyFragmentKeys);
}
rollbackFragment(key) {
const behavior = this._fragmentBehavior[key];
assert(
`Attribute '${key}' for model '${this.modelName}' must be a fragment`,
behavior != null
);
if (!this.isFragmentDirty(key)) {
return;
}
delete this._fragments[key];
const fragment = this._fragmentData[key];
if (fragment == null) {
return;
}
behavior.rollback(fragment);
this._fragmentArrayCache[key]?.notify();
if (!this.hasChangedAttributes()) {
this.notifyStateChange(key);
this.fragmentDidReset();