@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,649 @@
1
+ import { dasherize, pluralize, singularize } from '@warp-drive/utilities/string';
2
+ import { J as JSONSerializer } from "../json-Cu1LNgmQ.js";
3
+
4
+ /* eslint-disable @typescript-eslint/no-unsafe-return */
5
+ /* eslint-disable @typescript-eslint/no-unsafe-assignment */
6
+ /* eslint-disable @typescript-eslint/no-unsafe-argument */
7
+ /* eslint-disable @typescript-eslint/no-unsafe-member-access */
8
+ /* eslint-disable @typescript-eslint/no-unsafe-call */
9
+
10
+ /**
11
+ * :::danger
12
+ ⚠️ <strong>This is LEGACY documentation</strong> for a feature that is no longer encouraged to be used.
13
+ If starting a new app or thinking of implementing a new adapter, consider writing a
14
+ {@link Handler} instead to be used with the {@link RequestManager}
15
+ :::
16
+
17
+ In WarpDrive a Serializer is used to serialize and deserialize
18
+ records when they are transferred in and out of an external source.
19
+ This process involves normalizing property names, transforming
20
+ attribute values and serializing relationships.
21
+
22
+ `JSONAPISerializer` supports the http://jsonapi.org/ spec, though
23
+ even compliant {json:api} servers may find writing an application
24
+ specific serializer better suited to their needs and more performant.
25
+
26
+ This serializer normalizes a JSON API payload that looks like:
27
+
28
+ ```js [app/models/player.js]
29
+ import Model, { attr, belongsTo } from '@warp-drive/legacy/model';
30
+
31
+ export default class Player extends Model {
32
+ @attr('string') name;
33
+ @attr('string') skill;
34
+ @attr('number') gamesPlayed;
35
+ @belongsTo('club') club;
36
+ }
37
+ ```
38
+
39
+ ```js [app/models/club.js]
40
+ import Model, { attr, hasMany } from '@warp-drive/legacy/model';
41
+
42
+ export default class Club extends Model {
43
+ @attr('string') name;
44
+ @attr('string') location;
45
+ @hasMany('player') players;
46
+ }
47
+ ```
48
+
49
+ ```js
50
+ {
51
+ "data": [
52
+ {
53
+ "attributes": {
54
+ "name": "Benfica",
55
+ "location": "Portugal"
56
+ },
57
+ "id": "1",
58
+ "relationships": {
59
+ "players": {
60
+ "data": [
61
+ {
62
+ "id": "3",
63
+ "type": "players"
64
+ }
65
+ ]
66
+ }
67
+ },
68
+ "type": "clubs"
69
+ }
70
+ ],
71
+ "included": [
72
+ {
73
+ "attributes": {
74
+ "name": "Eusebio Silva Ferreira",
75
+ "skill": "Rocket shot",
76
+ "games-played": 431
77
+ },
78
+ "id": "3",
79
+ "relationships": {
80
+ "club": {
81
+ "data": {
82
+ "id": "1",
83
+ "type": "clubs"
84
+ }
85
+ }
86
+ },
87
+ "type": "players"
88
+ }
89
+ ]
90
+ }
91
+ ```
92
+
93
+ to the format that the JSONAPICache expects.
94
+
95
+ ### Customizing meta
96
+
97
+ Since a JSON API Document can have meta defined in multiple locations you can
98
+ use the specific serializer hooks if you need to customize the meta.
99
+
100
+ One scenario would be to camelCase the meta keys of your payload. The example
101
+ below shows how this could be done using `normalizeArrayResponse` and
102
+ `extractRelationship`.
103
+
104
+ ```js [app/serializers/application.js]
105
+ import JSONAPISerializer from '@warp-drive/legacy/serializer/json-api';
106
+
107
+ export default class ApplicationSerializer extends JSONAPISerializer {
108
+ normalizeArrayResponse(store, primaryModelClass, payload, id, requestType) {
109
+ let normalizedDocument = super.normalizeArrayResponse(...arguments);
110
+
111
+ // Customize document meta
112
+ normalizedDocument.meta = camelCaseKeys(normalizedDocument.meta);
113
+
114
+ return normalizedDocument;
115
+ }
116
+
117
+ extractRelationship(relationshipHash) {
118
+ let normalizedRelationship = super.extractRelationship(...arguments);
119
+
120
+ // Customize relationship meta
121
+ normalizedRelationship.meta = camelCaseKeys(normalizedRelationship.meta);
122
+
123
+ return normalizedRelationship;
124
+ }
125
+ }
126
+ ```
127
+
128
+ @since 1.13.0
129
+ @class JSONAPISerializer
130
+ @public
131
+ */
132
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
133
+ const JSONAPISerializer = JSONSerializer.extend({
134
+ /**
135
+ @private
136
+ */
137
+ _normalizeDocumentHelper(documentHash) {
138
+ if (Array.isArray(documentHash.data)) {
139
+ const ret = new Array(documentHash.data.length);
140
+ for (let i = 0; i < documentHash.data.length; i++) {
141
+ const data = documentHash.data[i];
142
+ ret[i] = this._normalizeResourceHelper(data);
143
+ }
144
+ documentHash.data = ret;
145
+ } else if (documentHash.data && typeof documentHash.data === 'object') {
146
+ documentHash.data = this._normalizeResourceHelper(documentHash.data);
147
+ }
148
+ if (Array.isArray(documentHash.included)) {
149
+ const ret = [];
150
+ for (let i = 0; i < documentHash.included.length; i++) {
151
+ const included = documentHash.included[i];
152
+ const normalized = this._normalizeResourceHelper(included);
153
+ if (normalized !== null) {
154
+ // @ts-expect-error untyped
155
+ // can be null when unknown type is encountered
156
+ ret.push(normalized);
157
+ }
158
+ }
159
+ documentHash.included = ret;
160
+ }
161
+ return documentHash;
162
+ },
163
+ /**
164
+ @private
165
+ */
166
+ _normalizeRelationshipDataHelper(relationshipDataHash) {
167
+ relationshipDataHash.type = this.modelNameFromPayloadKey(relationshipDataHash.type);
168
+ return relationshipDataHash;
169
+ },
170
+ /**
171
+ @private
172
+ */
173
+ _normalizeResourceHelper(resourceHash) {
174
+ // @ts-expect-error untyped
175
+ (test => {
176
+ if (!test) {
177
+ throw new Error(this.warnMessageForUndefinedType());
178
+ }
179
+ })(resourceHash.type);
180
+ const type = this.modelNameFromPayloadKey(resourceHash.type);
181
+
182
+ // @ts-expect-error store is dynamically added
183
+ if (!this.store.schema.hasResource({
184
+ type
185
+ })) {
186
+ {
187
+ // @ts-expect-error untyped
188
+ console.warn(this.warnMessageNoModelForType(type, resourceHash.type, 'modelNameFromPayloadKey'), false, {
189
+ id: 'ds.serializer.model-for-type-missing'
190
+ });
191
+ }
192
+ return null;
193
+ }
194
+
195
+ // @ts-expect-error store is dynamically added
196
+ const modelClass = this.store.modelFor(type);
197
+ // @ts-expect-error store is dynamically added
198
+ const serializer = this.store.serializerFor(type);
199
+ const {
200
+ data
201
+ } = serializer.normalize(modelClass, resourceHash);
202
+ return data;
203
+ },
204
+ /**
205
+ Normalize some data and push it into the store.
206
+ @public
207
+ */
208
+ pushPayload(store, payload) {
209
+ const normalizedPayload = this._normalizeDocumentHelper(payload);
210
+ store.push(normalizedPayload);
211
+ },
212
+ /**
213
+ @return A {json:api} Document
214
+ @private
215
+ */
216
+ _normalizeResponse(store, primaryModelClass, payload, id, requestType, isSingle) {
217
+ const normalizedPayload = this._normalizeDocumentHelper(payload);
218
+ return normalizedPayload;
219
+ },
220
+ normalizeQueryRecordResponse() {
221
+ // @ts-expect-error untyped
222
+ const normalized = this._super(...arguments);
223
+ (test => {
224
+ if (!test) {
225
+ throw new Error('Expected the primary data returned by the serializer for a `queryRecord` response to be a single object but instead it was an array.');
226
+ }
227
+ })(!Array.isArray(normalized.data));
228
+ return normalized;
229
+ },
230
+ extractAttributes(modelClass, resourceHash) {
231
+ const attributes = {};
232
+ if (resourceHash.attributes) {
233
+ modelClass.eachAttribute(key => {
234
+ const attributeKey = this.keyForAttribute(key, 'deserialize');
235
+ if (resourceHash.attributes[attributeKey] !== undefined) {
236
+ attributes[key] = resourceHash.attributes[attributeKey];
237
+ }
238
+ {
239
+ if (resourceHash.attributes[attributeKey] === undefined && resourceHash.attributes[key] !== undefined) {
240
+ (test => {
241
+ {
242
+ throw new Error(`Your payload for '${modelClass.modelName}' contains '${key}', but your serializer is setup to look for '${attributeKey}'. This is most likely because Ember Data's JSON API serializer dasherizes attribute keys by default. You should subclass JSONAPISerializer and implement 'keyForAttribute(key) { return key; }' to prevent Ember Data from customizing your attribute keys.`);
243
+ }
244
+ })();
245
+ }
246
+ }
247
+ });
248
+ }
249
+ return attributes;
250
+ },
251
+ /**
252
+ Returns a relationship formatted as a JSON-API "relationship object".
253
+ http://jsonapi.org/format/#document-resource-object-relationships
254
+ @public
255
+ */
256
+ extractRelationship(relationshipHash) {
257
+ if (Array.isArray(relationshipHash.data)) {
258
+ const ret = new Array(relationshipHash.data.length);
259
+ for (let i = 0; i < relationshipHash.data.length; i++) {
260
+ const data = relationshipHash.data[i];
261
+ ret[i] = this._normalizeRelationshipDataHelper(data);
262
+ }
263
+ relationshipHash.data = ret;
264
+ } else if (relationshipHash.data && typeof relationshipHash.data === 'object') {
265
+ relationshipHash.data = this._normalizeRelationshipDataHelper(relationshipHash.data);
266
+ }
267
+ return relationshipHash;
268
+ },
269
+ /**
270
+ Returns the resource's relationships formatted as a JSON-API "relationships object".
271
+ http://jsonapi.org/format/#document-resource-object-relationships
272
+ @public
273
+ */
274
+ extractRelationships(modelClass, resourceHash) {
275
+ const relationships = {};
276
+ if (resourceHash.relationships) {
277
+ modelClass.eachRelationship((key, relationshipMeta) => {
278
+ const relationshipKey = this.keyForRelationship(key, relationshipMeta.kind, 'deserialize');
279
+ if (resourceHash.relationships[relationshipKey] !== undefined) {
280
+ const relationshipHash = resourceHash.relationships[relationshipKey];
281
+ relationships[key] = this.extractRelationship(relationshipHash);
282
+ }
283
+ {
284
+ if (resourceHash.relationships[relationshipKey] === undefined && resourceHash.relationships[key] !== undefined) {
285
+ (test => {
286
+ {
287
+ throw new Error(`Your payload for '${modelClass.modelName}' contains '${key}', but your serializer is setup to look for '${relationshipKey}'. This is most likely because Ember Data's JSON API serializer dasherizes relationship keys by default. You should subclass JSONAPISerializer and implement 'keyForRelationship(key) { return key; }' to prevent Ember Data from customizing your relationship keys.`);
288
+ }
289
+ })();
290
+ }
291
+ }
292
+ });
293
+ }
294
+ return relationships;
295
+ },
296
+ /**
297
+ @private
298
+ */
299
+ _extractType(modelClass, resourceHash) {
300
+ return this.modelNameFromPayloadKey(resourceHash.type);
301
+ },
302
+ /**
303
+ Dasherizes and singularizes the model name in the payload to match
304
+ the common convention for model names.
305
+ For example the key `posts` would be converted to `post` and the
306
+ key `studentAssesments` would be converted to `student-assesment`.
307
+ @public
308
+ @return the model's modelName
309
+ */
310
+ modelNameFromPayloadKey(key) {
311
+ return dasherize(singularize(key));
312
+ },
313
+ /**
314
+ Converts the model name to a pluralized version of the model name.
315
+ For example `post` would be converted to `posts` and
316
+ `student-assesment` would be converted to `student-assesments`.
317
+ @public
318
+ */
319
+ payloadKeyFromModelName(modelName) {
320
+ return pluralize(modelName);
321
+ },
322
+ normalize(modelClass, resourceHash) {
323
+ if (resourceHash.attributes) {
324
+ // @ts-expect-error untyped
325
+ this.normalizeUsingDeclaredMapping(modelClass, resourceHash.attributes);
326
+ }
327
+ if (resourceHash.relationships) {
328
+ // @ts-expect-error untyped
329
+ this.normalizeUsingDeclaredMapping(modelClass, resourceHash.relationships);
330
+ }
331
+ const data = {
332
+ // @ts-expect-error untyped
333
+ id: this.extractId(modelClass, resourceHash),
334
+ type: this._extractType(modelClass, resourceHash),
335
+ attributes: this.extractAttributes(modelClass, resourceHash),
336
+ relationships: this.extractRelationships(modelClass, resourceHash)
337
+ };
338
+ if (resourceHash.lid) {
339
+ // @ts-expect-error untyped
340
+ data.lid = resourceHash.lid;
341
+ }
342
+
343
+ // @ts-expect-error untyped
344
+ this.applyTransforms(modelClass, data.attributes);
345
+ return {
346
+ data
347
+ };
348
+ },
349
+ /**
350
+ `keyForAttribute` can be used to define rules for how to convert an
351
+ attribute name in your model to a key in your JSON.
352
+ By default `JSONAPISerializer` follows the format used on the examples of
353
+ http://jsonapi.org/format and uses dashes as the word separator in the JSON
354
+ attribute keys.
355
+ This behaviour can be easily customized by extending this method.
356
+ Example
357
+ ```js [app/serializers/application.js]
358
+ import JSONAPISerializer from '@warp-drive/legacy/serializer/json-api';
359
+ import { dasherize } from '<app-name>/utils/string-utils';
360
+ export default class ApplicationSerializer extends JSONAPISerializer {
361
+ keyForAttribute(attr, method) {
362
+ return dasherize(attr).toUpperCase();
363
+ }
364
+ }
365
+ ```
366
+ @public
367
+ @return normalized key
368
+ */
369
+ keyForAttribute(key, method) {
370
+ return dasherize(key);
371
+ },
372
+ /**
373
+ `keyForRelationship` can be used to define a custom key when
374
+ serializing and deserializing relationship properties.
375
+ By default `JSONAPISerializer` follows the format used on the examples of
376
+ http://jsonapi.org/format and uses dashes as word separators in
377
+ relationship properties.
378
+ This behaviour can be easily customized by extending this method.
379
+ Example
380
+ ```js [app/serializers/post.js]
381
+ import JSONAPISerializer from '@warp-drive/legacy/serializer/json-api';
382
+ import { underscore } from '<app-name>/utils/string-utils';
383
+ export default class ApplicationSerializer extends JSONAPISerializer {
384
+ keyForRelationship(key, relationship, method) {
385
+ return underscore(key);
386
+ }
387
+ }
388
+ ```
389
+ @public
390
+ @return the normalized key
391
+ */
392
+ keyForRelationship(key, typeClass, method) {
393
+ return dasherize(key);
394
+ },
395
+ /**
396
+ Called when a record is saved in order to convert the
397
+ record into JSON.
398
+ For example, consider this model:
399
+ ```js [app/models/comment.js]
400
+ import Model, { attr, belongsTo } from '@warp-drive/legacy/model';
401
+ export default class CommentModel extends Model {
402
+ @attr title;
403
+ @attr body;
404
+ @belongsTo('user', { async: false, inverse: null })
405
+ author;
406
+ }
407
+ ```
408
+ The default serialization would create a JSON-API resource object like:
409
+ ```javascript
410
+ {
411
+ "data": {
412
+ "type": "comments",
413
+ "attributes": {
414
+ "title": "Rails is unagi",
415
+ "body": "Rails? Omakase? O_O",
416
+ },
417
+ "relationships": {
418
+ "author": {
419
+ "data": {
420
+ "id": "12",
421
+ "type": "users"
422
+ }
423
+ }
424
+ }
425
+ }
426
+ }
427
+ ```
428
+ By default, attributes are passed through as-is, unless
429
+ you specified an attribute type (`attr('date')`). If
430
+ you specify a transform, the JavaScript value will be
431
+ serialized when inserted into the attributes hash.
432
+ Belongs-to relationships are converted into JSON-API
433
+ resource identifier objects.
434
+ ## IDs
435
+ `serialize` takes an options hash with a single option:
436
+ `includeId`. If this option is `true`, `serialize` will,
437
+ by default include the ID in the JSON object it builds.
438
+ The JSONAPIAdapter passes in `includeId: true` when serializing a record
439
+ for `createRecord` or `updateRecord`.
440
+ ## Customization
441
+ Your server may expect data in a different format than the
442
+ built-in serialization format.
443
+ In that case, you can implement `serialize` yourself and
444
+ return data formatted to match your API's expectations, or override
445
+ the invoked adapter method and do the serialization in the adapter directly
446
+ by using the provided snapshot.
447
+ If your API's format differs greatly from the JSON:API spec, you should
448
+ consider authoring your own adapter and serializer instead of extending
449
+ this class.
450
+ ```js [app/serializers/post.js]
451
+ import JSONAPISerializer from '@warp-drive/legacy/serializer/json-api';
452
+ export default class PostSerializer extends JSONAPISerializer {
453
+ serialize(snapshot, options) {
454
+ let json = {
455
+ POST_TTL: snapshot.attr('title'),
456
+ POST_BDY: snapshot.attr('body'),
457
+ POST_CMS: snapshot.hasMany('comments', { ids: true })
458
+ };
459
+ if (options.includeId) {
460
+ json.POST_ID_ = snapshot.id;
461
+ }
462
+ return json;
463
+ }
464
+ }
465
+ ```
466
+ ## Customizing an App-Wide Serializer
467
+ If you want to define a serializer for your entire
468
+ application, you'll probably want to use `eachAttribute`
469
+ and `eachRelationship` on the record.
470
+ ```js [app/serializers/application.js]
471
+ import JSONAPISerializer from '@warp-drive/legacy/serializer/json-api';
472
+ import { underscore, singularize } from '<app-name>/utils/string-utils';
473
+ export default class ApplicationSerializer extends JSONAPISerializer {
474
+ serialize(snapshot, options) {
475
+ let json = {};
476
+ snapshot.eachAttribute((name) => {
477
+ json[serverAttributeName(name)] = snapshot.attr(name);
478
+ });
479
+ snapshot.eachRelationship((name, relationship) => {
480
+ if (relationship.kind === 'hasMany') {
481
+ json[serverHasManyName(name)] = snapshot.hasMany(name, { ids: true });
482
+ }
483
+ });
484
+ if (options.includeId) {
485
+ json.ID_ = snapshot.id;
486
+ }
487
+ return json;
488
+ }
489
+ }
490
+ function serverAttributeName(attribute) {
491
+ return underscore(attribute).toUpperCase();
492
+ }
493
+ function serverHasManyName(name) {
494
+ return serverAttributeName(singularize(name)) + '_IDS';
495
+ }
496
+ ```
497
+ This serializer will generate JSON that looks like this:
498
+ ```javascript
499
+ {
500
+ "TITLE": "Rails is omakase",
501
+ "BODY": "Yep. Omakase.",
502
+ "COMMENT_IDS": [ "1", "2", "3" ]
503
+ }
504
+ ```
505
+ ## Tweaking the Default Formatting
506
+ If you just want to do some small tweaks on the default JSON:API formatted response,
507
+ you can call `super.serialize` first and make the tweaks
508
+ on the returned object.
509
+ ```js [app/serializers/post.js]
510
+ import JSONAPISerializer from '@warp-drive/legacy/serializer/json-api';
511
+ export default class PostSerializer extends JSONAPISerializer {
512
+ serialize(snapshot, options) {
513
+ let json = super.serialize(...arguments);
514
+ json.data.attributes.subject = json.data.attributes.title;
515
+ delete json.data.attributes.title;
516
+ return json;
517
+ }
518
+ }
519
+ ```
520
+ @public
521
+ */
522
+ serialize(snapshot, options) {
523
+ // @ts-expect-error untyped
524
+ const data = this._super(...arguments);
525
+ data.type = this.payloadKeyFromModelName(snapshot.modelName);
526
+ return {
527
+ data
528
+ };
529
+ },
530
+ serializeAttribute(snapshot, json, key, attribute) {
531
+ const type = attribute.type;
532
+
533
+ // @ts-expect-error untyped
534
+ if (this._canSerialize(key)) {
535
+ json.attributes = json.attributes || {};
536
+ let value = snapshot.attr(key);
537
+ if (type) {
538
+ // @ts-expect-error untyped
539
+ const transform = this.transformFor(type);
540
+ value = transform.serialize(value, attribute.options);
541
+ }
542
+
543
+ // @ts-expect-error store is dynamically added
544
+ const schema = this.store.modelFor(snapshot.modelName);
545
+ // @ts-expect-error untyped
546
+ let payloadKey = this._getMappedKey(key, schema);
547
+ if (payloadKey === key) {
548
+ payloadKey = this.keyForAttribute(key, 'serialize');
549
+ }
550
+ json.attributes[payloadKey] = value;
551
+ }
552
+ },
553
+ serializeBelongsTo(snapshot, json, relationship) {
554
+ const name = relationship.name;
555
+
556
+ // @ts-expect-error untyped
557
+ if (this._canSerialize(name)) {
558
+ const belongsTo = snapshot.belongsTo(name);
559
+ // @ts-expect-error not narrowed
560
+ const belongsToIsNotNew = belongsTo && !belongsTo.isNew;
561
+ if (belongsTo === null || belongsToIsNotNew) {
562
+ json.relationships = json.relationships || {};
563
+
564
+ // @ts-expect-error store is dynamically added
565
+ const schema = this.store.modelFor(snapshot.modelName);
566
+ // @ts-expect-error untyped
567
+ let payloadKey = this._getMappedKey(name, schema);
568
+ if (payloadKey === name) {
569
+ payloadKey = this.keyForRelationship(name, 'belongsTo', 'serialize');
570
+ }
571
+ let data = null;
572
+ if (belongsTo) {
573
+ // @ts-expect-error not narrowed
574
+ const payloadType = this.payloadKeyFromModelName(belongsTo.modelName);
575
+
576
+ // @ts-expect-error untyped
577
+ data = {
578
+ type: payloadType,
579
+ // @ts-expect-error not narrowed
580
+ id: belongsTo.id
581
+ };
582
+ }
583
+ json.relationships[payloadKey] = {
584
+ data
585
+ };
586
+ }
587
+ }
588
+ },
589
+ serializeHasMany(snapshot, json, relationship) {
590
+ const name = relationship.name;
591
+
592
+ // @ts-expect-error untyped
593
+ if (this.shouldSerializeHasMany(snapshot, name, relationship)) {
594
+ const hasMany = snapshot.hasMany(name);
595
+ if (hasMany !== undefined) {
596
+ json.relationships = json.relationships || {};
597
+
598
+ // @ts-expect-error store is dynamically added
599
+ const schema = this.store.modelFor(snapshot.modelName);
600
+ // @ts-expect-error untyped
601
+ let payloadKey = this._getMappedKey(name, schema);
602
+ if (payloadKey === name && this.keyForRelationship) {
603
+ payloadKey = this.keyForRelationship(name, 'hasMany', 'serialize');
604
+ }
605
+
606
+ // only serialize has many relationships that are not new
607
+ // @ts-expect-error not narrowed
608
+ const nonNewHasMany = hasMany.filter(item => !item.isNew);
609
+ const data = new Array(nonNewHasMany.length);
610
+ for (let i = 0; i < nonNewHasMany.length; i++) {
611
+ const item = hasMany[i];
612
+ // @ts-expect-error not narrowed
613
+ const payloadType = this.payloadKeyFromModelName(item.modelName);
614
+ data[i] = {
615
+ type: payloadType,
616
+ // @ts-expect-error not narrowed
617
+ id: item.id
618
+ };
619
+ }
620
+ json.relationships[payloadKey] = {
621
+ data
622
+ };
623
+ }
624
+ }
625
+ }
626
+ });
627
+ {
628
+ JSONAPISerializer.reopen({
629
+ init(...args) {
630
+ this._super(...args);
631
+ (test => {
632
+ if (!test) {
633
+ throw new Error(`You've used the EmbeddedRecordsMixin in ${this.toString()} which is not fully compatible with the JSON:API specification. Please confirm that this works for your specific API and add \`this.isEmbeddedRecordsMixinCompatible = true\` to your serializer.`);
634
+ }
635
+ })(!this.isEmbeddedRecordsMixin || this.isEmbeddedRecordsMixinCompatible === true);
636
+ const constructor = this.constructor;
637
+ console.warn(`You've defined 'extractMeta' in ${constructor.toString()} which is not used for serializers extending JSONAPISerializer. Read more at https://api.emberjs.com/ember-data/release/classes/JSONAPISerializer on how to customize meta when using JSON API.`, this.extractMeta === JSONSerializer.prototype.extractMeta, {
638
+ id: 'ds.serializer.json-api.extractMeta'
639
+ });
640
+ },
641
+ warnMessageForUndefinedType() {
642
+ return 'Encountered a resource object with an undefined type (resolved resource using ' + this.constructor.toString() + ')';
643
+ },
644
+ warnMessageNoModelForType(modelName, originalType, usedLookup) {
645
+ return `Encountered a resource object with type "${originalType}", but no model was found for model name "${modelName}" (resolved model name using '${this.constructor.toString()}.${usedLookup}("${originalType}")').`;
646
+ }
647
+ });
648
+ }
649
+ export { JSONAPISerializer };
@@ -0,0 +1,4 @@
1
+ import '@ember/application';
2
+ import '@warp-drive/utilities/string';
3
+ import '../serializer.js';
4
+ export { J as JSONSerializer } from "../json-Cu1LNgmQ.js";