@mmstack/resource 21.5.0 → 21.5.1

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 CHANGED
@@ -26,6 +26,7 @@ It's designed to be opt-in feature by feature: starting with `queryResource()` a
26
26
  - [Pausing a resource](#pausing-a-resource)
27
27
  - [Default options (`provideResourceOptions`)](#default-options-provideresourceoptions)
28
28
  - [Composition (retry / refresh / keepPrevious)](#composition-retry--refresh--keepprevious)
29
+ - [Testing](#testing)
29
30
  - [Recipes](#recipes)
30
31
 
31
32
  ## Install
@@ -36,7 +37,9 @@ npm install @mmstack/resource
36
37
 
37
38
  ## Quick start
38
39
 
39
- Two-step setup: provide the cache + interceptors in your app config, then create resources in your services or components.
40
+ A plain `queryResource()` works with nothing but `provideHttpClient()` — an in-memory cache is wired up by default. To turn caching on you add the interceptors (below) and opt resources into it per request. `provideQueryCache()` is **optional**: call it only when you want persistence (IndexedDB), cross-tab sync, or to tune the global TTL/stale defaults — it overrides the in-memory default.
41
+
42
+ Recommended app config — interceptors plus `provideQueryCache()` for a tuned, persistent cache:
40
43
 
41
44
  ```typescript
42
45
  import { provideHttpClient, withInterceptors } from '@angular/common/http';
@@ -433,7 +436,7 @@ const rows = keyArray(items, (item) => buildRowVm(item), {
433
436
 
434
437
  ### `provideQueryCache(options?)`
435
438
 
436
- Registers the shared `Cache` in the root injector.
439
+ Overrides the shared `Cache` in the root injector. It's optional — without it `queryResource` falls back to an in-memory cache (no persistence, no cross-tab sync). Call `provideQueryCache()` to add IndexedDB persistence, cross-tab sync, or to tune the global TTL/stale defaults.
437
440
 
438
441
  ```typescript
439
442
  provideQueryCache({
@@ -657,6 +660,96 @@ Practical consequences:
657
660
  - **`keepPrevious` works alongside both.** While a retry or refresh is in flight, `value()` is the previous successful result, not `undefined`.
658
661
  - **Circuit breaker beats retry.** If the breaker opens during a retry sequence, the resource is disabled — no more retries until the breaker probes and closes.
659
662
 
663
+ ## Testing
664
+
665
+ Testing code that uses `queryResource`/`mutationResource` comes down to two things: a deterministic cache and a way to feed mock HTTP responses.
666
+
667
+ ### `provideMockQueryCache(options?)`
668
+
669
+ A real in-memory cache built for tests. Unlike `provideQueryCache()` it never touches IndexedDB or `BroadcastChannel`, and it disables the cleanup sweep interval — so it's safe under `vi.useFakeTimers()` / `jest.useFakeTimers()` and leaves no timers pinned between specs. It's a real cache (not a stub), so cache hits behave exactly as in production and you can assert against them.
670
+
671
+ ```typescript
672
+ import { provideHttpClient, withInterceptors } from '@angular/common/http';
673
+ import { TestBed } from '@angular/core/testing';
674
+ import {
675
+ createCacheInterceptor,
676
+ createDedupeRequestsInterceptor,
677
+ provideMockQueryCache,
678
+ } from '@mmstack/resource';
679
+
680
+ beforeEach(() => {
681
+ TestBed.configureTestingModule({
682
+ providers: [
683
+ provideMockQueryCache(),
684
+ provideHttpClient(
685
+ withInterceptors([
686
+ createCacheInterceptor(),
687
+ createDedupeRequestsInterceptor(),
688
+ // your response-mocking interceptor (see below)
689
+ ]),
690
+ ),
691
+ ],
692
+ });
693
+ });
694
+ ```
695
+
696
+ > A plain `queryResource` no longer requires any cache provider at all (the in-memory default applies), so `provideMockQueryCache()` is only needed when you want the deterministic, timer-free cache for asserting caching behavior.
697
+
698
+ ### `provideMockResourceSensors(options?)`
699
+
700
+ Resources auto-pause when the network drops or the page is hidden. To drive that behavior in a test — instead of relying on the real `navigator.onLine` / `document.visibilityState` — provide controllable sensors. Pass your own writable signals to toggle state mid-test; omit them for a static online + visible environment.
701
+
702
+ ```typescript
703
+ import { signal } from '@angular/core';
704
+ import { provideMockResourceSensors } from '@mmstack/resource';
705
+
706
+ const online = signal(true);
707
+
708
+ TestBed.configureTestingModule({
709
+ providers: [provideMockResourceSensors({ networkStatus: online })],
710
+ });
711
+
712
+ // ...later in the test
713
+ online.set(false); // the resource sees the network drop and disables
714
+ ```
715
+
716
+ ### Mocking HTTP responses
717
+
718
+ For most tests — a cold cache or a resource that doesn't cache — Angular's standard `provideHttpClientTesting()` + `HttpTestingController` works out of the box, because a cache miss flows through the interceptor chain to the testing backend like any other request.
719
+
720
+ ```typescript
721
+ import {
722
+ provideHttpClient,
723
+ provideHttpClientTesting,
724
+ } from '@angular/common/http/testing';
725
+ import { HttpTestingController } from '@angular/common/http/testing';
726
+
727
+ const ctrl = TestBed.inject(HttpTestingController);
728
+ ctrl.expectOne('https://example.com/posts').flush([{ id: 1 }]);
729
+ ```
730
+
731
+ When you specifically want to assert that a **cache hit short-circuits before the network**, `HttpTestingController` won't see the second request (that's the point). For those cases set the mock response on the request's `HttpContext` and read it from a tiny interceptor, which lets you count how many requests actually reached the network:
732
+
733
+ ```typescript
734
+ import { HttpContextToken, type HttpInterceptorFn } from '@angular/common/http';
735
+ import { HttpResponse } from '@angular/common/http';
736
+ import { of } from 'rxjs';
737
+
738
+ const MOCK = new HttpContextToken<() => unknown>(() => () => null);
739
+
740
+ const mockInterceptor: HttpInterceptorFn = (req) =>
741
+ of(new HttpResponse({ body: req.context.get(MOCK)(), status: 200 }));
742
+ ```
743
+
744
+ Pass `context` on the request and reuse the same cache key (same URL) to observe the hit:
745
+
746
+ ```typescript
747
+ queryResource(
748
+ () => ({ url, context: new HttpContext().set(MOCK, () => ({ ok: true })) }),
749
+ { cache: { staleTime: 10_000 } },
750
+ );
751
+ ```
752
+
660
753
  ## Recipes
661
754
 
662
755
  ### Optimistic update with rollback
@@ -1,6 +1,6 @@
1
1
  import { HttpHeaders, HttpParams, HttpResponse, HttpContextToken, HttpContext, httpResource, HttpClient } from '@angular/common/http';
2
2
  import * as i0 from '@angular/core';
3
- import { isDevMode, signal, computed, untracked, InjectionToken, inject, PLATFORM_ID, DestroyRef, effect, Injector, Injectable, runInInjectionContext, linkedSignal } from '@angular/core';
3
+ import { isDevMode, signal, computed, untracked, InjectionToken, inject, DestroyRef, PLATFORM_ID, effect, Injector, Injectable, runInInjectionContext, linkedSignal } from '@angular/core';
4
4
  import { mutable, toWritable, keepPrevious, sensor, injectTransitionScope, injectPaused, nestedEffect } from '@mmstack/primitives';
5
5
  import { finalize, shareReplay, of, tap, map, interval, firstValueFrom, catchError, combineLatestWith, filter } from 'rxjs';
6
6
  import { takeUntilDestroyed, toObservable } from '@angular/core/rxjs-interop';
@@ -498,7 +498,7 @@ class Cache {
498
498
  };
499
499
  if (this.cleanupOpt.maxSize <= 0)
500
500
  throw new Error('maxSize must be greater than 0');
501
- // a non-finite checkInterval disables the sweeper entirely (used by the shared NoopCache)
501
+ // a non-finite checkInterval disables the sweeper entirely (used by provideMockQueryCache)
502
502
  const cleanupInterval = Number.isFinite(this.cleanupOpt.checkInterval)
503
503
  ? setInterval(() => {
504
504
  this.cleanup();
@@ -868,7 +868,48 @@ class Cache {
868
868
  this.internal.set(new Map(keep));
869
869
  }
870
870
  }
871
- const CLIENT_CACHE_TOKEN = new InjectionToken('INTERNAL_CLIENT_CACHE');
871
+ const CLIENT_CACHE_TOKEN = new InjectionToken('INTERNAL_CLIENT_CACHE', {
872
+ // Memory-only default so a plain queryResource works with zero config. No
873
+ // IndexedDB / BroadcastChannel — keeps it SSR-safe and request-isolated under
874
+ // SSR (root injector is per-request). provideQueryCache() overrides this to
875
+ // layer on persistence / cross-tab sync / global TTL tuning.
876
+ providedIn: 'root',
877
+ factory: () => {
878
+ const cache = new Cache();
879
+ inject(DestroyRef, { optional: true })?.onDestroy(() => cache.destroy());
880
+ return cache;
881
+ },
882
+ });
883
+ /**
884
+ * Provides a deterministic, in-memory `QueryCache` for unit tests.
885
+ *
886
+ * Unlike {@link provideQueryCache} this never touches IndexedDB or BroadcastChannel
887
+ * and disables the cleanup sweep interval (`checkInterval: Infinity`), so it plays
888
+ * nicely with `vi.useFakeTimers()`. It's a real cache (not a stub), so you can
889
+ * assert cache hits via {@link injectQueryCache} / its `stats` signal.
890
+ *
891
+ * @example
892
+ * TestBed.configureTestingModule({
893
+ * providers: [
894
+ * provideMockQueryCache(),
895
+ * provideHttpClient(withInterceptors([createCacheInterceptor()])),
896
+ * ],
897
+ * });
898
+ */
899
+ function provideMockQueryCache(opt) {
900
+ return {
901
+ provide: CLIENT_CACHE_TOKEN,
902
+ useFactory: () => {
903
+ const cache = new Cache(opt?.ttl, opt?.staleTime, {
904
+ type: 'lru',
905
+ maxSize: 200,
906
+ checkInterval: Infinity,
907
+ });
908
+ inject(DestroyRef, { optional: true })?.onDestroy(() => cache.destroy());
909
+ return cache;
910
+ },
911
+ };
912
+ }
872
913
  /**
873
914
  * Provides the instance of the QueryCache for queryResource. This should probably be called
874
915
  * in your application's root configuration, but can also be overriden with component/module providers.
@@ -931,15 +972,12 @@ function provideQueryCache(opt) {
931
972
  return null;
932
973
  }
933
974
  };
934
- // version-suffixed so two deploys with incompatible schemas in adjacent tabs don't
935
- // push entries into each other's caches (the `version` option only fences IndexedDB)
936
975
  const syncChannelId = `mmstack-query-cache-sync_v${opt?.version ?? 1}`;
937
976
  return {
938
977
  provide: CLIENT_CACHE_TOKEN,
939
978
  useFactory: () => {
940
979
  const onServer = inject(PLATFORM_ID) === 'server';
941
- // no IndexedDB / BroadcastChannel on the server — each request gets an
942
- // isolated, request-lived, memory-only cache
980
+ // no IndexedDB / BroadcastChannel on the server
943
981
  const syncTabsOpt = !onServer && opt?.syncTabs
944
982
  ? {
945
983
  id: syncChannelId,
@@ -979,24 +1017,6 @@ function provideQueryCache(opt) {
979
1017
  },
980
1018
  };
981
1019
  }
982
- class NoopCache extends Cache {
983
- constructor() {
984
- // Infinity checkInterval → no sweep interval is ever armed, so the shared
985
- // instance below never pins a timer
986
- super(undefined, undefined, {
987
- type: 'lru',
988
- maxSize: 200,
989
- checkInterval: Infinity,
990
- });
991
- }
992
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
993
- store(_, __, ___ = super.staleTime, ____ = super.ttl) {
994
- // noop
995
- }
996
- }
997
- // one shared instance — minting a NoopCache per injectQueryCache() miss would leak
998
- // an instance (and previously an interval) on every prod call without a provider
999
- let NOOP_CACHE;
1000
1020
  /**
1001
1021
  * Injects the `QueryCache` instance that is used within queryResource.
1002
1022
  * Allows for direct modification of cached data, but is mostly meant for internal use.
@@ -1021,18 +1041,8 @@ let NOOP_CACHE;
1021
1041
  */
1022
1042
  function injectQueryCache(injector) {
1023
1043
  const cache = injector
1024
- ? injector.get(CLIENT_CACHE_TOKEN, null, {
1025
- optional: true,
1026
- })
1027
- : inject(CLIENT_CACHE_TOKEN, {
1028
- optional: true,
1029
- });
1030
- if (!cache) {
1031
- if (isDevMode())
1032
- throw new Error('Cache not provided, please add provideQueryCache() to providers array');
1033
- else
1034
- return (NOOP_CACHE ??= new NoopCache());
1035
- }
1044
+ ? injector.get(CLIENT_CACHE_TOKEN)
1045
+ : inject(CLIENT_CACHE_TOKEN);
1036
1046
  return cache;
1037
1047
  }
1038
1048
  /**
@@ -1940,6 +1950,33 @@ function injectNetworkStatus() {
1940
1950
  function injectPageVisibility() {
1941
1951
  return inject(ResourceSensors).pageVisibility;
1942
1952
  }
1953
+ /**
1954
+ * Provides controllable {@link ResourceSensors} for unit tests, letting you drive a
1955
+ * resource's offline / page-hidden behavior deterministically instead of relying on
1956
+ * the real `navigator.onLine` / `document.visibilityState`.
1957
+ *
1958
+ * Pass your own writable signals to toggle state mid-test; omit them for a static
1959
+ * online + visible environment.
1960
+ *
1961
+ * @example
1962
+ * import { signal } from '@angular/core';
1963
+ *
1964
+ * const online = signal(true);
1965
+ * TestBed.configureTestingModule({
1966
+ * providers: [provideMockResourceSensors({ networkStatus: online })],
1967
+ * });
1968
+ * // ...later in the test
1969
+ * online.set(false); // the resource now sees the network as down
1970
+ */
1971
+ function provideMockResourceSensors(opt) {
1972
+ return {
1973
+ provide: ResourceSensors,
1974
+ useValue: {
1975
+ networkStatus: opt?.networkStatus ?? signal(true),
1976
+ pageVisibility: opt?.pageVisibility ?? signal('visible'),
1977
+ },
1978
+ };
1979
+ }
1943
1980
 
1944
1981
  function toResourceObject(res) {
1945
1982
  return {
@@ -2702,5 +2739,5 @@ function mutationResource(request, options0 = {}) {
2702
2739
  * Generated bundle index. Do not edit.
2703
2740
  */
2704
2741
 
2705
- export { Cache, MutationCancelledError, PAUSED, applyResourceRegistration, createCacheInterceptor, createCircuitBreaker, createDedupeRequestsInterceptor, hashRequest, infiniteQueryResource, injectQueryCache, injectResourceOptions, manualQueryResource, mutationResource, noDedupe, provideCircuitBreakerDefaultOptions, provideMutationResourceOptions, provideQueryCache, provideQueryResourceOptions, provideResourceOptions, provideTypedResourceOptions, queryResource };
2742
+ export { Cache, MutationCancelledError, PAUSED, applyResourceRegistration, createCacheInterceptor, createCircuitBreaker, createDedupeRequestsInterceptor, hashRequest, infiniteQueryResource, injectQueryCache, injectResourceOptions, manualQueryResource, mutationResource, noDedupe, provideCircuitBreakerDefaultOptions, provideMockQueryCache, provideMockResourceSensors, provideMutationResourceOptions, provideQueryCache, provideQueryResourceOptions, provideResourceOptions, provideTypedResourceOptions, queryResource };
2706
2743
  //# sourceMappingURL=mmstack-resource.mjs.map