@warp-drive/legacy 5.8.0-alpha.4 → 5.8.0-alpha.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (214) hide show
  1. package/README.md +14 -27
  2. package/declarations/adapter/error.d.ts +7 -7
  3. package/declarations/adapter/json-api.d.ts +6 -8
  4. package/declarations/adapter/rest.d.ts +26 -112
  5. package/declarations/adapter.d.ts +6 -8
  6. package/declarations/compat/-private.d.ts +1 -1
  7. package/declarations/compat/builders/find-all.d.ts +6 -6
  8. package/declarations/compat/builders/find-record.d.ts +8 -8
  9. package/declarations/compat/builders/query.d.ts +12 -12
  10. package/declarations/compat/extensions.d.ts +1 -1
  11. package/declarations/compat/legacy-network-handler/minimum-adapter-interface.d.ts +7 -9
  12. package/declarations/compat/legacy-network-handler/minimum-serializer-interface.d.ts +20 -30
  13. package/declarations/compat/utils.d.ts +17 -17
  14. package/declarations/compat.d.ts +35 -11
  15. package/declarations/index.d.ts +70 -0
  16. package/declarations/model/-private/attr.d.ts +5 -6
  17. package/declarations/model/-private/belongs-to.d.ts +4 -5
  18. package/declarations/model/-private/has-many.d.ts +4 -5
  19. package/declarations/model/-private/hooks.d.ts +1 -1
  20. package/declarations/model/-private/legacy-relationships-support.d.ts +2 -2
  21. package/declarations/model/-private/model.d.ts +18 -59
  22. package/declarations/model/-private/promise-many-array.d.ts +0 -18
  23. package/declarations/model/-private/record-state.d.ts +1 -1
  24. package/declarations/model/-private/references/belongs-to.d.ts +19 -29
  25. package/declarations/model/-private/references/has-many.d.ts +14 -16
  26. package/declarations/model/migration-support.d.ts +46 -21
  27. package/declarations/model-fragments/extensions/fragment-array.d.ts +16 -0
  28. package/declarations/model-fragments/extensions/fragment.d.ts +15 -0
  29. package/declarations/model-fragments/hooks/model-for.d.ts +20 -0
  30. package/declarations/model-fragments/index.d.ts +5 -0
  31. package/declarations/model-fragments/instance-initializers/fragment-extensions.d.ts +9 -0
  32. package/declarations/model-fragments/utilities/with-array-defaults.d.ts +15 -0
  33. package/declarations/model-fragments/utilities/with-fragment-array-defaults.d.ts +20 -0
  34. package/declarations/model-fragments/utilities/with-fragment-defaults.d.ts +19 -0
  35. package/declarations/model-fragments/utilities/with-legacy.d.ts +3 -0
  36. package/declarations/model-fragments.d.ts +9 -0
  37. package/declarations/model.d.ts +2 -2
  38. package/declarations/serializer/-private/embedded-records-mixin.d.ts +1 -6
  39. package/declarations/serializer/-private/transforms/boolean.d.ts +2 -2
  40. package/declarations/serializer/-private/transforms/date.d.ts +2 -2
  41. package/declarations/serializer/-private/transforms/number.d.ts +1 -1
  42. package/declarations/serializer/-private/transforms/string.d.ts +1 -1
  43. package/declarations/serializer/json-api.d.ts +11 -12
  44. package/declarations/serializer/json.d.ts +9 -11
  45. package/declarations/serializer/rest.d.ts +4 -6
  46. package/declarations/serializer.d.ts +9 -12
  47. package/dist/{-private-8UmnAf9J.js → -private-BG3bMiKp.js} +3 -2
  48. package/dist/adapter/-private.js +1 -1
  49. package/dist/adapter/error.js +14 -15
  50. package/dist/adapter/json-api.js +4 -1
  51. package/dist/adapter/rest.js +38 -125
  52. package/dist/adapter.js +6 -8
  53. package/dist/compat/-private.js +1 -1
  54. package/dist/compat/builders.js +26 -26
  55. package/dist/compat/utils.js +17 -18
  56. package/dist/compat.js +61 -43
  57. package/dist/{errors-8kD2mSe_.js → errors-Cz5KrzBk.js} +115 -122
  58. package/dist/hooks-D6diaM34.js +74 -0
  59. package/dist/index.js +195 -0
  60. package/dist/{json-DziiodPf.js → json-ChdEfB0X.js} +18 -35
  61. package/dist/model/-private.js +1 -1
  62. package/dist/model/migration-support.js +57 -25
  63. package/dist/model-for-CqXsIKws.js +221 -0
  64. package/dist/model-fragments.js +76 -0
  65. package/dist/model.js +18 -90
  66. package/dist/{schema-provider-DQu4Rjco.js → schema-provider-DJCV_6AF.js} +50 -95
  67. package/dist/{serialize-into-hash-CS0MIv4F.js → serialize-into-hash-DPZYoF-i.js} +1 -1
  68. package/dist/serializer/json-api.js +18 -45
  69. package/dist/serializer/json.js +1 -1
  70. package/dist/serializer/rest.js +14 -21
  71. package/dist/serializer/transform.js +15 -6
  72. package/dist/serializer.js +9 -13
  73. package/dist/store.js +5 -1
  74. package/dist/unpkg/dev/-private-DtjBbEgy.js +1206 -0
  75. package/dist/unpkg/dev/adapter/-private.js +1 -0
  76. package/dist/unpkg/dev/adapter/error.js +335 -0
  77. package/dist/unpkg/dev/adapter/json-api.js +271 -0
  78. package/dist/unpkg/dev/adapter/rest.js +1171 -0
  79. package/dist/unpkg/dev/adapter.js +1252 -0
  80. package/dist/unpkg/dev/compat/-private.js +1 -0
  81. package/dist/unpkg/dev/compat/builders.js +275 -0
  82. package/dist/unpkg/dev/compat/extensions.js +242 -0
  83. package/dist/unpkg/dev/compat/utils.js +223 -0
  84. package/dist/unpkg/dev/compat.js +1147 -0
  85. package/dist/unpkg/dev/errors-DmGGJr3T.js +2562 -0
  86. package/dist/unpkg/dev/hooks-CkYiE6Ud.js +73 -0
  87. package/dist/unpkg/dev/index.js +197 -0
  88. package/dist/unpkg/dev/json-Cu1LNgmQ.js +1256 -0
  89. package/dist/unpkg/dev/model/-private.js +1 -0
  90. package/dist/unpkg/dev/model/migration-support.js +553 -0
  91. package/dist/unpkg/dev/model-for-CqXsIKws.js +221 -0
  92. package/dist/unpkg/dev/model-fragments.js +76 -0
  93. package/dist/unpkg/dev/model.js +678 -0
  94. package/dist/unpkg/dev/runtime-BPCpkOf1-BKOwiRJp.js +65 -0
  95. package/dist/unpkg/dev/schema-provider-DDVYxmUV.js +2186 -0
  96. package/dist/unpkg/dev/serialize-into-hash-B2xDbuo5.js +259 -0
  97. package/dist/unpkg/dev/serializer/json-api.js +649 -0
  98. package/dist/unpkg/dev/serializer/json.js +4 -0
  99. package/dist/unpkg/dev/serializer/rest.js +1242 -0
  100. package/dist/unpkg/dev/serializer/transform.js +278 -0
  101. package/dist/unpkg/dev/serializer.js +248 -0
  102. package/dist/unpkg/dev/store.js +637 -0
  103. package/dist/unpkg/dev/util-DvanW33H.js +20 -0
  104. package/dist/unpkg/dev/utils-BhvS1iTS.js +8 -0
  105. package/dist/unpkg/dev-deprecated/-private-DtjBbEgy.js +1206 -0
  106. package/dist/unpkg/dev-deprecated/adapter/-private.js +1 -0
  107. package/dist/unpkg/dev-deprecated/adapter/error.js +335 -0
  108. package/dist/unpkg/dev-deprecated/adapter/json-api.js +271 -0
  109. package/dist/unpkg/dev-deprecated/adapter/rest.js +1171 -0
  110. package/dist/unpkg/dev-deprecated/adapter.js +1252 -0
  111. package/dist/unpkg/dev-deprecated/compat/-private.js +1 -0
  112. package/dist/unpkg/dev-deprecated/compat/builders.js +275 -0
  113. package/dist/unpkg/dev-deprecated/compat/extensions.js +242 -0
  114. package/dist/unpkg/dev-deprecated/compat/utils.js +223 -0
  115. package/dist/unpkg/dev-deprecated/compat.js +1147 -0
  116. package/dist/unpkg/dev-deprecated/errors-Spt6ubMd.js +2565 -0
  117. package/dist/unpkg/dev-deprecated/hooks-DOXegvhL.js +73 -0
  118. package/dist/unpkg/dev-deprecated/index.js +196 -0
  119. package/dist/unpkg/dev-deprecated/json-Cu1LNgmQ.js +1256 -0
  120. package/dist/unpkg/dev-deprecated/model/-private.js +1 -0
  121. package/dist/unpkg/dev-deprecated/model/migration-support.js +570 -0
  122. package/dist/unpkg/dev-deprecated/model-for-CqXsIKws.js +221 -0
  123. package/dist/unpkg/dev-deprecated/model-fragments.js +76 -0
  124. package/dist/unpkg/dev-deprecated/model.js +682 -0
  125. package/dist/unpkg/dev-deprecated/runtime-BPCpkOf1-BKOwiRJp.js +65 -0
  126. package/dist/unpkg/dev-deprecated/schema-provider-BP6_8N-V.js +2211 -0
  127. package/dist/unpkg/dev-deprecated/serialize-into-hash-B2xDbuo5.js +259 -0
  128. package/dist/unpkg/dev-deprecated/serializer/json-api.js +649 -0
  129. package/dist/unpkg/dev-deprecated/serializer/json.js +4 -0
  130. package/dist/unpkg/dev-deprecated/serializer/rest.js +1242 -0
  131. package/dist/unpkg/dev-deprecated/serializer/transform.js +278 -0
  132. package/dist/unpkg/dev-deprecated/serializer.js +248 -0
  133. package/dist/unpkg/dev-deprecated/store.js +637 -0
  134. package/dist/unpkg/dev-deprecated/util-CWr5WQOT.js +24 -0
  135. package/dist/unpkg/dev-deprecated/utils-C9PJehtL.js +12 -0
  136. package/dist/unpkg/prod/-private-BdyZaGEh.js +971 -0
  137. package/dist/unpkg/prod/adapter/-private.js +1 -0
  138. package/dist/unpkg/prod/adapter/error.js +330 -0
  139. package/dist/unpkg/prod/adapter/json-api.js +266 -0
  140. package/dist/unpkg/prod/adapter/rest.js +1134 -0
  141. package/dist/unpkg/prod/adapter.js +1219 -0
  142. package/dist/unpkg/prod/compat/-private.js +1 -0
  143. package/dist/unpkg/prod/compat/builders.js +210 -0
  144. package/dist/unpkg/prod/compat/extensions.js +232 -0
  145. package/dist/unpkg/prod/compat/utils.js +218 -0
  146. package/dist/unpkg/prod/compat.js +727 -0
  147. package/dist/unpkg/prod/errors-BGVFCBmi.js +2314 -0
  148. package/dist/unpkg/prod/hooks-BztVA_x0.js +41 -0
  149. package/dist/unpkg/prod/index.js +151 -0
  150. package/dist/unpkg/prod/json-BWrZ5546.js +1243 -0
  151. package/dist/unpkg/prod/model/-private.js +1 -0
  152. package/dist/unpkg/prod/model/migration-support.js +546 -0
  153. package/dist/unpkg/prod/model-for-CqXsIKws.js +221 -0
  154. package/dist/unpkg/prod/model-fragments.js +76 -0
  155. package/dist/unpkg/prod/model.js +593 -0
  156. package/dist/unpkg/prod/runtime-BPCpkOf1-BKOwiRJp.js +65 -0
  157. package/dist/unpkg/prod/schema-provider-DJtD_8jZ.js +1861 -0
  158. package/dist/unpkg/prod/serialize-into-hash-DGlzQteF.js +215 -0
  159. package/dist/unpkg/prod/serializer/json-api.js +592 -0
  160. package/dist/unpkg/prod/serializer/json.js +4 -0
  161. package/dist/unpkg/prod/serializer/rest.js +1210 -0
  162. package/dist/unpkg/prod/serializer/transform.js +278 -0
  163. package/dist/unpkg/prod/serializer.js +248 -0
  164. package/dist/unpkg/prod/store.js +505 -0
  165. package/dist/unpkg/prod/util-DvanW33H.js +20 -0
  166. package/dist/unpkg/prod/utils-BhvS1iTS.js +8 -0
  167. package/dist/unpkg/prod-deprecated/-private-BdyZaGEh.js +971 -0
  168. package/dist/unpkg/prod-deprecated/adapter/-private.js +1 -0
  169. package/dist/unpkg/prod-deprecated/adapter/error.js +330 -0
  170. package/dist/unpkg/prod-deprecated/adapter/json-api.js +266 -0
  171. package/dist/unpkg/prod-deprecated/adapter/rest.js +1134 -0
  172. package/dist/unpkg/prod-deprecated/adapter.js +1219 -0
  173. package/dist/unpkg/prod-deprecated/compat/-private.js +1 -0
  174. package/dist/unpkg/prod-deprecated/compat/builders.js +210 -0
  175. package/dist/unpkg/prod-deprecated/compat/extensions.js +232 -0
  176. package/dist/unpkg/prod-deprecated/compat/utils.js +218 -0
  177. package/dist/unpkg/prod-deprecated/compat.js +727 -0
  178. package/dist/unpkg/prod-deprecated/errors-CdDaK81x.js +2317 -0
  179. package/dist/unpkg/prod-deprecated/hooks-yId87yyG.js +41 -0
  180. package/dist/unpkg/prod-deprecated/index.js +150 -0
  181. package/dist/unpkg/prod-deprecated/json-BWrZ5546.js +1243 -0
  182. package/dist/unpkg/prod-deprecated/model/-private.js +1 -0
  183. package/dist/unpkg/prod-deprecated/model/migration-support.js +563 -0
  184. package/dist/unpkg/prod-deprecated/model-for-CqXsIKws.js +221 -0
  185. package/dist/unpkg/prod-deprecated/model-fragments.js +76 -0
  186. package/dist/unpkg/prod-deprecated/model.js +596 -0
  187. package/dist/unpkg/prod-deprecated/runtime-BPCpkOf1-BKOwiRJp.js +65 -0
  188. package/dist/unpkg/prod-deprecated/schema-provider-CjX55uSY.js +1904 -0
  189. package/dist/unpkg/prod-deprecated/serialize-into-hash-DGlzQteF.js +215 -0
  190. package/dist/unpkg/prod-deprecated/serializer/json-api.js +592 -0
  191. package/dist/unpkg/prod-deprecated/serializer/json.js +4 -0
  192. package/dist/unpkg/prod-deprecated/serializer/rest.js +1210 -0
  193. package/dist/unpkg/prod-deprecated/serializer/transform.js +278 -0
  194. package/dist/unpkg/prod-deprecated/serializer.js +248 -0
  195. package/dist/unpkg/prod-deprecated/store.js +505 -0
  196. package/dist/unpkg/prod-deprecated/util-B6cn-i93.js +23 -0
  197. package/dist/unpkg/prod-deprecated/utils-BUWwQwCh.js +11 -0
  198. package/logos/README.md +2 -2
  199. package/logos/logo-yellow-slab.svg +1 -0
  200. package/logos/word-mark-black.svg +1 -0
  201. package/logos/word-mark-white.svg +1 -0
  202. package/package.json +14 -6
  203. package/logos/NCC-1701-a-blue.svg +0 -4
  204. package/logos/NCC-1701-a-gold.svg +0 -4
  205. package/logos/NCC-1701-a-gold_100.svg +0 -1
  206. package/logos/NCC-1701-a-gold_base-64.txt +0 -1
  207. package/logos/NCC-1701-a.svg +0 -4
  208. package/logos/docs-badge.svg +0 -2
  209. package/logos/ember-data-logo-dark.svg +0 -12
  210. package/logos/ember-data-logo-light.svg +0 -12
  211. package/logos/social1.png +0 -0
  212. package/logos/social2.png +0 -0
  213. package/logos/warp-drive-logo-dark.svg +0 -4
  214. package/logos/warp-drive-logo-gold.svg +0 -4
@@ -0,0 +1,1210 @@
1
+ import { camelize, dasherize, singularize } from '@warp-drive/utilities/string';
2
+ import { J as JSONSerializer, c as coerceId } from "../json-BWrZ5546.js";
3
+ import Mixin from '@ember/object/mixin';
4
+
5
+ /* eslint-disable @typescript-eslint/no-unsafe-argument */
6
+ /* eslint-disable @typescript-eslint/no-unsafe-return */
7
+ /* eslint-disable @typescript-eslint/no-unsafe-call */
8
+ /* eslint-disable @typescript-eslint/no-unsafe-member-access */
9
+ /* eslint-disable @typescript-eslint/no-unsafe-assignment */
10
+
11
+ /**
12
+ ## Using Embedded Records
13
+
14
+ `EmbeddedRecordsMixin` supports serializing embedded records.
15
+
16
+ To set up embedded records, include the mixin when extending a serializer,
17
+ then define and configure embedded (model) relationships.
18
+
19
+ Note that embedded records will serialize with the serializer for their model instead of the serializer in which they are defined.
20
+
21
+ Note also that this mixin does not work with JSONAPISerializer because the JSON:API specification does not describe how to format embedded resources.
22
+
23
+ Below is an example of a per-type serializer (`post` type).
24
+
25
+ ```js [app/serializers/post.js]
26
+ import RESTSerializer, { EmbeddedRecordsMixin } from '@warp-drive/legacy/serializer/rest';
27
+
28
+ export default class PostSerializer extends RESTSerializer.extend(EmbeddedRecordsMixin) {
29
+ attrs = {
30
+ author: { embedded: 'always' },
31
+ comments: { serialize: 'ids' }
32
+ }
33
+ }
34
+ ```
35
+ Note that this use of `{ embedded: 'always' }` is unrelated to
36
+ the `{ embedded: 'always' }` that is defined as an option on `attr` as part of
37
+ defining a model while working with the `ActiveModelSerializer`. Nevertheless,
38
+ using `{ embedded: 'always' }` as an option to `attr` is not a valid way to set up
39
+ embedded records.
40
+
41
+ The `attrs` option for a resource `{ embedded: 'always' }` is shorthand for:
42
+
43
+ ```js
44
+ {
45
+ serialize: 'records',
46
+ deserialize: 'records'
47
+ }
48
+ ```
49
+
50
+ ### Configuring Attrs
51
+
52
+ A resource's `attrs` option may be set to use `ids`, `records` or false for the
53
+ `serialize` and `deserialize` settings.
54
+
55
+ The `attrs` property can be set on the `ApplicationSerializer` or a per-type
56
+ serializer.
57
+
58
+ In the case where embedded JSON is expected while extracting a payload (reading)
59
+ the setting is `deserialize: 'records'`, there is no need to use `ids` when
60
+ extracting as that is the default behaviour without this mixin if you are using
61
+ the vanilla `EmbeddedRecordsMixin`. Likewise, to embed JSON in the payload while
62
+ serializing `serialize: 'records'` is the setting to use. There is an option of
63
+ not embedding JSON in the serialized payload by using `serialize: 'ids'`. If you
64
+ do not want the relationship sent at all, you can use `serialize: false`.
65
+
66
+
67
+ ### EmbeddedRecordsMixin defaults
68
+ If you do not overwrite `attrs` for a specific relationship, the `EmbeddedRecordsMixin`
69
+ will behave in the following way:
70
+
71
+ BelongsTo: `{ serialize: 'id', deserialize: 'id' }`
72
+ HasMany: `{ serialize: false, deserialize: 'ids' }`
73
+
74
+ ### Model Relationships
75
+
76
+ Embedded records must have a model defined to be extracted and serialized. Note that
77
+ when defining any relationships on your model such as `belongsTo` and `hasMany`, you
78
+ should not both specify `async: true` and also indicate through the serializer's
79
+ `attrs` attribute that the related model should be embedded for deserialization.
80
+ If a model is declared embedded for deserialization (`embedded: 'always'` or `deserialize: 'records'`),
81
+ then do not use `async: true`.
82
+
83
+ To successfully extract and serialize embedded records the model relationships
84
+ must be set up correctly. See the
85
+ [defining relationships](https://guides.emberjs.com/current/models/relationships)
86
+ section of the **Defining Models** guide page.
87
+
88
+ Records without an `id` property are not considered embedded records, model
89
+ instances must have an `id` property to be used with Ember Data.
90
+
91
+ ### Example JSON payloads, Models and Serializers
92
+
93
+ **When customizing a serializer it is important to grok what the customizations
94
+ are. Please read the docs for the methods this mixin provides, in case you need
95
+ to modify it to fit your specific needs.**
96
+
97
+ @class EmbeddedRecordsMixin
98
+ @public
99
+ */
100
+ const EmbeddedRecordsMixin = Mixin.create({
101
+ /**
102
+ Normalize the record and recursively normalize/extract all the embedded records
103
+ while pushing them into the store as they are encountered
104
+ A payload with an attr configured for embedded records needs to be extracted:
105
+ ```js
106
+ {
107
+ "post": {
108
+ "id": "1"
109
+ "title": "Rails is omakase",
110
+ "comments": [{
111
+ "id": "1",
112
+ "body": "Rails is unagi"
113
+ }, {
114
+ "id": "2",
115
+ "body": "Omakase O_o"
116
+ }]
117
+ }
118
+ }
119
+ ```
120
+ @public
121
+ @param {Model} typeClass
122
+ @param {Object} hash to be normalized
123
+ @param {String} prop the hash has been referenced by
124
+ @return {Object} the normalized hash
125
+ **/
126
+ normalize(typeClass, hash, prop) {
127
+ const normalizedHash = this._super(typeClass, hash, prop);
128
+ return this._extractEmbeddedRecords(this, this.store, typeClass, normalizedHash);
129
+ },
130
+ keyForRelationship(key, typeClass, method) {
131
+ if (method === 'serialize' && this.hasSerializeRecordsOption(key) || method === 'deserialize' && this.hasDeserializeRecordsOption(key)) {
132
+ return this.keyForAttribute(key, method);
133
+ } else {
134
+ return this._super(key, typeClass, method) || key;
135
+ }
136
+ },
137
+ /**
138
+ Serialize `belongsTo` relationship when it is configured as an embedded object.
139
+ This example of an author model belongs to a post model:
140
+ ```js
141
+ import Model, { attr, belongsTo } from '@warp-drive/legacy/model';
142
+ Post = Model.extend({
143
+ title: attr('string'),
144
+ body: attr('string'),
145
+ author: belongsTo('author')
146
+ });
147
+ Author = Model.extend({
148
+ name: attr('string'),
149
+ post: belongsTo('post')
150
+ });
151
+ ```
152
+ Use a custom (type) serializer for the post model to configure embedded author
153
+ ```js [app/serializers/post.js]
154
+ import RESTSerializer, { EmbeddedRecordsMixin } from '@warp-drive/legacy/serializer/rest';
155
+ export default class PostSerializer extends RESTSerializer.extend(EmbeddedRecordsMixin) {
156
+ attrs = {
157
+ author: { embedded: 'always' }
158
+ }
159
+ }
160
+ ```
161
+ A payload with an attribute configured for embedded records can serialize
162
+ the records together under the root attribute's payload:
163
+ ```js
164
+ {
165
+ "post": {
166
+ "id": "1"
167
+ "title": "Rails is omakase",
168
+ "author": {
169
+ "id": "2"
170
+ "name": "dhh"
171
+ }
172
+ }
173
+ }
174
+ ```
175
+ @public
176
+ @param {Snapshot} snapshot
177
+ @param {Object} json
178
+ @param {Object} relationship
179
+ */
180
+ serializeBelongsTo(snapshot, json, relationship) {
181
+ const attr = relationship.name;
182
+ if (this.noSerializeOptionSpecified(attr)) {
183
+ this._super(snapshot, json, relationship);
184
+ return;
185
+ }
186
+ const includeIds = this.hasSerializeIdsOption(attr);
187
+ const includeRecords = this.hasSerializeRecordsOption(attr);
188
+ const embeddedSnapshot = snapshot.belongsTo(attr);
189
+ if (includeIds) {
190
+ const schema = this.store.modelFor(snapshot.modelName);
191
+ let serializedKey = this._getMappedKey(relationship.name, schema);
192
+ if (serializedKey === relationship.name && this.keyForRelationship) {
193
+ serializedKey = this.keyForRelationship(relationship.name, relationship.kind, 'serialize');
194
+ }
195
+ if (!embeddedSnapshot) {
196
+ json[serializedKey] = null;
197
+ } else {
198
+ json[serializedKey] = embeddedSnapshot.id;
199
+ if (relationship.options.polymorphic) {
200
+ this.serializePolymorphicType(snapshot, json, relationship);
201
+ }
202
+ }
203
+ } else if (includeRecords) {
204
+ this._serializeEmbeddedBelongsTo(snapshot, json, relationship);
205
+ }
206
+ },
207
+ _serializeEmbeddedBelongsTo(snapshot, json, relationship) {
208
+ const embeddedSnapshot = snapshot.belongsTo(relationship.name);
209
+ const schema = this.store.modelFor(snapshot.modelName);
210
+ let serializedKey = this._getMappedKey(relationship.name, schema);
211
+ if (serializedKey === relationship.name && this.keyForRelationship) {
212
+ serializedKey = this.keyForRelationship(relationship.name, relationship.kind, 'serialize');
213
+ }
214
+ if (!embeddedSnapshot) {
215
+ json[serializedKey] = null;
216
+ } else {
217
+ json[serializedKey] = embeddedSnapshot.serialize({
218
+ includeId: true
219
+ });
220
+ this.removeEmbeddedForeignKey(snapshot, embeddedSnapshot, relationship, json[serializedKey]);
221
+ if (relationship.options.polymorphic) {
222
+ this.serializePolymorphicType(snapshot, json, relationship);
223
+ }
224
+ }
225
+ },
226
+ /**
227
+ Serializes `hasMany` relationships when it is configured as embedded objects.
228
+ This example of a post model has many comments:
229
+ ```js
230
+ import Model, { attr, belongsTo, hasMany } from '@warp-drive/legacy/model';
231
+ Post = Model.extend({
232
+ title: attr('string'),
233
+ body: attr('string'),
234
+ comments: hasMany('comment')
235
+ });
236
+ Comment = Model.extend({
237
+ body: attr('string'),
238
+ post: belongsTo('post')
239
+ });
240
+ ```
241
+ Use a custom (type) serializer for the post model to configure embedded comments
242
+ ```js [app/serializers/post.js]
243
+ import RESTSerializer, { EmbeddedRecordsMixin } from '@warp-drive/legacy/serializer/rest';
244
+ export default class PostSerializer extends RESTSerializer.extend(EmbeddedRecordsMixin) {
245
+ attrs = {
246
+ comments: { embedded: 'always' }
247
+ }
248
+ }
249
+ ```
250
+ A payload with an attribute configured for embedded records can serialize
251
+ the records together under the root attribute's payload:
252
+ ```js
253
+ {
254
+ "post": {
255
+ "id": "1"
256
+ "title": "Rails is omakase",
257
+ "body": "I want this for my ORM, I want that for my template language..."
258
+ "comments": [{
259
+ "id": "1",
260
+ "body": "Rails is unagi"
261
+ }, {
262
+ "id": "2",
263
+ "body": "Omakase O_o"
264
+ }]
265
+ }
266
+ }
267
+ ```
268
+ The attrs options object can use more specific instruction for extracting and
269
+ serializing. When serializing, an option to embed `ids`, `ids-and-types` or `records` can be set.
270
+ When extracting the only option is `records`.
271
+ So `{ embedded: 'always' }` is shorthand for:
272
+ `{ serialize: 'records', deserialize: 'records' }`
273
+ To embed the `ids` for a related object (using a hasMany relationship):
274
+ ```js [app/serializers/post.js]
275
+ import RESTSerializer, { EmbeddedRecordsMixin } from '@warp-drive/legacy/serializer/rest';
276
+ export default class PostSerializer extends RESTSerializer.extend(EmbeddedRecordsMixin) {
277
+ attrs = {
278
+ comments: { serialize: 'ids', deserialize: 'records' }
279
+ }
280
+ }
281
+ ```
282
+ ```js
283
+ {
284
+ "post": {
285
+ "id": "1"
286
+ "title": "Rails is omakase",
287
+ "body": "I want this for my ORM, I want that for my template language..."
288
+ "comments": ["1", "2"]
289
+ }
290
+ }
291
+ ```
292
+ To embed the relationship as a collection of objects with `id` and `type` keys, set
293
+ `ids-and-types` for the related object.
294
+ This is particularly useful for polymorphic relationships where records don't share
295
+ the same table and the `id` is not enough information.
296
+ For example having a user that has many pets:
297
+ ```js
298
+ User = Model.extend({
299
+ name: attr('string'),
300
+ pets: hasMany('pet', { polymorphic: true })
301
+ });
302
+ Pet = Model.extend({
303
+ name: attr('string'),
304
+ });
305
+ Cat = Pet.extend({
306
+ // ...
307
+ });
308
+ Parrot = Pet.extend({
309
+ // ...
310
+ });
311
+ ```
312
+ ```js [app/serializers/user.js]
313
+ import RESTSerializer, { EmbeddedRecordsMixin } from '@warp-drive/legacy/serializer/rest';
314
+ export default class UserSerializer extends RESTSerializer.extend(EmbeddedRecordsMixin) {
315
+ attrs = {
316
+ pets: { serialize: 'ids-and-types', deserialize: 'records' }
317
+ }
318
+ }
319
+ ```
320
+ ```js
321
+ {
322
+ "user": {
323
+ "id": "1"
324
+ "name": "Bertin Osborne",
325
+ "pets": [
326
+ { "id": "1", "type": "Cat" },
327
+ { "id": "1", "type": "Parrot"}
328
+ ]
329
+ }
330
+ }
331
+ ```
332
+ @public
333
+ @param {Snapshot} snapshot
334
+ @param {Object} json
335
+ @param {Object} relationship
336
+ */
337
+ serializeHasMany(snapshot, json, relationship) {
338
+ const attr = relationship.name;
339
+ if (this.noSerializeOptionSpecified(attr)) {
340
+ this._super(snapshot, json, relationship);
341
+ return;
342
+ }
343
+ if (this.hasSerializeIdsOption(attr)) {
344
+ const schema = this.store.modelFor(snapshot.modelName);
345
+ let serializedKey = this._getMappedKey(relationship.name, schema);
346
+ if (serializedKey === relationship.name && this.keyForRelationship) {
347
+ serializedKey = this.keyForRelationship(relationship.name, relationship.kind, 'serialize');
348
+ }
349
+ json[serializedKey] = snapshot.hasMany(attr, {
350
+ ids: true
351
+ });
352
+ } else if (this.hasSerializeRecordsOption(attr)) {
353
+ this._serializeEmbeddedHasMany(snapshot, json, relationship);
354
+ } else {
355
+ if (this.hasSerializeIdsAndTypesOption(attr)) {
356
+ this._serializeHasManyAsIdsAndTypes(snapshot, json, relationship);
357
+ }
358
+ }
359
+ },
360
+ /*
361
+ Serializes a hasMany relationship as an array of objects containing only `id` and `type`
362
+ keys.
363
+ This has its use case on polymorphic hasMany relationships where the server is not storing
364
+ all records in the same table using STI, and therefore the `id` is not enough information
365
+ TODO: Make the default in Ember-data 3.0??
366
+ */
367
+ _serializeHasManyAsIdsAndTypes(snapshot, json, relationship) {
368
+ const serializedKey = this.keyForAttribute(relationship.name, 'serialize');
369
+ const hasMany = snapshot.hasMany(relationship.name) || [];
370
+ json[serializedKey] = hasMany.map(function (recordSnapshot) {
371
+ //
372
+ // I'm sure I'm being utterly naive here. Probably id is a configurable property and
373
+ // type too, and the modelName has to be normalized somehow.
374
+ //
375
+ return {
376
+ id: recordSnapshot.id,
377
+ type: recordSnapshot.modelName
378
+ };
379
+ });
380
+ },
381
+ _serializeEmbeddedHasMany(snapshot, json, relationship) {
382
+ const schema = this.store.modelFor(snapshot.modelName);
383
+ let serializedKey = this._getMappedKey(relationship.name, schema);
384
+ if (serializedKey === relationship.name && this.keyForRelationship) {
385
+ serializedKey = this.keyForRelationship(relationship.name, relationship.kind, 'serialize');
386
+ }
387
+ json[serializedKey] = this._generateSerializedHasMany(snapshot, relationship);
388
+ },
389
+ /*
390
+ Returns an array of embedded records serialized to JSON
391
+ */
392
+ _generateSerializedHasMany(snapshot, relationship) {
393
+ const hasMany = snapshot.hasMany(relationship.name) || [];
394
+ const ret = new Array(hasMany.length);
395
+ for (let i = 0; i < hasMany.length; i++) {
396
+ const embeddedSnapshot = hasMany[i];
397
+ const embeddedJson = embeddedSnapshot.serialize({
398
+ includeId: true
399
+ });
400
+ this.removeEmbeddedForeignKey(snapshot, embeddedSnapshot, relationship, embeddedJson);
401
+ ret[i] = embeddedJson;
402
+ }
403
+ return ret;
404
+ },
405
+ /**
406
+ When serializing an embedded record, modify the property (in the `JSON` payload)
407
+ that refers to the parent record (foreign key for the relationship).
408
+ Serializing a `belongsTo` relationship removes the property that refers to the
409
+ parent record
410
+ Serializing a `hasMany` relationship does not remove the property that refers to
411
+ the parent record.
412
+ @public
413
+ @param {Snapshot} snapshot
414
+ @param {Snapshot} embeddedSnapshot
415
+ @param {Object} relationship
416
+ @param {Object} json
417
+ */
418
+ removeEmbeddedForeignKey(snapshot, embeddedSnapshot, relationship, json) {
419
+ if (relationship.kind === 'belongsTo') {
420
+ const schema = this.store.modelFor(snapshot.modelName);
421
+ const parentRecord = schema.inverseFor(relationship.name, this.store);
422
+ if (parentRecord) {
423
+ const name = parentRecord.name;
424
+ const embeddedSerializer = this.store.serializerFor(embeddedSnapshot.modelName);
425
+ const parentKey = embeddedSerializer.keyForRelationship(name, parentRecord.kind, 'deserialize');
426
+ if (parentKey) {
427
+ delete json[parentKey];
428
+ }
429
+ }
430
+ } /*else if (relationship.kind === 'hasMany') {
431
+ return;
432
+ }*/
433
+ },
434
+ // checks config for attrs option to embedded (always) - serialize and deserialize
435
+ hasEmbeddedAlwaysOption(attr) {
436
+ const option = this.attrsOption(attr);
437
+ return option && option.embedded === 'always';
438
+ },
439
+ // checks config for attrs option to serialize ids
440
+ hasSerializeRecordsOption(attr) {
441
+ const alwaysEmbed = this.hasEmbeddedAlwaysOption(attr);
442
+ const option = this.attrsOption(attr);
443
+ return alwaysEmbed || option && option.serialize === 'records';
444
+ },
445
+ // checks config for attrs option to serialize records
446
+ hasSerializeIdsOption(attr) {
447
+ const option = this.attrsOption(attr);
448
+ return option && (option.serialize === 'ids' || option.serialize === 'id');
449
+ },
450
+ // checks config for attrs option to serialize records as objects containing id and types
451
+ hasSerializeIdsAndTypesOption(attr) {
452
+ const option = this.attrsOption(attr);
453
+ return option && (option.serialize === 'ids-and-types' || option.serialize === 'id-and-type');
454
+ },
455
+ // checks config for attrs option to serialize records
456
+ noSerializeOptionSpecified(attr) {
457
+ const option = this.attrsOption(attr);
458
+ return !(option && (option.serialize || option.embedded));
459
+ },
460
+ // checks config for attrs option to deserialize records
461
+ // a defined option object for a resource is treated the same as
462
+ // `deserialize: 'records'`
463
+ hasDeserializeRecordsOption(attr) {
464
+ const alwaysEmbed = this.hasEmbeddedAlwaysOption(attr);
465
+ const option = this.attrsOption(attr);
466
+ return alwaysEmbed || option && option.deserialize === 'records';
467
+ },
468
+ attrsOption(attr) {
469
+ const attrs = this.attrs;
470
+ return attrs && (attrs[camelize(attr)] || attrs[attr]);
471
+ },
472
+ /**
473
+ @private
474
+ */
475
+ _extractEmbeddedRecords(serializer, store, typeClass, partial) {
476
+ typeClass.eachRelationship((key, relationship) => {
477
+ if (serializer.hasDeserializeRecordsOption(key)) {
478
+ if (relationship.kind === 'hasMany') {
479
+ this._extractEmbeddedHasMany(store, key, partial, relationship);
480
+ }
481
+ if (relationship.kind === 'belongsTo') {
482
+ this._extractEmbeddedBelongsTo(store, key, partial, relationship);
483
+ }
484
+ }
485
+ });
486
+ return partial;
487
+ },
488
+ /**
489
+ @private
490
+ */
491
+ _extractEmbeddedHasMany(store, key, hash, relationshipMeta) {
492
+ const relationshipHash = hash.data?.relationships?.[key]?.data;
493
+ if (!relationshipHash) {
494
+ return;
495
+ }
496
+ const hasMany = new Array(relationshipHash.length);
497
+ for (let i = 0; i < relationshipHash.length; i++) {
498
+ const item = relationshipHash[i];
499
+ const {
500
+ data,
501
+ included
502
+ } = this._normalizeEmbeddedRelationship(store, relationshipMeta, item);
503
+ hash.included = hash.included || [];
504
+ hash.included.push(data);
505
+ if (included) {
506
+ hash.included = hash.included.concat(included);
507
+ }
508
+ hasMany[i] = {
509
+ id: data.id,
510
+ type: data.type
511
+ };
512
+ if (data.lid) {
513
+ hasMany[i].lid = data.lid;
514
+ }
515
+ }
516
+ const relationship = {
517
+ data: hasMany
518
+ };
519
+ hash.data.relationships[key] = relationship;
520
+ },
521
+ /**
522
+ @private
523
+ */
524
+ _extractEmbeddedBelongsTo(store, key, hash, relationshipMeta) {
525
+ const relationshipHash = hash.data?.relationships?.[key]?.data;
526
+ if (!relationshipHash) {
527
+ return;
528
+ }
529
+ const {
530
+ data,
531
+ included
532
+ } = this._normalizeEmbeddedRelationship(store, relationshipMeta, relationshipHash);
533
+ hash.included = hash.included || [];
534
+ hash.included.push(data);
535
+ if (included) {
536
+ hash.included = hash.included.concat(included);
537
+ }
538
+ const belongsTo = {
539
+ id: data.id,
540
+ type: data.type
541
+ };
542
+ const relationship = {
543
+ data: belongsTo
544
+ };
545
+ if (data.lid) {
546
+ // @ts-expect-error
547
+ belongsTo.lid = data.lid;
548
+ }
549
+ hash.data.relationships[key] = relationship;
550
+ },
551
+ /**
552
+ @private
553
+ */
554
+ _normalizeEmbeddedRelationship(store, relationshipMeta, relationshipHash) {
555
+ let modelName = relationshipMeta.type;
556
+ if (relationshipMeta.options.polymorphic) {
557
+ modelName = relationshipHash.type;
558
+ }
559
+ const modelClass = store.modelFor(modelName);
560
+ const serializer = store.serializerFor(modelName);
561
+ return serializer.normalize(modelClass, relationshipHash, null);
562
+ },
563
+ isEmbeddedRecordsMixin: true
564
+ });
565
+
566
+ /* eslint-disable @typescript-eslint/no-unsafe-argument */
567
+ /* eslint-disable @typescript-eslint/no-unsafe-member-access */
568
+ /* eslint-disable @typescript-eslint/no-unsafe-assignment */
569
+ /* eslint-disable @typescript-eslint/no-unsafe-call */
570
+ /* eslint-disable @typescript-eslint/no-unsafe-return */
571
+
572
+ function makeArray(value) {
573
+ return Array.isArray(value) ? value : [value];
574
+ }
575
+
576
+ /**
577
+ * :::danger
578
+ ⚠️ **This is LEGACY documentation** for a feature that is no longer encouraged to be used.
579
+ If starting a new app or thinking of implementing a new adapter, consider writing a
580
+ {@link Handler} instead to be used with the {@link RequestManager}
581
+ :::
582
+
583
+ Normally, applications will use the `RESTSerializer` by implementing
584
+ the `normalize` method.
585
+
586
+ This allows you to do whatever kind of munging you need and is
587
+ especially useful if your server is inconsistent and you need to
588
+ do munging differently for many different kinds of responses.
589
+
590
+ See the `normalize` documentation for more information.
591
+
592
+ ## Across the Board Normalization
593
+
594
+ There are also a number of hooks that you might find useful to define
595
+ across-the-board rules for your payload. These rules will be useful
596
+ if your server is consistent, or if you're building an adapter for
597
+ an infrastructure service, like Firebase, and want to encode service
598
+ conventions.
599
+
600
+ For example, if all of your keys are underscored and all-caps, but
601
+ otherwise consistent with the names you use in your models, you
602
+ can implement across-the-board rules for how to convert an attribute
603
+ name in your model to a key in your JSON.
604
+
605
+ ```js [app/serializers/application.js]
606
+ import { RESTSerializer } from '@warp-drive/legacy/serializer/rest';
607
+ import { underscore } from '<app-name>/utils/string-utils';
608
+
609
+ export default class ApplicationSerializer extends RESTSerializer {
610
+ keyForAttribute(attr, method) {
611
+ return underscore(attr).toUpperCase();
612
+ }
613
+ }
614
+ ```
615
+
616
+ You can also implement `keyForRelationship`, which takes the name
617
+ of the relationship as the first parameter, the kind of
618
+ relationship (`hasMany` or `belongsTo`) as the second parameter, and
619
+ the method (`serialize` or `deserialize`) as the third parameter.
620
+
621
+ @class RESTSerializer
622
+ @public
623
+ */
624
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
625
+ const RESTSerializer = JSONSerializer.extend({
626
+ /**
627
+ `keyForPolymorphicType` can be used to define a custom key when
628
+ serializing and deserializing a polymorphic type. By default, the
629
+ returned key is `${key}Type`.
630
+ Example
631
+ ```js [app/serializers/post.js]
632
+ import { RESTSerializer } from '@warp-drive/legacy/serializer/rest';
633
+ export default class ApplicationSerializer extends RESTSerializer {
634
+ keyForPolymorphicType(key, relationship) {
635
+ let relationshipKey = this.keyForRelationship(key);
636
+ return 'type-' + relationshipKey;
637
+ }
638
+ }
639
+ ```
640
+ @public
641
+ */
642
+ keyForPolymorphicType(key, type, method) {
643
+ // @ts-expect-error
644
+ const relationshipKey = this.keyForRelationship(key);
645
+ return `${relationshipKey}Type`;
646
+ },
647
+ /**
648
+ Normalizes a part of the JSON payload returned by
649
+ the server. You should override this method, munge the hash
650
+ and call super if you have generic normalization to do.
651
+ It takes the type of the record that is being normalized
652
+ (as a Model class), the property where the hash was
653
+ originally found, and the hash to normalize.
654
+ For example, if you have a payload that looks like this:
655
+ ```js
656
+ {
657
+ "post": {
658
+ "id": 1,
659
+ "title": "Rails is omakase",
660
+ "comments": [ 1, 2 ]
661
+ },
662
+ "comments": [{
663
+ "id": 1,
664
+ "body": "FIRST"
665
+ }, {
666
+ "id": 2,
667
+ "body": "Rails is unagi"
668
+ }]
669
+ }
670
+ ```
671
+ The `normalize` method will be called three times:
672
+ * With `App.Post`, `"posts"` and `{ id: 1, title: "Rails is omakase", ... }`
673
+ * With `App.Comment`, `"comments"` and `{ id: 1, body: "FIRST" }`
674
+ * With `App.Comment`, `"comments"` and `{ id: 2, body: "Rails is unagi" }`
675
+ You can use this method, for example, to normalize underscored keys to camelized
676
+ or other general-purpose normalizations. You will only need to implement
677
+ `normalize` and manipulate the payload as desired.
678
+ For example, if the `IDs` under `"comments"` are provided as `_id` instead of
679
+ `id`, you can specify how to normalize just the comments:
680
+ ```js [app/serializers/post.js]
681
+ import { RESTSerializer } from '@warp-drive/legacy/serializer/rest';
682
+ export default class ApplicationSerializer extends RESTSerializer {
683
+ normalize(model, hash, prop) {
684
+ if (prop === 'comments') {
685
+ hash.id = hash._id;
686
+ delete hash._id;
687
+ }
688
+ return super.normalize(...arguments);
689
+ }
690
+ }
691
+ ```
692
+ On each call to the `normalize` method, the third parameter (`prop`) is always
693
+ one of the keys that were in the original payload or in the result of another
694
+ normalization as `normalizeResponse`.
695
+ @public
696
+ @param {Model} modelClass
697
+ @param {Object} resourceHash
698
+ @param {String} prop
699
+ @return {Object}
700
+ */
701
+
702
+ /**
703
+ Normalizes an array of resource payloads and returns a JSON-API Document
704
+ with primary data and, if any, included data as `{ data, included }`.
705
+ @private
706
+ */
707
+ _normalizeArray(store, modelName, arrayHash, prop) {
708
+ const documentHash = {
709
+ data: [],
710
+ included: []
711
+ };
712
+ const modelClass = store.modelFor(modelName);
713
+ const serializer = store.serializerFor(modelName);
714
+ makeArray(arrayHash).forEach(hash => {
715
+ // @ts-expect-error
716
+ const {
717
+ data,
718
+ included
719
+ } = this._normalizePolymorphicRecord(store, hash, prop, modelClass, serializer);
720
+ // @ts-expect-error
721
+ documentHash.data.push(data);
722
+ if (included) {
723
+ documentHash.included = documentHash.included.concat(included);
724
+ }
725
+ });
726
+ return documentHash;
727
+ },
728
+ _normalizePolymorphicRecord(store, hash, prop, primaryModelClass, primarySerializer) {
729
+ let serializer = primarySerializer;
730
+ let modelClass = primaryModelClass;
731
+ const primaryHasTypeAttribute = primaryModelClass.fields.has('type');
732
+
733
+ // @ts-expect-error all the errors
734
+ if (!primaryHasTypeAttribute && hash.type) {
735
+ // Support polymorphic records in async relationships
736
+ // @ts-expect-error all the errors
737
+ const type = this.modelNameFromPayloadKey(hash.type);
738
+ if (store.schema.hasResource({
739
+ type
740
+ })) {
741
+ serializer = store.serializerFor(type);
742
+ modelClass = store.modelFor(type);
743
+ }
744
+ }
745
+
746
+ // @ts-expect-error all the errors
747
+ return serializer.normalize(modelClass, hash, prop);
748
+ },
749
+ /**
750
+ @private
751
+ */
752
+ _normalizeResponse(store, primaryModelClass, payload, id, requestType, isSingle) {
753
+ const documentHash = {
754
+ data: null,
755
+ included: []
756
+ };
757
+ // @ts-expect-error
758
+ const meta = this.extractMeta(store, primaryModelClass, payload);
759
+ if (meta) {
760
+ documentHash.meta = meta;
761
+ }
762
+ const keys = Object.keys(payload);
763
+ for (let i = 0, length = keys.length; i < length; i++) {
764
+ const prop = keys[i];
765
+ let modelName = prop;
766
+ let forcedSecondary = false;
767
+
768
+ /*
769
+ If you want to provide sideloaded records of the same type that the
770
+ primary data you can do that by prefixing the key with `_`.
771
+ Example
772
+ ```
773
+ {
774
+ users: [
775
+ { id: 1, title: 'Tom', manager: 3 },
776
+ { id: 2, title: 'Yehuda', manager: 3 }
777
+ ],
778
+ _users: [
779
+ { id: 3, title: 'Tomster' }
780
+ ]
781
+ }
782
+ ```
783
+ This forces `_users` to be added to `included` instead of `data`.
784
+ */
785
+ if (prop.charAt(0) === '_') {
786
+ forcedSecondary = true;
787
+ modelName = prop.substr(1);
788
+ }
789
+ const type = this.modelNameFromPayloadKey(modelName);
790
+ if (!store.schema.hasResource({
791
+ type
792
+ })) {
793
+ continue;
794
+ }
795
+
796
+ // eslint-disable-next-line no-var
797
+ var isPrimary = !forcedSecondary && this.isPrimaryType(store, type, primaryModelClass);
798
+ const value = payload[prop];
799
+ if (value === null) {
800
+ continue;
801
+ }
802
+
803
+ /*
804
+ Support primary data as an object instead of an array.
805
+ Example
806
+ ```
807
+ {
808
+ user: { id: 1, title: 'Tom', manager: 3 }
809
+ }
810
+ ```
811
+ */
812
+ if (isPrimary && !Array.isArray(value)) {
813
+ // @ts-expect-error
814
+ const {
815
+ data,
816
+ included
817
+ } = this._normalizePolymorphicRecord(store, value, prop, primaryModelClass, this);
818
+ documentHash.data = data;
819
+ if (included) {
820
+ documentHash.included = documentHash.included.concat(included);
821
+ }
822
+ continue;
823
+ }
824
+ // @ts-expect-error
825
+ const {
826
+ data,
827
+ included
828
+ } = this._normalizeArray(store, type, value, prop);
829
+ if (included) {
830
+ documentHash.included = documentHash.included.concat(included);
831
+ }
832
+ if (isSingle) {
833
+ // eslint-disable-next-line @typescript-eslint/no-loop-func
834
+ data.forEach(resource => {
835
+ /*
836
+ Figures out if this is the primary record or not.
837
+ It's either:
838
+ 1. The record with the same ID as the original request
839
+ 2. If it's a newly created record without an ID, the first record
840
+ in the array
841
+ */
842
+ const isUpdatedRecord = isPrimary && coerceId(resource.id) === id;
843
+ const isFirstCreatedRecord = isPrimary && !id && !documentHash.data;
844
+ if (isFirstCreatedRecord || isUpdatedRecord) {
845
+ documentHash.data = resource;
846
+ } else {
847
+ // @ts-expect-error
848
+ documentHash.included.push(resource);
849
+ }
850
+ });
851
+ } else {
852
+ if (isPrimary) {
853
+ documentHash.data = data;
854
+ } else {
855
+ if (data) {
856
+ documentHash.included = documentHash.included.concat(data);
857
+ }
858
+ }
859
+ }
860
+ }
861
+ return documentHash;
862
+ },
863
+ isPrimaryType(store, modelName, primaryModelClass) {
864
+ return dasherize(modelName) === primaryModelClass.modelName;
865
+ },
866
+ /**
867
+ This method allows you to push a payload containing top-level
868
+ collections of records organized per type.
869
+ ```js
870
+ {
871
+ "posts": [{
872
+ "id": "1",
873
+ "title": "Rails is omakase",
874
+ "author", "1",
875
+ "comments": [ "1" ]
876
+ }],
877
+ "comments": [{
878
+ "id": "1",
879
+ "body": "FIRST"
880
+ }],
881
+ "users": [{
882
+ "id": "1",
883
+ "name": "@d2h"
884
+ }]
885
+ }
886
+ ```
887
+ It will first normalize the payload, so you can use this to push
888
+ in data streaming in from your server structured the same way
889
+ that fetches and saves are structured.
890
+ @public
891
+ */
892
+ pushPayload(store, payload) {
893
+ const documentHash = {
894
+ data: [],
895
+ included: []
896
+ };
897
+ for (const prop in payload) {
898
+ const type = this.modelNameFromPayloadKey(prop);
899
+ if (!store.schema.hasResource({
900
+ type
901
+ })) {
902
+ continue;
903
+ }
904
+ const ModelSchema = store.modelFor(type);
905
+ const typeSerializer = store.serializerFor(ModelSchema.modelName);
906
+ makeArray(payload[prop]).forEach(hash => {
907
+ const {
908
+ data,
909
+ included
910
+ } = typeSerializer.normalize(ModelSchema, hash, prop);
911
+ // @ts-expect-error
912
+ documentHash.data.push(data);
913
+ if (included) {
914
+ documentHash.included = documentHash.included.concat(included);
915
+ }
916
+ });
917
+ }
918
+ store.push(documentHash);
919
+ },
920
+ /**
921
+ This method is used to convert each JSON root key in the payload
922
+ into a modelName that it can use to look up the appropriate model for
923
+ that part of the payload.
924
+ For example, your server may send a model name that does not correspond with
925
+ the name of the model in your app. Let's take a look at an example model,
926
+ and an example payload:
927
+ ```js [app/models/post.js]
928
+ import Model from '@warp-drive/legacy/model';
929
+ export default class Post extends Model {}
930
+ ```
931
+ ```javascript
932
+ {
933
+ "blog/post": {
934
+ "id": "1
935
+ }
936
+ }
937
+ ```
938
+ Ember Data is going to normalize the payload's root key for the modelName. As a result,
939
+ it will try to look up the "blog/post" model. Since we don't have a model called "blog/post"
940
+ (or a file called app/models/blog/post.js in ember-cli), Ember Data will throw an error
941
+ because it cannot find the "blog/post" model.
942
+ Since we want to remove this namespace, we can define a serializer for the application that will
943
+ remove "blog/" from the payload key whenver it's encountered by Ember Data:
944
+ ```js [app/serializers/application.js]
945
+ import { RESTSerializer } from '@warp-drive/legacy/serializer/rest';
946
+ export default class ApplicationSerializer extends RESTSerializer {
947
+ modelNameFromPayloadKey(payloadKey) {
948
+ if (payloadKey === 'blog/post') {
949
+ return super.modelNameFromPayloadKey(payloadKey.replace('blog/', ''));
950
+ } else {
951
+ return super.modelNameFromPayloadKey(payloadKey);
952
+ }
953
+ }
954
+ }
955
+ ```
956
+ After refreshing, Ember Data will appropriately look up the "post" model.
957
+ By default the modelName for a model is its
958
+ name in dasherized form. This means that a payload key like "blogPost" would be
959
+ normalized to "blog-post" when Ember Data looks up the model. Usually, Ember Data
960
+ can use the correct inflection to do this for you. Most of the time, you won't
961
+ need to override `modelNameFromPayloadKey` for this purpose.
962
+ @public
963
+ @return the model's modelName
964
+ */
965
+ modelNameFromPayloadKey(key) {
966
+ return dasherize(singularize(key));
967
+ },
968
+ // SERIALIZE
969
+
970
+ /**
971
+ Called when a record is saved in order to convert the
972
+ record into JSON.
973
+ By default, it creates a JSON object with a key for
974
+ each attribute and belongsTo relationship.
975
+ For example, consider this model:
976
+ ```js [app/models/comment.js]
977
+ import Model, { attr, belongsTo } from '@warp-drive/legacy/model';
978
+ export default class Comment extends Model {
979
+ @attr title
980
+ @attr body
981
+ @belongsTo('user') author
982
+ }
983
+ ```
984
+ The default serialization would create a JSON object like:
985
+ ```js
986
+ {
987
+ "title": "Rails is unagi",
988
+ "body": "Rails? Omakase? O_O",
989
+ "author": 12
990
+ }
991
+ ```
992
+ By default, attributes are passed through as-is, unless
993
+ you specified an attribute type (`attr('date')`). If
994
+ you specify a transform, the JavaScript value will be
995
+ serialized when inserted into the JSON hash.
996
+ By default, belongs-to relationships are converted into
997
+ IDs when inserted into the JSON hash.
998
+ ## IDs
999
+ `serialize` takes an options hash with a single option:
1000
+ `includeId`. If this option is `true`, `serialize` will,
1001
+ by default include the ID in the JSON object it builds.
1002
+ The adapter passes in `includeId: true` when serializing
1003
+ a record for `createRecord`, but not for `updateRecord`.
1004
+ ## Customization
1005
+ Your server may expect a different JSON format than the
1006
+ built-in serialization format.
1007
+ In that case, you can implement `serialize` yourself and
1008
+ return a JSON hash of your choosing.
1009
+ ```js [app/serializers/post.js]
1010
+ import { RESTSerializer } from '@warp-drive/legacy/serializer/rest';
1011
+ export default class ApplicationSerializer extends RESTSerializer {
1012
+ serialize(snapshot, options) {
1013
+ let json = {
1014
+ POST_TTL: snapshot.attr('title'),
1015
+ POST_BDY: snapshot.attr('body'),
1016
+ POST_CMS: snapshot.hasMany('comments', { ids: true })
1017
+ };
1018
+ if (options.includeId) {
1019
+ json.POST_ID_ = snapshot.id;
1020
+ }
1021
+ return json;
1022
+ }
1023
+ }
1024
+ ```
1025
+ ## Customizing an App-Wide Serializer
1026
+ If you want to define a serializer for your entire
1027
+ application, you'll probably want to use `eachAttribute`
1028
+ and `eachRelationship` on the record.
1029
+ ```js [app/serializers/application.js]
1030
+ import { RESTSerializer } from '@warp-drive/legacy/serializer/rest';
1031
+ import { pluralize } from '<app-name>/utils/string-utils';
1032
+ export default class ApplicationSerializer extends RESTSerializer {
1033
+ serialize(snapshot, options) {
1034
+ let json = {};
1035
+ snapshot.eachAttribute(function(name) {
1036
+ json[serverAttributeName(name)] = snapshot.attr(name);
1037
+ });
1038
+ snapshot.eachRelationship(function(name, relationship) {
1039
+ if (relationship.kind === 'hasMany') {
1040
+ json[serverHasManyName(name)] = snapshot.hasMany(name, { ids: true });
1041
+ }
1042
+ });
1043
+ if (options.includeId) {
1044
+ json.ID_ = snapshot.id;
1045
+ }
1046
+ return json;
1047
+ }
1048
+ }
1049
+ function serverAttributeName(attribute) {
1050
+ return attribute.underscore().toUpperCase();
1051
+ }
1052
+ function serverHasManyName(name) {
1053
+ return serverAttributeName(singularize(name)) + "_IDS";
1054
+ }
1055
+ ```
1056
+ This serializer will generate JSON that looks like this:
1057
+ ```js
1058
+ {
1059
+ "TITLE": "Rails is omakase",
1060
+ "BODY": "Yep. Omakase.",
1061
+ "COMMENT_IDS": [ 1, 2, 3 ]
1062
+ }
1063
+ ```
1064
+ ## Tweaking the Default JSON
1065
+ If you just want to do some small tweaks on the default JSON,
1066
+ you can call super first and make the tweaks on the returned
1067
+ JSON.
1068
+ ```js [app/serializers/post.js]
1069
+ import { RESTSerializer } from '@warp-drive/legacy/serializer/rest';
1070
+ export default class ApplicationSerializer extends RESTSerializer {
1071
+ serialize(snapshot, options) {
1072
+ let json = super.serialize(snapshot, options);
1073
+ json.subject = json.title;
1074
+ delete json.title;
1075
+ return json;
1076
+ }
1077
+ }
1078
+ ```
1079
+ @public
1080
+ */
1081
+ serialize(snapshot, options) {
1082
+ // @ts-expect-error
1083
+ return this._super(...arguments);
1084
+ },
1085
+ /**
1086
+ You can use this method to customize the root keys serialized into the JSON.
1087
+ The hash property should be modified by reference (possibly using something like _.extend)
1088
+ By default the REST Serializer sends the modelName of a model, which is a camelized
1089
+ version of the name.
1090
+ For example, your server may expect underscored root objects.
1091
+ ```js [app/serializers/application.js]
1092
+ import { RESTSerializer } from '@warp-drive/legacy/serializer/rest';
1093
+ import { underscore } from '<app-name>/utils/string-utils';
1094
+ export default class ApplicationSerializer extends RESTSerializer {
1095
+ serializeIntoHash(data, type, record, options) {
1096
+ let root = underscore(type.modelName);
1097
+ data[root] = this.serialize(record, options);
1098
+ }
1099
+ }
1100
+ ```
1101
+ @public
1102
+ */
1103
+ serializeIntoHash(hash, typeClass, snapshot, options) {
1104
+ const normalizedRootKey = this.payloadKeyFromModelName(typeClass.modelName);
1105
+ hash[normalizedRootKey] = this.serialize(snapshot, options);
1106
+ },
1107
+ /**
1108
+ You can use `payloadKeyFromModelName` to override the root key for an outgoing
1109
+ request. By default, the RESTSerializer returns a camelized version of the
1110
+ model's name.
1111
+ For a model called TacoParty, its `modelName` would be the string `taco-party`. The RESTSerializer
1112
+ will send it to the server with `tacoParty` as the root key in the JSON payload:
1113
+ ```js
1114
+ {
1115
+ "tacoParty": {
1116
+ "id": "1",
1117
+ "location": "Matthew Beale's House"
1118
+ }
1119
+ }
1120
+ ```
1121
+ For example, your server may expect dasherized root objects:
1122
+ ```js [app/serializers/application.js]
1123
+ import { RESTSerializer } from '@warp-drive/legacy/serializer/rest';
1124
+ import { dasherize } from '<app-name>/utils/string-utils';
1125
+ export default class ApplicationSerializer extends RESTSerializer {
1126
+ payloadKeyFromModelName(modelName) {
1127
+ return dasherize(modelName);
1128
+ }
1129
+ }
1130
+ ```
1131
+ Given a `TacoParty` model, calling `save` on it would produce an outgoing
1132
+ request like:
1133
+ ```js
1134
+ {
1135
+ "taco-party": {
1136
+ "id": "1",
1137
+ "location": "Matthew Beale's House"
1138
+ }
1139
+ }
1140
+ ```
1141
+ @public
1142
+ */
1143
+ payloadKeyFromModelName(modelName) {
1144
+ return camelize(modelName);
1145
+ },
1146
+ /**
1147
+ You can use this method to customize how polymorphic objects are serialized.
1148
+ By default the REST Serializer creates the key by appending `Type` to
1149
+ the attribute and value from the model's camelcased model name.
1150
+ @public
1151
+ */
1152
+ serializePolymorphicType(snapshot, json, relationship) {
1153
+ const name = relationship.name;
1154
+ const typeKey = this.keyForPolymorphicType(name, relationship.type, 'serialize');
1155
+ const belongsTo = snapshot.belongsTo(name);
1156
+ if (!belongsTo) {
1157
+ json[typeKey] = null;
1158
+ } else {
1159
+ // @ts-expect-error
1160
+ json[typeKey] = camelize(belongsTo.modelName);
1161
+ }
1162
+ },
1163
+ /**
1164
+ You can use this method to customize how a polymorphic relationship should
1165
+ be extracted.
1166
+ @public
1167
+ @param {Object} relationshipType
1168
+ @param {Object} relationshipHash
1169
+ @param {Object} relationshipOptions
1170
+ @return {Object}
1171
+ */
1172
+ extractPolymorphicRelationship(relationshipType, relationshipHash, relationshipOptions) {
1173
+ // @ts-expect-error
1174
+ const {
1175
+ key,
1176
+ resourceHash,
1177
+ relationshipMeta
1178
+ } = relationshipOptions;
1179
+
1180
+ // A polymorphic belongsTo relationship can be present in the payload
1181
+ // either in the form where the `id` and the `type` are given:
1182
+ //
1183
+ // {
1184
+ // message: { id: 1, type: 'post' }
1185
+ // }
1186
+ //
1187
+ // or by the `id` and a `<relationship>Type` attribute:
1188
+ //
1189
+ // {
1190
+ // message: 1,
1191
+ // messageType: 'post'
1192
+ // }
1193
+ //
1194
+ // The next code checks if the latter case is present and returns the
1195
+ // corresponding JSON-API representation. The former case is handled within
1196
+ // the base class JSONSerializer.
1197
+ const isPolymorphic = relationshipMeta.options.polymorphic;
1198
+ const typeProperty = this.keyForPolymorphicType(key, relationshipType, 'deserialize');
1199
+ if (isPolymorphic && resourceHash[typeProperty] !== undefined && typeof relationshipHash !== 'object') {
1200
+ const type = this.modelNameFromPayloadKey(resourceHash[typeProperty]);
1201
+ return {
1202
+ id: coerceId(relationshipHash),
1203
+ type: type
1204
+ };
1205
+ }
1206
+ // @ts-expect-error
1207
+ return this._super(...arguments);
1208
+ }
1209
+ });
1210
+ export { EmbeddedRecordsMixin, RESTSerializer };