@warp-drive/legacy 5.9.0-alpha.2 → 5.9.0-alpha.21
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.
- package/README.md +6 -0
- package/declarations/adapter/-private/build-url-mixin.d.ts +156 -0
- package/declarations/adapter/error.d.ts +385 -169
- package/declarations/adapter/json-api.d.ts +12 -1
- package/declarations/adapter/rest.d.ts +74 -0
- package/declarations/adapter.d.ts +6 -0
- package/declarations/compat/builders/find-all.d.ts +0 -1
- package/declarations/compat/extensions.d.ts +40 -0
- package/declarations/compat/legacy-network-handler/legacy-network-handler.d.ts +7 -0
- package/declarations/compat/legacy-network-handler/minimum-adapter-interface.d.ts +4 -0
- package/declarations/compat/legacy-network-handler/minimum-serializer-interface.d.ts +7 -0
- package/declarations/compat/utils.d.ts +11 -0
- package/declarations/compat.d.ts +32 -0
- package/declarations/index.d.ts +142 -0
- package/declarations/model/-private/attr.d.ts +21 -0
- package/declarations/model/-private/belongs-to.d.ts +21 -0
- package/declarations/model/-private/hooks.d.ts +26 -0
- package/declarations/model/-private/model.d.ts +55 -4
- package/declarations/model/-private/promise-many-array.d.ts +25 -1
- package/declarations/model/-private/schema-provider.d.ts +11 -1
- package/declarations/model/migration-support.d.ts +31 -5
- package/declarations/model-fragments/extensions/fragment-array.d.ts +38 -0
- package/declarations/model-fragments/extensions/fragment.d.ts +35 -0
- package/declarations/model-fragments/hooks/model-for.d.ts +7 -0
- package/declarations/model-fragments/index.d.ts +8 -0
- package/declarations/model-fragments/instance-initializers/fragment-extensions.d.ts +6 -0
- package/declarations/model-fragments/utilities/with-array-defaults.d.ts +30 -0
- package/declarations/model-fragments/utilities/with-fragment-array-defaults.d.ts +18 -0
- package/declarations/model-fragments/utilities/with-fragment-defaults.d.ts +15 -0
- package/declarations/model-fragments/utilities/with-legacy.d.ts +8 -0
- package/declarations/serializer/-private/transforms/boolean.d.ts +13 -0
- package/declarations/serializer/-private/transforms/date.d.ts +15 -1
- package/declarations/serializer/-private/transforms/number.d.ts +14 -1
- package/declarations/serializer/-private/transforms/string.d.ts +14 -1
- package/declarations/serializer/-private/utils.d.ts +24 -0
- package/declarations/serializer/json-api.d.ts +1 -1
- package/declarations/serializer.d.ts +4 -6
- package/declarations/store/-private.d.ts +2 -2
- package/declarations/store.d.ts +7 -0
- package/dist/adapter/error.js +386 -241
- package/dist/adapter/json-api.js +12 -0
- package/dist/adapter/rest.js +39 -3
- package/dist/adapter.js +23 -26
- package/dist/compat/builders.js +0 -1
- package/dist/compat/extensions.js +80 -3
- package/dist/compat/utils.js +14 -0
- package/dist/compat.js +17 -0
- package/dist/{errors-Cz5KrzBk.js → errors-DZKA206g.js} +24 -1
- package/dist/{hooks-D6diaM34.js → hooks-BvOqJBei.js} +33 -2
- package/dist/index.js +168 -13
- package/dist/{json-ChdEfB0X.js → json-DU8m1pGf.js} +83 -6
- package/dist/model/-private.js +1 -1
- package/dist/model/migration-support.js +15 -2
- package/dist/{unpkg/dev-deprecated/model-for-CqXsIKws.js → model-for-CXkJw59V.js} +77 -1
- package/dist/model-fragments.js +18 -2
- package/dist/model.js +12 -8
- package/dist/{schema-provider-DJCV_6AF.js → schema-provider-DtPOp0d7.js} +93 -6
- package/dist/serializer/json-api.js +8 -3
- package/dist/serializer/json.js +1 -1
- package/dist/serializer/rest.js +3 -4
- package/dist/serializer/transform.js +51 -3
- package/dist/serializer.js +4 -7
- package/dist/store.js +13 -7
- package/dist/unpkg/dev/adapter/error.js +386 -241
- package/dist/unpkg/dev/adapter/json-api.js +13 -1
- package/dist/unpkg/dev/adapter/rest.js +39 -3
- package/dist/unpkg/dev/adapter.js +23 -26
- package/dist/unpkg/dev/compat/builders.js +0 -1
- package/dist/unpkg/dev/compat/extensions.js +80 -3
- package/dist/unpkg/dev/compat/utils.js +14 -0
- package/dist/unpkg/dev/compat.js +34 -1
- package/dist/unpkg/dev/{errors-DmGGJr3T.js → errors-DngRU-If.js} +24 -1
- package/dist/unpkg/dev/{hooks-CkYiE6Ud.js → hooks-UuiLxWxS.js} +33 -2
- package/dist/unpkg/dev/index.js +171 -13
- package/dist/unpkg/dev/json-K2Y9z6MN.js +1333 -0
- package/dist/unpkg/dev/model/-private.js +1 -1
- package/dist/unpkg/dev/model/migration-support.js +16 -2
- package/dist/unpkg/{prod-deprecated/model-for-CqXsIKws.js → dev/model-for-CXkJw59V.js} +77 -1
- package/dist/unpkg/dev/model-fragments.js +18 -2
- package/dist/unpkg/dev/model.js +12 -8
- package/dist/unpkg/dev/{schema-provider-DDVYxmUV.js → schema-provider-0D7f-QOn.js} +92 -6
- package/dist/unpkg/dev/serializer/json-api.js +9 -4
- package/dist/unpkg/dev/serializer/json.js +1 -1
- package/dist/unpkg/dev/serializer/rest.js +3 -4
- package/dist/unpkg/dev/serializer/transform.js +51 -3
- package/dist/unpkg/dev/serializer.js +4 -7
- package/dist/unpkg/dev/store.js +21 -7
- package/dist/unpkg/dev-deprecated/adapter/error.js +386 -241
- package/dist/unpkg/dev-deprecated/adapter/json-api.js +13 -1
- package/dist/unpkg/dev-deprecated/adapter/rest.js +39 -3
- package/dist/unpkg/dev-deprecated/adapter.js +23 -26
- package/dist/unpkg/dev-deprecated/compat/builders.js +0 -1
- package/dist/unpkg/dev-deprecated/compat/extensions.js +80 -3
- package/dist/unpkg/dev-deprecated/compat/utils.js +14 -0
- package/dist/unpkg/dev-deprecated/compat.js +34 -1
- package/dist/unpkg/dev-deprecated/{errors-Spt6ubMd.js → errors-Bzidntpi.js} +24 -1
- package/dist/unpkg/dev-deprecated/{hooks-DOXegvhL.js → hooks-DVXhMW14.js} +33 -2
- package/dist/unpkg/dev-deprecated/index.js +171 -13
- package/dist/unpkg/{prod-deprecated/json-BWrZ5546.js → dev-deprecated/json-K2Y9z6MN.js} +96 -6
- package/dist/unpkg/dev-deprecated/model/-private.js +1 -1
- package/dist/unpkg/dev-deprecated/model/migration-support.js +16 -2
- package/dist/unpkg/{dev/model-for-CqXsIKws.js → dev-deprecated/model-for-CXkJw59V.js} +77 -1
- package/dist/unpkg/dev-deprecated/model-fragments.js +18 -2
- package/dist/unpkg/dev-deprecated/model.js +12 -8
- package/dist/unpkg/dev-deprecated/{schema-provider-BP6_8N-V.js → schema-provider-ZwO5_fZw.js} +84 -3
- package/dist/unpkg/dev-deprecated/serializer/json-api.js +9 -4
- package/dist/unpkg/dev-deprecated/serializer/json.js +1 -1
- package/dist/unpkg/dev-deprecated/serializer/rest.js +3 -4
- package/dist/unpkg/dev-deprecated/serializer/transform.js +51 -3
- package/dist/unpkg/dev-deprecated/serializer.js +4 -7
- package/dist/unpkg/dev-deprecated/store.js +21 -7
- package/dist/unpkg/prod/adapter/error.js +386 -241
- package/dist/unpkg/prod/adapter/json-api.js +13 -1
- package/dist/unpkg/prod/adapter/rest.js +39 -3
- package/dist/unpkg/prod/adapter.js +23 -26
- package/dist/unpkg/prod/compat/builders.js +0 -1
- package/dist/unpkg/prod/compat/extensions.js +70 -3
- package/dist/unpkg/prod/compat/utils.js +14 -0
- package/dist/unpkg/prod/compat.js +17 -0
- package/dist/unpkg/prod/{errors-BGVFCBmi.js → errors-B-PWeYlW.js} +24 -1
- package/dist/unpkg/prod/{hooks-BztVA_x0.js → hooks-Bx-zBziU.js} +32 -1
- package/dist/unpkg/prod/index.js +171 -5
- package/dist/unpkg/{dev/json-Cu1LNgmQ.js → prod/json-Qewu-UN9.js} +63 -19
- package/dist/unpkg/prod/model/-private.js +1 -1
- package/dist/unpkg/prod/model/migration-support.js +16 -2
- package/dist/unpkg/prod/model-for-CXkJw59V.js +297 -0
- package/dist/unpkg/prod/model-fragments.js +18 -2
- package/dist/unpkg/prod/model.js +12 -8
- package/dist/unpkg/prod/{schema-provider-DJtD_8jZ.js → schema-provider-BgRqk8i9.js} +96 -6
- package/dist/unpkg/prod/serializer/json-api.js +9 -4
- package/dist/unpkg/prod/serializer/json.js +1 -1
- package/dist/unpkg/prod/serializer/rest.js +3 -4
- package/dist/unpkg/prod/serializer/transform.js +51 -3
- package/dist/unpkg/prod/serializer.js +4 -7
- package/dist/unpkg/prod/store.js +21 -7
- package/dist/unpkg/prod-deprecated/adapter/error.js +386 -241
- package/dist/unpkg/prod-deprecated/adapter/json-api.js +13 -1
- package/dist/unpkg/prod-deprecated/adapter/rest.js +39 -3
- package/dist/unpkg/prod-deprecated/adapter.js +23 -26
- package/dist/unpkg/prod-deprecated/compat/builders.js +0 -1
- package/dist/unpkg/prod-deprecated/compat/extensions.js +70 -3
- package/dist/unpkg/prod-deprecated/compat/utils.js +14 -0
- package/dist/unpkg/prod-deprecated/compat.js +17 -0
- package/dist/unpkg/prod-deprecated/{errors-CdDaK81x.js → errors-Dl2J9d1D.js} +24 -1
- package/dist/unpkg/prod-deprecated/{hooks-yId87yyG.js → hooks-Cm60wWTf.js} +32 -1
- package/dist/unpkg/prod-deprecated/index.js +171 -5
- package/dist/unpkg/{dev-deprecated/json-Cu1LNgmQ.js → prod-deprecated/json-Qewu-UN9.js} +63 -19
- package/dist/unpkg/prod-deprecated/model/-private.js +1 -1
- package/dist/unpkg/prod-deprecated/model/migration-support.js +16 -2
- package/dist/{model-for-CqXsIKws.js → unpkg/prod-deprecated/model-for-CXkJw59V.js} +77 -1
- package/dist/unpkg/prod-deprecated/model-fragments.js +18 -2
- package/dist/unpkg/prod-deprecated/model.js +12 -8
- package/dist/unpkg/prod-deprecated/{schema-provider-CjX55uSY.js → schema-provider-Dh6tRqVI.js} +79 -3
- package/dist/unpkg/prod-deprecated/serializer/json-api.js +9 -4
- package/dist/unpkg/prod-deprecated/serializer/json.js +1 -1
- package/dist/unpkg/prod-deprecated/serializer/rest.js +3 -4
- package/dist/unpkg/prod-deprecated/serializer/transform.js +51 -3
- package/dist/unpkg/prod-deprecated/serializer.js +4 -7
- package/dist/unpkg/prod-deprecated/store.js +21 -7
- package/package.json +8 -8
- package/dist/unpkg/prod/json-BWrZ5546.js +0 -1243
- package/dist/unpkg/prod/model-for-CqXsIKws.js +0 -221
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { warn } from '@ember/debug';
|
|
2
2
|
import { dasherize, pluralize, singularize } from '@warp-drive/utilities/string';
|
|
3
|
-
import { J as JSONSerializer } from "../json-
|
|
3
|
+
import { J as JSONSerializer } from "../json-DU8m1pGf.js";
|
|
4
4
|
import { macroCondition, getGlobalConfig } from '@embroider/macros';
|
|
5
5
|
|
|
6
6
|
/* eslint-disable @typescript-eslint/no-unsafe-return */
|
|
@@ -14,10 +14,15 @@ const JSONAPISerializer = JSONSerializer.extend({
|
|
|
14
14
|
*/
|
|
15
15
|
_normalizeDocumentHelper(documentHash) {
|
|
16
16
|
if (Array.isArray(documentHash.data)) {
|
|
17
|
-
const ret =
|
|
17
|
+
const ret = [];
|
|
18
18
|
for (let i = 0; i < documentHash.data.length; i++) {
|
|
19
19
|
const data = documentHash.data[i];
|
|
20
|
-
|
|
20
|
+
const normalized = this._normalizeResourceHelper(data);
|
|
21
|
+
if (normalized !== null) {
|
|
22
|
+
// @ts-expect-error untyped
|
|
23
|
+
// can be null when unknown type is encountered
|
|
24
|
+
ret.push(normalized);
|
|
25
|
+
}
|
|
21
26
|
}
|
|
22
27
|
documentHash.data = ret;
|
|
23
28
|
} else if (documentHash.data && typeof documentHash.data === 'object') {
|
package/dist/serializer/json.js
CHANGED
|
@@ -2,5 +2,5 @@ import '@ember/application';
|
|
|
2
2
|
import '@ember/debug';
|
|
3
3
|
import '@warp-drive/utilities/string';
|
|
4
4
|
import '../serializer.js';
|
|
5
|
-
export { J as JSONSerializer } from "../json-
|
|
5
|
+
export { J as JSONSerializer } from "../json-DU8m1pGf.js";
|
|
6
6
|
import '@embroider/macros';
|
package/dist/serializer/rest.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { warn } from '@ember/debug';
|
|
2
2
|
import { camelize, dasherize, singularize } from '@warp-drive/utilities/string';
|
|
3
|
-
import { J as JSONSerializer, c as coerceId } from "../json-
|
|
3
|
+
import { i as inverseForRelationship, J as JSONSerializer, c as coerceId } from "../json-DU8m1pGf.js";
|
|
4
4
|
import { macroCondition, getGlobalConfig } from '@embroider/macros';
|
|
5
5
|
import Mixin from '@ember/object/mixin';
|
|
6
6
|
|
|
@@ -422,8 +422,7 @@ const EmbeddedRecordsMixin = Mixin.create({
|
|
|
422
422
|
*/
|
|
423
423
|
removeEmbeddedForeignKey(snapshot, embeddedSnapshot, relationship, json) {
|
|
424
424
|
if (relationship.kind === 'belongsTo') {
|
|
425
|
-
const
|
|
426
|
-
const parentRecord = schema.inverseFor(relationship.name, this.store);
|
|
425
|
+
const parentRecord = inverseForRelationship(this.store, snapshot.modelName, relationship.name);
|
|
427
426
|
if (parentRecord) {
|
|
428
427
|
const name = parentRecord.name;
|
|
429
428
|
const embeddedSerializer = this.store.serializerFor(embeddedSnapshot.modelName);
|
|
@@ -1025,7 +1024,7 @@ const RESTSerializer = JSONSerializer.extend({
|
|
|
1025
1024
|
`serialize` takes an options hash with a single option:
|
|
1026
1025
|
`includeId`. If this option is `true`, `serialize` will,
|
|
1027
1026
|
by default include the ID in the JSON object it builds.
|
|
1028
|
-
The
|
|
1027
|
+
The RESTAdapter passes in `includeId: true` when serializing
|
|
1029
1028
|
a record for `createRecord`, but not for `updateRecord`.
|
|
1030
1029
|
## Customization
|
|
1031
1030
|
Your server may expect a different JSON format than the
|
|
@@ -116,6 +116,10 @@ const Transform = EmberObject;
|
|
|
116
116
|
@public
|
|
117
117
|
*/
|
|
118
118
|
class BooleanTransform {
|
|
119
|
+
/**
|
|
120
|
+
* Converts a serialized (raw payload) value into a `boolean` (or `null`
|
|
121
|
+
* when `allowNull` is set and the value is nullish).
|
|
122
|
+
*/
|
|
119
123
|
deserialize(serialized, options) {
|
|
120
124
|
if ((serialized === null || serialized === undefined) && options?.allowNull === true) {
|
|
121
125
|
return null;
|
|
@@ -130,12 +134,20 @@ class BooleanTransform {
|
|
|
130
134
|
return false;
|
|
131
135
|
}
|
|
132
136
|
}
|
|
137
|
+
|
|
138
|
+
/**
|
|
139
|
+
* Converts a `boolean` attribute value into its serialized (raw payload) form.
|
|
140
|
+
*/
|
|
133
141
|
serialize(deserialized, options) {
|
|
134
142
|
if ((deserialized === null || deserialized === undefined) && options?.allowNull === true) {
|
|
135
143
|
return null;
|
|
136
144
|
}
|
|
137
145
|
return Boolean(deserialized);
|
|
138
146
|
}
|
|
147
|
+
|
|
148
|
+
/**
|
|
149
|
+
* Creates a new instance of this transform.
|
|
150
|
+
*/
|
|
139
151
|
static create() {
|
|
140
152
|
return new this();
|
|
141
153
|
}
|
|
@@ -151,7 +163,7 @@ class BooleanTransform {
|
|
|
151
163
|
standard.
|
|
152
164
|
|
|
153
165
|
```js [app/models/score.js]
|
|
154
|
-
import Model, { attr, belongsTo } from '@
|
|
166
|
+
import Model, { attr, belongsTo } from '@warp-drive/legacy/model';
|
|
155
167
|
|
|
156
168
|
export default class ScoreModel extends Model {
|
|
157
169
|
@attr('number') value;
|
|
@@ -164,6 +176,10 @@ class BooleanTransform {
|
|
|
164
176
|
*/
|
|
165
177
|
|
|
166
178
|
class DateTransform {
|
|
179
|
+
/**
|
|
180
|
+
* Converts a serialized (raw payload) `ISO 8601` string, epoch number,
|
|
181
|
+
* or nullish value into a `Date` (or `null`/`undefined`).
|
|
182
|
+
*/
|
|
167
183
|
deserialize(serialized, _options) {
|
|
168
184
|
if (typeof serialized === 'string') {
|
|
169
185
|
let offset = serialized.indexOf('+');
|
|
@@ -182,6 +198,11 @@ class DateTransform {
|
|
|
182
198
|
return null;
|
|
183
199
|
}
|
|
184
200
|
}
|
|
201
|
+
|
|
202
|
+
/**
|
|
203
|
+
* Converts a `Date` attribute value into an `ISO 8601` string, or `null`
|
|
204
|
+
* if the value is not a valid `Date`.
|
|
205
|
+
*/
|
|
185
206
|
serialize(date, _options) {
|
|
186
207
|
// @ts-expect-error isNaN accepts date as it is coercible
|
|
187
208
|
if (date instanceof Date && !isNaN(date)) {
|
|
@@ -190,6 +211,10 @@ class DateTransform {
|
|
|
190
211
|
return null;
|
|
191
212
|
}
|
|
192
213
|
}
|
|
214
|
+
|
|
215
|
+
/**
|
|
216
|
+
* Creates a new instance of this transform.
|
|
217
|
+
*/
|
|
193
218
|
static create() {
|
|
194
219
|
return new this();
|
|
195
220
|
}
|
|
@@ -209,7 +234,7 @@ function isNumber(value) {
|
|
|
209
234
|
Usage
|
|
210
235
|
|
|
211
236
|
```js [app/models/score.js]
|
|
212
|
-
import Model, { attr, belongsTo } from '@
|
|
237
|
+
import Model, { attr, belongsTo } from '@warp-drive/legacy/model';
|
|
213
238
|
|
|
214
239
|
export default class ScoreModel extends Model {
|
|
215
240
|
@attr('number') value;
|
|
@@ -221,6 +246,10 @@ function isNumber(value) {
|
|
|
221
246
|
@public
|
|
222
247
|
*/
|
|
223
248
|
class NumberTransform {
|
|
249
|
+
/**
|
|
250
|
+
* Converts a serialized (raw payload) value into a `number`, or `null`
|
|
251
|
+
* if the value is empty, nullish, or not a valid number.
|
|
252
|
+
*/
|
|
224
253
|
deserialize(serialized, _options) {
|
|
225
254
|
if (serialized === '' || serialized === null || serialized === undefined) {
|
|
226
255
|
return null;
|
|
@@ -229,6 +258,10 @@ class NumberTransform {
|
|
|
229
258
|
return isNumber(transformed) ? transformed : null;
|
|
230
259
|
}
|
|
231
260
|
}
|
|
261
|
+
|
|
262
|
+
/**
|
|
263
|
+
* Converts a `number` attribute value into its serialized (raw payload) form.
|
|
264
|
+
*/
|
|
232
265
|
serialize(deserialized, _options) {
|
|
233
266
|
if (deserialized === '' || deserialized === null || deserialized === undefined) {
|
|
234
267
|
return null;
|
|
@@ -237,6 +270,10 @@ class NumberTransform {
|
|
|
237
270
|
return isNumber(transformed) ? transformed : null;
|
|
238
271
|
}
|
|
239
272
|
}
|
|
273
|
+
|
|
274
|
+
/**
|
|
275
|
+
* Creates a new instance of this transform.
|
|
276
|
+
*/
|
|
240
277
|
static create() {
|
|
241
278
|
return new this();
|
|
242
279
|
}
|
|
@@ -253,7 +290,7 @@ class NumberTransform {
|
|
|
253
290
|
Usage
|
|
254
291
|
|
|
255
292
|
```js [app/models/user.js]
|
|
256
|
-
import Model, { attr, belongsTo } from '@
|
|
293
|
+
import Model, { attr, belongsTo } from '@warp-drive/legacy/model';
|
|
257
294
|
|
|
258
295
|
export default class UserModel extends Model {
|
|
259
296
|
@attr('boolean') isAdmin;
|
|
@@ -265,12 +302,23 @@ class NumberTransform {
|
|
|
265
302
|
@public
|
|
266
303
|
*/
|
|
267
304
|
class StringTransform {
|
|
305
|
+
/**
|
|
306
|
+
* Converts a serialized (raw payload) value into a `string`, or `null`
|
|
307
|
+
* if the value is falsy (and not an empty string).
|
|
308
|
+
*/
|
|
268
309
|
deserialize(serialized, _options) {
|
|
269
310
|
return !serialized && serialized !== '' ? null : String(serialized);
|
|
270
311
|
}
|
|
312
|
+
/**
|
|
313
|
+
* Converts a `string` attribute value into its serialized (raw payload) form.
|
|
314
|
+
*/
|
|
271
315
|
serialize(deserialized, _options) {
|
|
272
316
|
return !deserialized && deserialized !== '' ? null : String(deserialized);
|
|
273
317
|
}
|
|
318
|
+
|
|
319
|
+
/**
|
|
320
|
+
* Creates a new instance of this transform.
|
|
321
|
+
*/
|
|
274
322
|
static create() {
|
|
275
323
|
return new this();
|
|
276
324
|
}
|
package/dist/serializer.js
CHANGED
|
@@ -149,11 +149,8 @@ class Serializer extends EmberObject {
|
|
|
149
149
|
}
|
|
150
150
|
});
|
|
151
151
|
```
|
|
152
|
-
@
|
|
153
|
-
@type {Store}
|
|
154
|
-
@public
|
|
152
|
+
@public
|
|
155
153
|
*/
|
|
156
|
-
|
|
157
154
|
/**
|
|
158
155
|
The `normalizeResponse` method is used to normalize a payload from the
|
|
159
156
|
server to a JSON-API Document.
|
|
@@ -237,9 +234,9 @@ class Serializer extends EmberObject {
|
|
|
237
234
|
})
|
|
238
235
|
```
|
|
239
236
|
@public
|
|
240
|
-
@param
|
|
241
|
-
@param
|
|
242
|
-
@return
|
|
237
|
+
@param _typeClass - the model class the hash is being normalized for
|
|
238
|
+
@param hash - the raw payload hash to normalize
|
|
239
|
+
@return the normalized resource document
|
|
243
240
|
*/
|
|
244
241
|
normalize(_typeClass, hash) {
|
|
245
242
|
return hash;
|
package/dist/store.js
CHANGED
|
@@ -108,12 +108,11 @@ function resourceIsFullyDeleted(instanceCache, identifier) {
|
|
|
108
108
|
class RecordReference {
|
|
109
109
|
/** @internal */
|
|
110
110
|
|
|
111
|
-
/** @internal */
|
|
112
111
|
// unsubscribe token given to us by the notification manager
|
|
112
|
+
/** @internal */
|
|
113
113
|
___token;
|
|
114
114
|
/** @internal */
|
|
115
115
|
___identifier;
|
|
116
|
-
|
|
117
116
|
/** @internal */
|
|
118
117
|
|
|
119
118
|
constructor(store, identifier) {
|
|
@@ -144,7 +143,7 @@ class RecordReference {
|
|
|
144
143
|
userRef.id(); // '1'
|
|
145
144
|
```
|
|
146
145
|
@public
|
|
147
|
-
|
|
146
|
+
@return The id of the record.
|
|
148
147
|
*/
|
|
149
148
|
id() {
|
|
150
149
|
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
|
|
@@ -162,7 +161,7 @@ class RecordReference {
|
|
|
162
161
|
userRef.identifier(); // '1'
|
|
163
162
|
```
|
|
164
163
|
@public
|
|
165
|
-
|
|
164
|
+
@return The identifier of the record.
|
|
166
165
|
*/
|
|
167
166
|
identifier() {
|
|
168
167
|
return this.___identifier;
|
|
@@ -188,7 +187,7 @@ class RecordReference {
|
|
|
188
187
|
simplest usage of this API is similar to `store.push`: you provide a
|
|
189
188
|
normalized hash of data and the object represented by the reference
|
|
190
189
|
will update.
|
|
191
|
-
If you pass a promise to `push`,
|
|
190
|
+
If you pass a promise to `push`, WarpDrive will not ask the adapter
|
|
192
191
|
for the data if another attempt to fetch it is made in the
|
|
193
192
|
interim. When the promise resolves, the underlying object is updated
|
|
194
193
|
with the new data, and the promise returned by *this function* is resolved
|
|
@@ -232,7 +231,7 @@ class RecordReference {
|
|
|
232
231
|
userRef.value(); // user
|
|
233
232
|
```
|
|
234
233
|
@public
|
|
235
|
-
|
|
234
|
+
@return the record for this RecordReference
|
|
236
235
|
*/
|
|
237
236
|
value() {
|
|
238
237
|
return this.store.peekRecord(this.___identifier);
|
|
@@ -527,7 +526,14 @@ function restoreDeprecatedStoreBehaviors(StoreKlass) {
|
|
|
527
526
|
};
|
|
528
527
|
|
|
529
528
|
// do not put a ts-expect-error here, because typedoc will fail to
|
|
530
|
-
// build due to this error only occurring when references are in use in the editor
|
|
529
|
+
// build due to this error only occurring when references are in use in the editor.
|
|
530
|
+
// The return statement below casts to `PrivateStore['getReference']`'s return
|
|
531
|
+
// type rather than annotating this function `: RecordReference` directly,
|
|
532
|
+
// since this package's `RecordReference` and core's `deprecated/-private.ts`
|
|
533
|
+
// copy are structurally identical but nominally distinct classes (TS treats
|
|
534
|
+
// their private fields as separate brands); casting only the return value
|
|
535
|
+
// (instead of the whole function) keeps `this` contextually typed from the
|
|
536
|
+
// assignment target below.
|
|
531
537
|
StoreKlass.prototype.getReference = function (resource, id) {
|
|
532
538
|
macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
|
|
533
539
|
if (!test) {
|