@ember-data/store 5.5.0-alpha.20 → 5.5.0-alpha.22

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 (34) hide show
  1. package/dist/-private.js +2 -1
  2. package/dist/-private.js.map +1 -1
  3. package/dist/configure-BfLLW6GY.js +161 -0
  4. package/dist/configure-BfLLW6GY.js.map +1 -0
  5. package/dist/configure.js +1 -0
  6. package/dist/configure.js.map +1 -0
  7. package/dist/index.js +3 -2
  8. package/dist/index.js.map +1 -1
  9. package/dist/{request-state-Bue-PTUf.js → request-state-BrADgFy5.js} +310 -100
  10. package/dist/request-state-BrADgFy5.js.map +1 -0
  11. package/package.json +19 -11
  12. package/unstable-preview-types/-private/document.d.ts.map +1 -1
  13. package/unstable-preview-types/-private/legacy-model-support/record-reference.d.ts.map +1 -1
  14. package/unstable-preview-types/-private/managers/notification-manager.d.ts.map +1 -1
  15. package/unstable-preview-types/-private/managers/record-array-manager.d.ts.map +1 -1
  16. package/unstable-preview-types/-private/new-core-tmp/promise-state.d.ts.map +1 -1
  17. package/unstable-preview-types/-private/new-core-tmp/reactivity/configure.d.ts +92 -0
  18. package/unstable-preview-types/-private/new-core-tmp/reactivity/configure.d.ts.map +1 -0
  19. package/unstable-preview-types/-private/new-core-tmp/reactivity/internal.d.ts +172 -0
  20. package/unstable-preview-types/-private/new-core-tmp/reactivity/internal.d.ts.map +1 -0
  21. package/unstable-preview-types/-private/new-core-tmp/reactivity/signal.d.ts +32 -0
  22. package/unstable-preview-types/-private/new-core-tmp/reactivity/signal.d.ts.map +1 -0
  23. package/unstable-preview-types/-private/new-core-tmp/request-state.d.ts.map +1 -1
  24. package/unstable-preview-types/-private/record-arrays/identifier-array.d.ts +4 -9
  25. package/unstable-preview-types/-private/record-arrays/identifier-array.d.ts.map +1 -1
  26. package/unstable-preview-types/-private/record-arrays/many-array.d.ts +2 -2
  27. package/unstable-preview-types/-private/record-arrays/many-array.d.ts.map +1 -1
  28. package/unstable-preview-types/-private.d.ts +4 -1
  29. package/unstable-preview-types/-private.d.ts.map +1 -1
  30. package/unstable-preview-types/configure.d.ts +21 -0
  31. package/unstable-preview-types/configure.d.ts.map +1 -0
  32. package/unstable-preview-types/index.d.ts +4 -0
  33. package/unstable-preview-types/index.d.ts.map +1 -1
  34. package/dist/request-state-Bue-PTUf.js.map +0 -1
package/dist/-private.js CHANGED
@@ -1 +1,2 @@
1
- export { A as ARRAY_SIGNAL, C as CacheHandler, k as CollectionRecordArray, I as LiveArray, M as MUTATE, R as RecordArrayManager, w as RelatedCollection, l as SOURCE, S as Store, t as StoreMap, _ as _clearCaches, v as _deprecatingNormalize, h as coerceId, g as constructResource, j as ensureStringId, m as fastPush, z as getPromiseState, B as getRequestState, f as isDocumentIdentifier, i as isStableIdentifier, x as log, y as logGroup, n as notifyArray, p as peekCache, r as recordIdentifierFor, o as removeRecordDataFor, u as setCacheFor, q as setRecordIdentifier, s as storeFor } from "./request-state-Bue-PTUf.js";
1
+ export { C as CacheHandler, k as CollectionRecordArray, I as LiveArray, M as MUTATE, R as RecordArrayManager, v as RelatedCollection, l as SOURCE, G as Signals, S as Store, q as StoreMap, _ as _clearCaches, u as _deprecatingNormalize, h as coerceId, g as constructResource, L as consumeInternalSignal, F as defineNonEnumerableSignal, E as defineSignal, j as ensureStringId, D as entangleSignal, m as fastPush, B as gate, N as getOrCreateInternalSignal, y as getPromiseState, z as getRequestState, f as isDocumentIdentifier, i as isStableIdentifier, w as log, x as logGroup, A as memoized, K as notifyInternalSignal, p as peekCache, H as peekInternalSignal, r as recordIdentifierFor, n as removeRecordDataFor, t as setCacheFor, o as setRecordIdentifier, s as storeFor, J as withSignalStore } from "./request-state-BrADgFy5.js";
2
+ export { A as ARRAY_SIGNAL, O as OBJECT_SIGNAL, c as createMemo } from "./configure-BfLLW6GY.js";
@@ -1 +1 @@
1
- {"version":3,"file":"-private.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
1
+ {"version":3,"file":"-private.js","sources":[],"sourcesContent":[],"names":[],"mappings":";"}
@@ -0,0 +1,161 @@
1
+ import { deprecate } from '@ember/debug';
2
+ import { macroCondition, getGlobalConfig, dependencySatisfies, importSync } from '@embroider/macros';
3
+ import { getOrSetGlobal, setTransient, peekTransient } from '@warp-drive/core-types/-private';
4
+ const ARRAY_SIGNAL = getOrSetGlobal('#[]', Symbol('#[]'));
5
+ const OBJECT_SIGNAL = getOrSetGlobal('#{}', Symbol('#{}'));
6
+
7
+ /**
8
+ * Requirements:
9
+ *
10
+ * Signal:
11
+ *
12
+ * - signal: a way of creating a reference that we can dirty when we desire to notify
13
+ * - @signal: a way of creating an accessor on an object that subscribes to a signal on access
14
+ * and notifies the signal on set, or of upgrading a descriptor to be such an accessor
15
+ * - defineSignal: a way of creating a signal on an object
16
+ * - notifySignal: a way of notifying the underlying signal that it has been dirtied
17
+ * - peekSignal: a way of inspecting the signal without notifying it
18
+ *
19
+ * - gate: a memoized getter function that re-runs when on access if its signal is dirty
20
+ * conceptually, a gate is a tightly coupled signal and memo
21
+ * - @gate: a way of creating a gate on an object or upgrading a descriptor with a getter
22
+ * to be a gate
23
+ * - defineGate: a way of creating a gate on an object
24
+ * - notifySignal: a way of notifying the signal for a gate that it has been dirtied
25
+ *
26
+ * - memo:
27
+ * - @memo: a way of creating a memoized getter on an object or upgrading a descriptor with a getter
28
+ * to be a memo
29
+ * - defineMemo: a way of creating a memo on an object
30
+ *
31
+ * - signalStore: storage bucket for signals associated to an object
32
+ * - withSignalStore: a way of pre-creating a signal store on an object
33
+ *
34
+ *
35
+ * @internal
36
+ */
37
+
38
+ /**
39
+ * An Opaque type that represents a framework specific or TC39 signal.
40
+ *
41
+ * It may be an array of signals or a single signal.
42
+ *
43
+ * @internal
44
+ */
45
+
46
+ /**
47
+ * The hooks which MUST be configured in order to use this library,
48
+ * either for framework specfic signals or TC39 signals.
49
+ *
50
+ * Support for multiple frameworks simultaneously can be done via
51
+ * this abstraction by returning multiple signals from the `createSignal`
52
+ * method, and consuming the correct one via the correct framework via
53
+ * the `consumeSignal` and `notifySignal` methods.
54
+ *
55
+ * @typedoc
56
+ */
57
+
58
+ /**
59
+ * The public API for configuring the signal hooks.
60
+ *
61
+ * @internal
62
+ */
63
+ function setupSignals(buildConfig) {
64
+ // We want to assert this but can't because too many package manager
65
+ // and bundler bugs exist that cause this to be called multiple times
66
+ // for what should be a single call.
67
+ // assert(`Cannot override configured signal hooks`, peekTransient('signalHooks') === null);
68
+ const hooks = buildConfig({
69
+ wellknown: {
70
+ Array: ARRAY_SIGNAL
71
+ }
72
+ });
73
+ setTransient('signalHooks', hooks);
74
+ }
75
+
76
+ /**
77
+ * Internal method for consuming the configured `createSignal` hook
78
+ *
79
+ * @internal
80
+ */
81
+ function createSignal(obj, key) {
82
+ const signalHooks = peekTransient('signalHooks');
83
+ macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
84
+ if (!test) {
85
+ throw new Error(`Signal hooks not configured`);
86
+ }
87
+ })(signalHooks) : {};
88
+ return signalHooks.createSignal(obj, key);
89
+ }
90
+
91
+ /**
92
+ * Internal method for consuming the configured `consumeSignal` hook
93
+ *
94
+ * @internal
95
+ */
96
+ function consumeSignal(signal) {
97
+ const signalHooks = peekTransient('signalHooks');
98
+ macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
99
+ if (!test) {
100
+ throw new Error(`Signal hooks not configured`);
101
+ }
102
+ })(signalHooks) : {};
103
+ return signalHooks.consumeSignal(signal);
104
+ }
105
+
106
+ /**
107
+ * Internal method for consuming the configured `notifySignal` hook
108
+ *
109
+ * @internal
110
+ */
111
+ function notifySignal(signal) {
112
+ const signalHooks = peekTransient('signalHooks');
113
+ macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
114
+ if (!test) {
115
+ throw new Error(`Signal hooks not configured`);
116
+ }
117
+ })(signalHooks) : {};
118
+ return signalHooks.notifySignal(signal);
119
+ }
120
+ function createMemo(object, key, fn) {
121
+ const signalHooks = peekTransient('signalHooks');
122
+ macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
123
+ if (!test) {
124
+ throw new Error(`Signal hooks not configured`);
125
+ }
126
+ })(signalHooks) : {};
127
+ return signalHooks.createMemo(object, key, fn);
128
+ }
129
+ function willSyncFlushWatchers() {
130
+ const signalHooks = peekTransient('signalHooks');
131
+ macroCondition(getGlobalConfig().WarpDrive.env.DEBUG) ? (test => {
132
+ if (!test) {
133
+ throw new Error(`Signal hooks not configured`);
134
+ }
135
+ })(signalHooks) : {};
136
+ return signalHooks.willSyncFlushWatchers();
137
+ }
138
+ if (macroCondition(getGlobalConfig().WarpDrive.deprecations.DEPRECATE_TRACKING_PACKAGE)) {
139
+ let hasEmberDataTracking = false;
140
+ if (macroCondition(dependencySatisfies('@ember-data/tracking', '*'))) {
141
+ hasEmberDataTracking = true;
142
+ // @ts-expect-error
143
+ const {
144
+ buildSignalConfig
145
+ } = importSync('@ember-data/tracking');
146
+ // eslint-disable-next-line @typescript-eslint/no-unsafe-argument
147
+ setupSignals(buildSignalConfig);
148
+ }
149
+ const message = [`Using WarpDrive with EmberJS requires configuring it to use Ember's reactivity system.`, `Previously this was provided by installing the package '@ember-data/tracking', but this package is now deprecated.`, ``, `To resolve this deprecation, follow these steps:`, hasEmberDataTracking ? `- remove "@ember-data/tracking" and (if needed) "@ember-data-types/tracking" from your project in both your package.json and tsconfig.json` : false, `- add "@warp-drive/ember" to your project in both your package.json and tsconfig.json`, '- add the following import to your app.js file:', '', '\t```', `\timport '@warp-drive/ember/install';`, '\t```', ``, '- mark this deprecation as resolved in your project by adding the following to your WarpDrive config in ember-cli-build.js:', '', '\t```', '\tconst { setConfig } = await import("@warp-drive/build-config");', '\tsetConfig(app, __dirname, {', '\t deprecations: {', '\t DEPRECATE_TRACKING_PACKAGE: false,', '\t },', '\t});', '\t```', ``, `For more information, see the Package Unification RFC: https://rfcs.emberjs.com/id/1075-warp-drive-package-unification/`].filter(l => l !== false).join('\n');
150
+ deprecate(message, false, {
151
+ id: 'warp-drive.deprecate-tracking-package',
152
+ until: '6.0.0',
153
+ for: 'warp-drive',
154
+ since: {
155
+ enabled: '5.3.4',
156
+ available: '4.13'
157
+ },
158
+ url: 'https://deprecations.emberjs.com/id/warp-drive.deprecate-tracking-package'
159
+ });
160
+ }
161
+ export { ARRAY_SIGNAL as A, OBJECT_SIGNAL as O, createSignal as a, consumeSignal as b, createMemo as c, notifySignal as n, setupSignals as s, willSyncFlushWatchers as w };
@@ -0,0 +1 @@
1
+ {"version":3,"file":"configure-BfLLW6GY.js","sources":["../src/-private/new-core-tmp/reactivity/configure.ts"],"sourcesContent":["import { deprecate } from '@ember/debug';\n\nimport { dependencySatisfies, importSync, macroCondition } from '@embroider/macros';\n\nimport { DEPRECATE_TRACKING_PACKAGE } from '@warp-drive/build-config/deprecations';\nimport { assert } from '@warp-drive/build-config/macros';\nimport { getOrSetGlobal, peekTransient, setTransient } from '@warp-drive/core-types/-private';\n\nexport const ARRAY_SIGNAL = getOrSetGlobal('#[]', Symbol('#[]'));\nexport const OBJECT_SIGNAL = getOrSetGlobal('#{}', Symbol('#{}'));\n\n/**\n * Requirements:\n *\n * Signal:\n *\n * - signal: a way of creating a reference that we can dirty when we desire to notify\n * - @signal: a way of creating an accessor on an object that subscribes to a signal on access\n * and notifies the signal on set, or of upgrading a descriptor to be such an accessor\n * - defineSignal: a way of creating a signal on an object\n * - notifySignal: a way of notifying the underlying signal that it has been dirtied\n * - peekSignal: a way of inspecting the signal without notifying it\n *\n * - gate: a memoized getter function that re-runs when on access if its signal is dirty\n * conceptually, a gate is a tightly coupled signal and memo\n * - @gate: a way of creating a gate on an object or upgrading a descriptor with a getter\n * to be a gate\n * - defineGate: a way of creating a gate on an object\n * - notifySignal: a way of notifying the signal for a gate that it has been dirtied\n *\n * - memo:\n * - @memo: a way of creating a memoized getter on an object or upgrading a descriptor with a getter\n * to be a memo\n * - defineMemo: a way of creating a memo on an object\n *\n * - signalStore: storage bucket for signals associated to an object\n * - withSignalStore: a way of pre-creating a signal store on an object\n *\n *\n * @internal\n */\n\n/**\n * An Opaque type that represents a framework specific or TC39 signal.\n *\n * It may be an array of signals or a single signal.\n *\n * @internal\n */\nexport type SignalRef = unknown;\n/**\n * The hooks which MUST be configured in order to use this library,\n * either for framework specfic signals or TC39 signals.\n *\n * Support for multiple frameworks simultaneously can be done via\n * this abstraction by returning multiple signals from the `createSignal`\n * method, and consuming the correct one via the correct framework via\n * the `consumeSignal` and `notifySignal` methods.\n *\n * @typedoc\n */\nexport interface SignalHooks<T = SignalRef> {\n createSignal: (obj: object, key: string | symbol) => T;\n consumeSignal: (signal: T) => void;\n notifySignal: (signal: T) => void;\n createMemo: <F>(obj: object, key: string | symbol, fn: () => F) => () => F;\n willSyncFlushWatchers: () => boolean;\n}\n\nexport interface HooksOptions {\n wellknown: {\n Array: symbol | string;\n };\n}\n\n/**\n * The public API for configuring the signal hooks.\n *\n * @internal\n */\nexport function setupSignals<T>(buildConfig: (options: HooksOptions) => SignalHooks<T>) {\n // We want to assert this but can't because too many package manager\n // and bundler bugs exist that cause this to be called multiple times\n // for what should be a single call.\n // assert(`Cannot override configured signal hooks`, peekTransient('signalHooks') === null);\n const hooks = buildConfig({\n wellknown: {\n Array: ARRAY_SIGNAL,\n },\n });\n setTransient('signalHooks', hooks);\n}\n\n/**\n * Internal method for consuming the configured `createSignal` hook\n *\n * @internal\n */\nexport function createSignal(obj: object, key: string | symbol): SignalRef {\n const signalHooks: SignalHooks | null = peekTransient('signalHooks');\n assert(`Signal hooks not configured`, signalHooks);\n return signalHooks.createSignal(obj, key);\n}\n\n/**\n * Internal method for consuming the configured `consumeSignal` hook\n *\n * @internal\n */\nexport function consumeSignal(signal: SignalRef) {\n const signalHooks: SignalHooks | null = peekTransient('signalHooks');\n\n assert(`Signal hooks not configured`, signalHooks);\n return signalHooks.consumeSignal(signal);\n}\n\n/**\n * Internal method for consuming the configured `notifySignal` hook\n *\n * @internal\n */\nexport function notifySignal(signal: SignalRef) {\n const signalHooks: SignalHooks | null = peekTransient('signalHooks');\n assert(`Signal hooks not configured`, signalHooks);\n return signalHooks.notifySignal(signal);\n}\n\nexport function createMemo<T>(object: object, key: string | symbol, fn: () => T): () => T {\n const signalHooks: SignalHooks | null = peekTransient('signalHooks');\n assert(`Signal hooks not configured`, signalHooks);\n return signalHooks.createMemo(object, key, fn);\n}\n\nexport function willSyncFlushWatchers(): boolean {\n const signalHooks: SignalHooks | null = peekTransient('signalHooks');\n assert(`Signal hooks not configured`, signalHooks);\n return signalHooks.willSyncFlushWatchers();\n}\n\nif (DEPRECATE_TRACKING_PACKAGE) {\n let hasEmberDataTracking = false;\n if (macroCondition(dependencySatisfies('@ember-data/tracking', '*'))) {\n hasEmberDataTracking = true;\n // @ts-expect-error\n const { buildSignalConfig } = importSync('@ember-data/tracking');\n // eslint-disable-next-line @typescript-eslint/no-unsafe-argument\n setupSignals(buildSignalConfig);\n }\n\n const message = [\n `Using WarpDrive with EmberJS requires configuring it to use Ember's reactivity system.`,\n `Previously this was provided by installing the package '@ember-data/tracking', but this package is now deprecated.`,\n ``,\n `To resolve this deprecation, follow these steps:`,\n hasEmberDataTracking\n ? `- remove \"@ember-data/tracking\" and (if needed) \"@ember-data-types/tracking\" from your project in both your package.json and tsconfig.json`\n : false,\n `- add \"@warp-drive/ember\" to your project in both your package.json and tsconfig.json`,\n '- add the following import to your app.js file:',\n '',\n '\\t```',\n `\\timport '@warp-drive/ember/install';`,\n '\\t```',\n ``,\n '- mark this deprecation as resolved in your project by adding the following to your WarpDrive config in ember-cli-build.js:',\n '',\n '\\t```',\n '\\tconst { setConfig } = await import(\"@warp-drive/build-config\");',\n '\\tsetConfig(app, __dirname, {',\n '\\t deprecations: {',\n '\\t DEPRECATE_TRACKING_PACKAGE: false,',\n '\\t },',\n '\\t});',\n '\\t```',\n ``,\n `For more information, see the Package Unification RFC: https://rfcs.emberjs.com/id/1075-warp-drive-package-unification/`,\n ]\n .filter((l) => l !== false)\n .join('\\n');\n\n deprecate(message, false, {\n id: 'warp-drive.deprecate-tracking-package',\n until: '6.0.0',\n for: 'warp-drive',\n since: {\n enabled: '5.3.4',\n available: '4.13',\n },\n url: 'https://deprecations.emberjs.com/id/warp-drive.deprecate-tracking-package',\n });\n}\n"],"names":["ARRAY_SIGNAL","getOrSetGlobal","Symbol","OBJECT_SIGNAL","setupSignals","buildConfig","hooks","wellknown","Array","setTransient","createSignal","obj","key","signalHooks","peekTransient","macroCondition","getGlobalConfig","WarpDrive","env","DEBUG","test","Error","consumeSignal","signal","notifySignal","createMemo","object","fn","willSyncFlushWatchers","deprecations","DEPRECATE_TRACKING_PACKAGE","hasEmberDataTracking","dependencySatisfies","buildSignalConfig","importSync","message","filter","l","join","deprecate","id","until","for","since","enabled","available","url"],"mappings":"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"}
@@ -0,0 +1 @@
1
+ export { s as setupSignals } from "./configure-BfLLW6GY.js";
@@ -0,0 +1 @@
1
+ {"version":3,"file":"configure.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
package/dist/index.js CHANGED
@@ -1,4 +1,5 @@
1
- export { C as CacheHandler, S as default, r as recordIdentifierFor, c as setIdentifierForgetMethod, a as setIdentifierGenerationMethod, d as setIdentifierResetMethod, b as setIdentifierUpdateMethod, e as setKeyInfoForResource, s as storeFor } from "./request-state-Bue-PTUf.js";
1
+ export { C as CacheHandler, S as default, r as recordIdentifierFor, c as setIdentifierForgetMethod, a as setIdentifierGenerationMethod, d as setIdentifierResetMethod, b as setIdentifierUpdateMethod, e as setKeyInfoForResource, s as storeFor } from "./request-state-BrADgFy5.js";
2
2
  import '@ember/debug';
3
3
  import '@embroider/macros';
4
- import '@ember-data/request-utils/string';
4
+ import '@ember-data/request-utils/string';
5
+ import "./configure-BfLLW6GY.js";
package/dist/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;"}
1
+ {"version":3,"file":"index.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}