@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,637 @@
1
+ import { assertPrivateStore, ensureStringId, recordIdentifierFor, constructResource, storeFor } from '@warp-drive/core/store/-private';
2
+ import { SkipCache } from '@warp-drive/core/types/request';
3
+ import { i as isMaybeIdentifier } from "./utils-BhvS1iTS.js";
4
+ import { n as normalizeModelName } from "./util-DvanW33H.js";
5
+ import { defineSignal } from '@warp-drive/core/signals/-leaked';
6
+ import { getOrSetGlobal } from '@warp-drive/core/types/-private';
7
+
8
+ /*
9
+ When a find request is triggered on the store, the user can optionally pass in
10
+ attributes and relationships to be preloaded. These are meant to behave as if they
11
+ came back from the server, except the user obtained them out of band and is informing
12
+ the store of their existence. The most common use case is for supporting client side
13
+ nested URLs, such as `/posts/1/comments/2` so the user can do
14
+ `store.findRecord('comment', 2, { preload: { post: 1 } })` without having to fetch the post.
15
+
16
+ Preloaded data can be attributes and relationships passed in either as IDs or as actual
17
+ models.
18
+ */
19
+
20
+ function preloadData(store, identifier, preload) {
21
+ const jsonPayload = {};
22
+ //TODO(Igor) consider the polymorphic case
23
+ const schemas = store.schema;
24
+ const fields = schemas.fields(identifier);
25
+ Object.keys(preload).forEach(key => {
26
+ const preloadValue = preload[key];
27
+ const field = fields.get(key);
28
+ if (field && (field.kind === 'hasMany' || field.kind === 'belongsTo')) {
29
+ if (!jsonPayload.relationships) {
30
+ jsonPayload.relationships = {};
31
+ }
32
+ jsonPayload.relationships[key] = preloadRelationship(field, preloadValue);
33
+ } else {
34
+ if (!jsonPayload.attributes) {
35
+ jsonPayload.attributes = {};
36
+ }
37
+ jsonPayload.attributes[key] = preloadValue;
38
+ }
39
+ });
40
+ const cache = store.cache;
41
+ assertPrivateStore(store);
42
+ const hasRecord = Boolean(store._instanceCache.peek(identifier));
43
+ cache.upsert(identifier, jsonPayload, hasRecord);
44
+ }
45
+ function preloadRelationship(schema, preloadValue) {
46
+ const relatedType = schema.type;
47
+ if (schema.kind === 'hasMany') {
48
+ (test => {
49
+ if (!test) {
50
+ throw new Error('You need to pass in an array to set a hasMany property on a record');
51
+ }
52
+ })(Array.isArray(preloadValue));
53
+ return {
54
+ data: preloadValue.map(value => _convertPreloadRelationshipToJSON(value, relatedType))
55
+ };
56
+ }
57
+ (test => {
58
+ if (!test) {
59
+ throw new Error('You should not pass in an array to set a belongsTo property on a record');
60
+ }
61
+ })(!Array.isArray(preloadValue));
62
+ return {
63
+ data: preloadValue ? _convertPreloadRelationshipToJSON(preloadValue, relatedType) : null
64
+ };
65
+ }
66
+
67
+ /*
68
+ findRecord('user', '1', { preload: { friends: ['1'] }});
69
+ findRecord('user', '1', { preload: { friends: [record] }});
70
+ */
71
+ function _convertPreloadRelationshipToJSON(value, type) {
72
+ if (typeof value === 'string' || typeof value === 'number') {
73
+ return {
74
+ type,
75
+ id: ensureStringId(value)
76
+ };
77
+ }
78
+ // TODO if not a record instance assert it's an identifier
79
+ // and allow identifiers to be used
80
+ return recordIdentifierFor(value);
81
+ }
82
+
83
+ /**
84
+ * Minimum subset of static schema methods and properties on the
85
+ * "model" class.
86
+ *
87
+ * Only used when using the legacy schema-service implementation
88
+ * for @ember-data/model or when wrapping schema for legacy
89
+ * Adapters/Serializers.
90
+ *
91
+ */
92
+
93
+ function _resourceIsFullDeleted(identifier, cache) {
94
+ return cache.isDeletionCommitted(identifier) || cache.isNew(identifier) && cache.isDeleted(identifier);
95
+ }
96
+ function resourceIsFullyDeleted(instanceCache, identifier) {
97
+ const cache = instanceCache.cache;
98
+ return !cache || _resourceIsFullDeleted(identifier, cache);
99
+ }
100
+
101
+ /**
102
+ A `RecordReference` is a low-level API that allows users and
103
+ addon authors to perform meta-operations on a record.
104
+
105
+ @hideconstructor
106
+ @public
107
+ */
108
+ class RecordReference {
109
+ /** @internal */
110
+
111
+ /** @internal */
112
+ // unsubscribe token given to us by the notification manager
113
+ ___token;
114
+ /** @internal */
115
+ ___identifier;
116
+
117
+ /** @internal */
118
+
119
+ constructor(store, identifier) {
120
+ this.store = store;
121
+ this.___identifier = identifier;
122
+ this.___token = store.notifications.subscribe(identifier, (_, bucket, notifiedKey) => {
123
+ if (bucket === 'identity' || bucket === 'attributes' && notifiedKey === 'id') {
124
+ this._ref++;
125
+ }
126
+ });
127
+ }
128
+
129
+ /** @internal */
130
+ destroy() {
131
+ this.store.notifications.unsubscribe(this.___token);
132
+ }
133
+ get type() {
134
+ return this.identifier().type;
135
+ }
136
+
137
+ /**
138
+ The `id` of the record that this reference refers to.
139
+ Together, the `type` and `id` properties form a composite key for
140
+ the identity map.
141
+ Example
142
+ ```javascript
143
+ let userRef = store.getReference('user', 1);
144
+ userRef.id(); // '1'
145
+ ```
146
+ @public
147
+ @return The id of the record.
148
+ */
149
+ id() {
150
+ // eslint-disable-next-line @typescript-eslint/no-unused-expressions
151
+ this._ref; // consume the tracked prop
152
+ return this.___identifier.id;
153
+ }
154
+
155
+ /**
156
+ The `identifier` of the record that this reference refers to.
157
+ Together, the `type` and `id` properties form a composite key for
158
+ the identity map.
159
+ Example
160
+ ```javascript
161
+ let userRef = store.getReference('user', 1);
162
+ userRef.identifier(); // '1'
163
+ ```
164
+ @public
165
+ @return The identifier of the record.
166
+ */
167
+ identifier() {
168
+ return this.___identifier;
169
+ }
170
+
171
+ /**
172
+ How the reference will be looked up when it is loaded. Currently
173
+ this always returns `identity` to signify that a record will be
174
+ loaded by its `type` and `id`.
175
+ Example
176
+ ```javascript
177
+ const userRef = store.getReference('user', 1);
178
+ userRef.remoteType(); // 'identity'
179
+ ```
180
+ @public
181
+ */
182
+ remoteType() {
183
+ return 'identity';
184
+ }
185
+
186
+ /**
187
+ This API allows you to provide a reference with new data. The
188
+ simplest usage of this API is similar to `store.push`: you provide a
189
+ normalized hash of data and the object represented by the reference
190
+ will update.
191
+ If you pass a promise to `push`, Ember Data will not ask the adapter
192
+ for the data if another attempt to fetch it is made in the
193
+ interim. When the promise resolves, the underlying object is updated
194
+ with the new data, and the promise returned by *this function* is resolved
195
+ with that object.
196
+ For example, `recordReference.push(promise)` will be resolved with a
197
+ record.
198
+ Example
199
+ ```javascript
200
+ let userRef = store.getReference('user', 1);
201
+ // provide data for reference
202
+ userRef.push({
203
+ data: {
204
+ id: "1",
205
+ type: "user",
206
+ attributes: {
207
+ username: "@user"
208
+ }
209
+ }
210
+ }).then(function(user) {
211
+ userRef.value() === user;
212
+ });
213
+ ```
214
+ @public
215
+ @param objectOrPromise a JSON:API ResourceDocument or a promise resolving to one
216
+ @return a promise for the value (record or relationship)
217
+ */
218
+ push(objectOrPromise) {
219
+ // TODO @deprecate pushing unresolved payloads
220
+ return Promise.resolve(objectOrPromise).then(data => {
221
+ return this.store.push(data);
222
+ });
223
+ }
224
+
225
+ /**
226
+ If the entity referred to by the reference is already loaded, it is
227
+ present as `reference.value`. Otherwise the value returned by this function
228
+ is `null`.
229
+ Example
230
+ ```javascript
231
+ let userRef = store.getReference('user', 1);
232
+ userRef.value(); // user
233
+ ```
234
+ @public
235
+ @return {Model} the record for this RecordReference
236
+ */
237
+ value() {
238
+ return this.store.peekRecord(this.___identifier);
239
+ }
240
+
241
+ /**
242
+ Triggers a fetch for the backing entity based on its `remoteType`
243
+ (see `remoteType` definitions per reference type).
244
+ Example
245
+ ```javascript
246
+ let userRef = store.getReference('user', 1);
247
+ // load user (via store.find)
248
+ userRef.load().then(...)
249
+ ```
250
+ @public
251
+ @return the record for this RecordReference
252
+ */
253
+ load() {
254
+ const id = this.id();
255
+ if (id !== null) {
256
+ return this.store.findRecord(this.type, id);
257
+ }
258
+ (test => {
259
+ {
260
+ throw new Error(`Unable to fetch record of type ${this.type} without an id`);
261
+ }
262
+ })();
263
+ }
264
+
265
+ /**
266
+ Reloads the record if it is already loaded. If the record is not
267
+ loaded it will load the record via `store.findRecord`
268
+ Example
269
+ ```javascript
270
+ let userRef = store.getReference('user', 1);
271
+ // or trigger a reload
272
+ userRef.reload().then(...)
273
+ ```
274
+ @public
275
+ @return the record for this RecordReference
276
+ */
277
+ reload() {
278
+ const id = this.id();
279
+ if (id !== null) {
280
+ return this.store.findRecord(this.type, id, {
281
+ reload: true
282
+ });
283
+ }
284
+ (test => {
285
+ {
286
+ throw new Error(`Unable to fetch record of type ${this.type} without an id`);
287
+ }
288
+ })();
289
+ }
290
+ }
291
+ defineSignal(RecordReference.prototype, '_ref');
292
+
293
+ // if modelFor turns out to be a bottleneck we should replace with a Map
294
+ // and clear it during store teardown.
295
+ const AvailableShims = getOrSetGlobal('AvailableShims', new WeakMap());
296
+ function getShimClass(store, modelName) {
297
+ let shims = AvailableShims.get(store);
298
+ if (!shims) {
299
+ shims = Object.create(null);
300
+ AvailableShims.set(store, shims);
301
+ }
302
+ let shim = shims[modelName];
303
+ if (shim === undefined) {
304
+ shim = shims[modelName] = new ShimModelClass(store, modelName);
305
+ }
306
+ return shim;
307
+ }
308
+
309
+ // Mimics the static apis of @ember-data/model
310
+ class ShimModelClass {
311
+ constructor(store, modelName) {
312
+ this.__store = store;
313
+ this.modelName = modelName;
314
+ }
315
+ get fields() {
316
+ const fields = new Map();
317
+ const fieldSchemas = this.__store.schema.fields({
318
+ type: this.modelName
319
+ });
320
+ fieldSchemas.forEach((schema, key) => {
321
+ if (schema.kind === 'attribute' || schema.kind === 'belongsTo' || schema.kind === 'hasMany') {
322
+ fields.set(key, schema.kind);
323
+ }
324
+ });
325
+ return fields;
326
+ }
327
+ get attributes() {
328
+ const attrs = new Map();
329
+ const fields = this.__store.schema.fields({
330
+ type: this.modelName
331
+ });
332
+ fields.forEach((schema, key) => {
333
+ if (schema.kind === 'attribute') {
334
+ attrs.set(key, schema);
335
+ }
336
+ });
337
+ return attrs;
338
+ }
339
+ get relationshipsByName() {
340
+ const rels = new Map();
341
+ const fields = this.__store.schema.fields({
342
+ type: this.modelName
343
+ });
344
+ fields.forEach((schema, key) => {
345
+ if (schema.kind === 'belongsTo' || schema.kind === 'hasMany') {
346
+ rels.set(key, schema);
347
+ }
348
+ });
349
+ return rels;
350
+ }
351
+ eachAttribute(callback, binding) {
352
+ this.__store.schema.fields({
353
+ type: this.modelName
354
+ }).forEach((schema, key) => {
355
+ if (schema.kind === 'attribute') {
356
+ callback.call(binding, key, schema);
357
+ }
358
+ });
359
+ }
360
+ eachRelationship(callback, binding) {
361
+ this.__store.schema.fields({
362
+ type: this.modelName
363
+ }).forEach((schema, key) => {
364
+ if (schema.kind === 'belongsTo' || schema.kind === 'hasMany') {
365
+ callback.call(binding, key, schema);
366
+ }
367
+ });
368
+ }
369
+ eachTransformedAttribute(callback, binding) {
370
+ this.__store.schema.fields({
371
+ type: this.modelName
372
+ }).forEach((schema, key) => {
373
+ if (schema.kind === 'attribute') {
374
+ const type = schema.type;
375
+ if (type) callback.call(binding, key, type);
376
+ }
377
+ });
378
+ }
379
+ }
380
+ function restoreDeprecatedStoreBehaviors(StoreKlass) {
381
+ StoreKlass.prototype.findRecord = function (resource, id, options) {
382
+ (test => {
383
+ if (!test) {
384
+ throw new Error(`Attempted to call store.findRecord(), but the store instance has already been destroyed.`);
385
+ }
386
+ })(!(this.isDestroying || this.isDestroyed));
387
+ (test => {
388
+ if (!test) {
389
+ throw new Error(`You need to pass a modelName or resource identifier as the first argument to the store's findRecord method`);
390
+ }
391
+ })(resource);
392
+ if (isMaybeIdentifier(resource)) {
393
+ options = id;
394
+ } else {
395
+ (test => {
396
+ if (!test) {
397
+ throw new Error(`Passing classes to store methods has been removed. Please pass a dasherized string instead of ${resource}`);
398
+ }
399
+ })(typeof resource === 'string');
400
+ const type = normalizeModelName(resource);
401
+ const normalizedId = ensureStringId(id);
402
+ resource = constructResource(type, normalizedId);
403
+ }
404
+ const identifier = this.cacheKeyManager.getOrCreateRecordIdentifier(resource);
405
+ options = options || {};
406
+ assertPrivateStore(this);
407
+ if (options.preload) {
408
+ // force reload if we preload to ensure we don't resolve the promise
409
+ // until we are complete, else we will end up background-reloading
410
+ // even for initial load.
411
+ if (!this._instanceCache.recordIsLoaded(identifier)) {
412
+ options.reload = true;
413
+ }
414
+ this._join(() => {
415
+ preloadData(this, identifier, options.preload);
416
+ });
417
+ }
418
+ const promise = this.request({
419
+ op: 'findRecord',
420
+ data: {
421
+ record: identifier,
422
+ options
423
+ },
424
+ cacheOptions: {
425
+ [SkipCache]: true
426
+ }
427
+ });
428
+ return promise.then(document => {
429
+ return document.content;
430
+ });
431
+ };
432
+ StoreKlass.prototype.findAll = function (type, options = {}) {
433
+ (test => {
434
+ if (!test) {
435
+ throw new Error(`Attempted to call store.findAll(), but the store instance has already been destroyed.`);
436
+ }
437
+ })(!(this.isDestroying || this.isDestroyed));
438
+ (test => {
439
+ if (!test) {
440
+ throw new Error(`You need to pass a model name to the store's findAll method`);
441
+ }
442
+ })(type);
443
+ (test => {
444
+ if (!test) {
445
+ throw new Error(`Passing classes to store methods has been removed. Please pass a dasherized string instead of ${type}`);
446
+ }
447
+ })(typeof type === 'string');
448
+ const promise = this.request({
449
+ op: 'findAll',
450
+ data: {
451
+ type: normalizeModelName(type),
452
+ options: options || {}
453
+ },
454
+ cacheOptions: {
455
+ [SkipCache]: true
456
+ }
457
+ });
458
+ return promise.then(document => document.content);
459
+ };
460
+ StoreKlass.prototype.query = function (type, query, options = {}) {
461
+ (test => {
462
+ if (!test) {
463
+ throw new Error(`Attempted to call store.query(), but the store instance has already been destroyed.`);
464
+ }
465
+ })(!(this.isDestroying || this.isDestroyed));
466
+ (test => {
467
+ if (!test) {
468
+ throw new Error(`You need to pass a model name to the store's query method`);
469
+ }
470
+ })(type);
471
+ (test => {
472
+ if (!test) {
473
+ throw new Error(`You need to pass a query hash to the store's query method`);
474
+ }
475
+ })(query);
476
+ (test => {
477
+ if (!test) {
478
+ throw new Error(`Passing classes to store methods has been removed. Please pass a dasherized string instead of ${type}`);
479
+ }
480
+ })(typeof type === 'string');
481
+ const promise = this.request({
482
+ op: 'query',
483
+ data: {
484
+ type: normalizeModelName(type),
485
+ query,
486
+ options: options
487
+ },
488
+ cacheOptions: {
489
+ [SkipCache]: true
490
+ }
491
+ });
492
+ return promise.then(document => document.content);
493
+ };
494
+ StoreKlass.prototype.queryRecord = function (type, query, options) {
495
+ (test => {
496
+ if (!test) {
497
+ throw new Error(`Attempted to call store.queryRecord(), but the store instance has already been destroyed.`);
498
+ }
499
+ })(!(this.isDestroying || this.isDestroyed));
500
+ (test => {
501
+ if (!test) {
502
+ throw new Error(`You need to pass a model name to the store's queryRecord method`);
503
+ }
504
+ })(type);
505
+ (test => {
506
+ if (!test) {
507
+ throw new Error(`You need to pass a query hash to the store's queryRecord method`);
508
+ }
509
+ })(query);
510
+ (test => {
511
+ if (!test) {
512
+ throw new Error(`Passing classes to store methods has been removed. Please pass a dasherized string instead of ${type}`);
513
+ }
514
+ })(typeof type === 'string');
515
+ const promise = this.request({
516
+ op: 'queryRecord',
517
+ data: {
518
+ type: normalizeModelName(type),
519
+ query,
520
+ options: options || {}
521
+ },
522
+ cacheOptions: {
523
+ [SkipCache]: true
524
+ }
525
+ });
526
+ return promise.then(document => document.content);
527
+ };
528
+
529
+ // 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
531
+ StoreKlass.prototype.getReference = function (resource, id) {
532
+ (test => {
533
+ if (!test) {
534
+ throw new Error(`Attempted to call store.getReference(), but the store instance has already been destroyed.`);
535
+ }
536
+ })(!(this.isDestroying || this.isDestroyed));
537
+ let resourceIdentifier;
538
+ if (arguments.length === 1 && isMaybeIdentifier(resource)) {
539
+ resourceIdentifier = resource;
540
+ } else {
541
+ const type = normalizeModelName(resource);
542
+ const normalizedId = ensureStringId(id);
543
+ resourceIdentifier = constructResource(type, normalizedId);
544
+ }
545
+ (test => {
546
+ if (!test) {
547
+ throw new Error('getReference expected to receive either a resource identifier or type and id as arguments');
548
+ }
549
+ })(isMaybeIdentifier(resourceIdentifier));
550
+ const identifier = this.cacheKeyManager.getOrCreateRecordIdentifier(resourceIdentifier);
551
+ assertPrivateStore(this);
552
+ const cache = upgradeInstanceCaches(this._instanceCache.__instances).reference;
553
+ let reference = cache.get(identifier);
554
+ if (!reference) {
555
+ reference = new RecordReference(this, identifier);
556
+ cache.set(identifier, reference);
557
+ }
558
+ return reference;
559
+ };
560
+ StoreKlass.prototype.modelFor = function (type) {
561
+ (test => {
562
+ if (!test) {
563
+ throw new Error(`Attempted to call store.modelFor(), but the store instance has already been destroyed.`);
564
+ }
565
+ })(!this.isDestroyed);
566
+ (test => {
567
+ if (!test) {
568
+ throw new Error(`You need to pass <type> to the store's modelFor method`);
569
+ }
570
+ })(typeof type === 'string' && type.length);
571
+ (test => {
572
+ if (!test) {
573
+ throw new Error(`No model was found for '${type}' and no schema handles the type`);
574
+ }
575
+ })(this.schema.hasResource({
576
+ type
577
+ }));
578
+ return getShimClass(this, type);
579
+ };
580
+ StoreKlass.prototype.saveRecord = function (record, options = {}) {
581
+ (test => {
582
+ if (!test) {
583
+ throw new Error(`Attempted to call store.saveRecord(), but the store instance has already been destroyed.`);
584
+ }
585
+ })(!(this.isDestroying || this.isDestroyed));
586
+ (test => {
587
+ if (!test) {
588
+ throw new Error(`Unable to initiate save for a record in a disconnected state`);
589
+ }
590
+ })(storeFor(record, true));
591
+ const identifier = recordIdentifierFor(record);
592
+ const cache = this.cache;
593
+ if (!identifier) {
594
+ // this commonly means we're disconnected
595
+ // but just in case we reject here to prevent bad things.
596
+ return Promise.reject(new Error(`Record Is Disconnected`));
597
+ }
598
+ assertPrivateStore(this);
599
+ (test => {
600
+ if (!test) {
601
+ throw new Error(`Cannot initiate a save request for an unloaded record: ${identifier.lid}`);
602
+ }
603
+ })(this._instanceCache.recordIsLoaded(identifier));
604
+ if (resourceIsFullyDeleted(this._instanceCache, identifier)) {
605
+ return Promise.resolve(record);
606
+ }
607
+ if (!options) {
608
+ options = {};
609
+ }
610
+ let operation = 'updateRecord';
611
+ if (cache.isNew(identifier)) {
612
+ operation = 'createRecord';
613
+ } else if (cache.isDeleted(identifier)) {
614
+ operation = 'deleteRecord';
615
+ }
616
+ const request = {
617
+ op: operation,
618
+ data: {
619
+ options,
620
+ record: identifier
621
+ },
622
+ records: [identifier],
623
+ cacheOptions: {
624
+ [SkipCache]: true
625
+ }
626
+ };
627
+ return this.request(request).then(document => document.content);
628
+ };
629
+ }
630
+ function upgradeInstanceCaches(cache) {
631
+ const withReferences = cache;
632
+ if (!withReferences.reference) {
633
+ withReferences.reference = new WeakMap();
634
+ }
635
+ return withReferences;
636
+ }
637
+ export { restoreDeprecatedStoreBehaviors };
@@ -0,0 +1,20 @@
1
+ import '@warp-drive/utilities/string';
2
+ function isElementDescriptor(args) {
3
+ const [maybeTarget, maybeKey, maybeDesc] = args;
4
+ return (
5
+ // Ensure we have the right number of args
6
+ args.length === 3 && (
7
+ // Make sure the target is a class or object (prototype)
8
+ typeof maybeTarget === 'function' || typeof maybeTarget === 'object' && maybeTarget !== null) &&
9
+ // Make sure the key is a string
10
+ typeof maybeKey === 'string' && (
11
+ // Make sure the descriptor is the right shape
12
+ typeof maybeDesc === 'object' && maybeDesc !== null && 'enumerable' in maybeDesc && 'configurable' in maybeDesc ||
13
+ // TS compatibility
14
+ maybeDesc === undefined)
15
+ );
16
+ }
17
+ function normalizeModelName(type) {
18
+ return type;
19
+ }
20
+ export { isElementDescriptor as i, normalizeModelName as n };
@@ -0,0 +1,8 @@
1
+ import '@warp-drive/utilities/string';
2
+ function isMaybeIdentifier(maybeIdentifier) {
3
+ return Boolean(maybeIdentifier !== null && typeof maybeIdentifier === 'object' && ('id' in maybeIdentifier && 'type' in maybeIdentifier && maybeIdentifier.id && maybeIdentifier.type || maybeIdentifier.lid));
4
+ }
5
+ function normalizeModelName(type) {
6
+ return type;
7
+ }
8
+ export { isMaybeIdentifier as i, normalizeModelName as n };