react-rx 3.1.0 → 3.1.2
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/dist/index.cjs +2 -11
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -10
- package/dist/index.js.map +1 -1
- package/package.json +13 -16
- package/src/useObservableEvent.ts +2 -23
- package/dist/index.compiled.js +0 -87
- package/dist/index.compiled.js.map +0 -1
package/dist/index.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: !0 });
|
|
3
|
-
var react = require("react"), rxjs = require("rxjs"), operators = require("rxjs/operators"), observableCallback = require("observable-callback");
|
|
3
|
+
var react = require("react"), rxjs = require("rxjs"), operators = require("rxjs/operators"), observableCallback = require("observable-callback"), useEffectEvent = require("use-effect-event");
|
|
4
4
|
function getValue(value) {
|
|
5
5
|
return typeof value == "function" ? value() : value;
|
|
6
6
|
}
|
|
@@ -52,21 +52,12 @@ function useObservable(observable, initialValue) {
|
|
|
52
52
|
);
|
|
53
53
|
}
|
|
54
54
|
function useObservableEvent(fn) {
|
|
55
|
-
const [[calls$, call]] = react.useState(() => observableCallback.observableCallback()), callback = useEffectEvent(fn);
|
|
55
|
+
const [[calls$, call]] = react.useState(() => observableCallback.observableCallback()), callback = useEffectEvent.useEffectEvent(fn);
|
|
56
56
|
return react.useEffect(() => {
|
|
57
57
|
const subscription = calls$.pipe(callback).subscribe();
|
|
58
58
|
return () => subscription.unsubscribe();
|
|
59
59
|
}, [callback, calls$]), call;
|
|
60
60
|
}
|
|
61
|
-
function useEffectEvent(fn) {
|
|
62
|
-
const ref = react.useRef(null);
|
|
63
|
-
return react.useInsertionEffect(() => {
|
|
64
|
-
ref.current = fn;
|
|
65
|
-
}, [fn]), react.useCallback((...args) => {
|
|
66
|
-
const f = ref.current;
|
|
67
|
-
return f(...args);
|
|
68
|
-
}, []);
|
|
69
|
-
}
|
|
70
61
|
exports.useObservable = useObservable;
|
|
71
62
|
exports.useObservableEvent = useObservableEvent;
|
|
72
63
|
//# sourceMappingURL=index.cjs.map
|
package/dist/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","sources":["../src/useObservable.ts","../src/useObservableEvent.ts"],"sourcesContent":["import {useEffect, useMemo, useRef, useSyncExternalStore} from 'react'\nimport {\n catchError,\n finalize,\n type Observable,\n type ObservedValueOf,\n of,\n share,\n type Subscription,\n} from 'rxjs'\nimport {map, tap} from 'rxjs/operators'\n\nfunction getValue<T>(value: T): T extends () => infer U ? U : T {\n return typeof value === 'function' ? value() : value\n}\n\ninterface CacheRecord<T> {\n subscription: Subscription\n observable: Observable<void>\n snapshot: T\n error?: unknown\n}\n\nconst cache = new WeakMap<Observable<any>, CacheRecord<any>>()\n\n/** @public */\nexport function useObservable<ObservableType extends Observable<any>>(\n observable: ObservableType,\n initialValue: ObservedValueOf<ObservableType> | (() => ObservedValueOf<ObservableType>),\n): ObservedValueOf<ObservableType>\n/** @public */\nexport function useObservable<ObservableType extends Observable<any>>(\n observable: ObservableType,\n): undefined | ObservedValueOf<ObservableType>\n/** @public */\nexport function useObservable<ObservableType extends Observable<any>, InitialValue>(\n observable: ObservableType,\n initialValue: InitialValue,\n): InitialValue | ObservedValueOf<ObservableType>\n/** @public */\nexport function useObservable<ObservableType extends Observable<any>, InitialValue>(\n observable: ObservableType,\n initialValue?: InitialValue | (() => InitialValue),\n): InitialValue | ObservedValueOf<ObservableType> {\n /**\n * Store the initialValue in a ref, as we don't want a changed `initialValue` to trigger a re-subscription.\n * But we also don't want the initialValue to be stale if the observable changes.\n */\n const initialValueRef = useRef(getValue(initialValue) as ObservedValueOf<ObservableType>)\n\n /**\n * Ensures that the initialValue is always up-to-date in case the observable changes.\n */\n useEffect(() => {\n initialValueRef.current = getValue(initialValue) as ObservedValueOf<ObservableType>\n }, [initialValue])\n\n const store = useMemo(() => {\n if (!cache.has(observable)) {\n const entry: Partial<CacheRecord<ObservedValueOf<ObservableType>>> = {\n snapshot: initialValueRef.current,\n }\n entry.observable = observable.pipe(\n map((value) => ({snapshot: value, error: undefined})),\n catchError((error) => of({snapshot: undefined, error})),\n tap(({snapshot, error}) => {\n entry.snapshot = snapshot\n entry.error = error\n }),\n // Note: any value or error emitted by the provided observable will be mapped to the cache entry's mutable state\n // and the observable is thereafter only used as a notifier to call `onStoreChange`, hence the `void` return type.\n map((value) => void value),\n // Ensure that the cache entry is deleted when the observable completes or errors.\n finalize(() => cache.delete(observable)),\n share(),\n )\n\n // Eagerly subscribe to sync set `entry.currentValue` to what the observable returns, and keep the observable alive until the component unmounts.\n entry.subscription = entry.observable.subscribe()\n\n cache.set(observable, entry as CacheRecord<ObservedValueOf<ObservableType>>)\n }\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n const instance = cache.get(observable)!\n if (instance.subscription.closed) {\n instance.subscription = instance.observable.subscribe()\n }\n\n return {\n subscribe: (onStoreChange: () => void) => {\n const subscription = instance.observable.subscribe(onStoreChange)\n instance.subscription.unsubscribe()\n return () => {\n subscription.unsubscribe()\n }\n },\n getSnapshot: () => {\n if (instance.error) {\n throw instance.error\n }\n return instance.snapshot\n },\n }\n }, [observable])\n\n return useSyncExternalStore<ObservedValueOf<ObservableType>>(\n store.subscribe,\n store.getSnapshot,\n typeof initialValueRef.current === 'undefined' ? undefined : () => initialValueRef.current,\n )\n}\n","import {observableCallback} from 'observable-callback'\nimport {
|
|
1
|
+
{"version":3,"file":"index.cjs","sources":["../src/useObservable.ts","../src/useObservableEvent.ts"],"sourcesContent":["import {useEffect, useMemo, useRef, useSyncExternalStore} from 'react'\nimport {\n catchError,\n finalize,\n type Observable,\n type ObservedValueOf,\n of,\n share,\n type Subscription,\n} from 'rxjs'\nimport {map, tap} from 'rxjs/operators'\n\nfunction getValue<T>(value: T): T extends () => infer U ? U : T {\n return typeof value === 'function' ? value() : value\n}\n\ninterface CacheRecord<T> {\n subscription: Subscription\n observable: Observable<void>\n snapshot: T\n error?: unknown\n}\n\nconst cache = new WeakMap<Observable<any>, CacheRecord<any>>()\n\n/** @public */\nexport function useObservable<ObservableType extends Observable<any>>(\n observable: ObservableType,\n initialValue: ObservedValueOf<ObservableType> | (() => ObservedValueOf<ObservableType>),\n): ObservedValueOf<ObservableType>\n/** @public */\nexport function useObservable<ObservableType extends Observable<any>>(\n observable: ObservableType,\n): undefined | ObservedValueOf<ObservableType>\n/** @public */\nexport function useObservable<ObservableType extends Observable<any>, InitialValue>(\n observable: ObservableType,\n initialValue: InitialValue,\n): InitialValue | ObservedValueOf<ObservableType>\n/** @public */\nexport function useObservable<ObservableType extends Observable<any>, InitialValue>(\n observable: ObservableType,\n initialValue?: InitialValue | (() => InitialValue),\n): InitialValue | ObservedValueOf<ObservableType> {\n /**\n * Store the initialValue in a ref, as we don't want a changed `initialValue` to trigger a re-subscription.\n * But we also don't want the initialValue to be stale if the observable changes.\n */\n const initialValueRef = useRef(getValue(initialValue) as ObservedValueOf<ObservableType>)\n\n /**\n * Ensures that the initialValue is always up-to-date in case the observable changes.\n */\n useEffect(() => {\n initialValueRef.current = getValue(initialValue) as ObservedValueOf<ObservableType>\n }, [initialValue])\n\n const store = useMemo(() => {\n if (!cache.has(observable)) {\n const entry: Partial<CacheRecord<ObservedValueOf<ObservableType>>> = {\n snapshot: initialValueRef.current,\n }\n entry.observable = observable.pipe(\n map((value) => ({snapshot: value, error: undefined})),\n catchError((error) => of({snapshot: undefined, error})),\n tap(({snapshot, error}) => {\n entry.snapshot = snapshot\n entry.error = error\n }),\n // Note: any value or error emitted by the provided observable will be mapped to the cache entry's mutable state\n // and the observable is thereafter only used as a notifier to call `onStoreChange`, hence the `void` return type.\n map((value) => void value),\n // Ensure that the cache entry is deleted when the observable completes or errors.\n finalize(() => cache.delete(observable)),\n share(),\n )\n\n // Eagerly subscribe to sync set `entry.currentValue` to what the observable returns, and keep the observable alive until the component unmounts.\n entry.subscription = entry.observable.subscribe()\n\n cache.set(observable, entry as CacheRecord<ObservedValueOf<ObservableType>>)\n }\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n const instance = cache.get(observable)!\n if (instance.subscription.closed) {\n instance.subscription = instance.observable.subscribe()\n }\n\n return {\n subscribe: (onStoreChange: () => void) => {\n const subscription = instance.observable.subscribe(onStoreChange)\n instance.subscription.unsubscribe()\n return () => {\n subscription.unsubscribe()\n }\n },\n getSnapshot: () => {\n if (instance.error) {\n throw instance.error\n }\n return instance.snapshot\n },\n }\n }, [observable])\n\n return useSyncExternalStore<ObservedValueOf<ObservableType>>(\n store.subscribe,\n store.getSnapshot,\n typeof initialValueRef.current === 'undefined' ? undefined : () => initialValueRef.current,\n )\n}\n","import {observableCallback} from 'observable-callback'\nimport {useEffect, useState} from 'react'\nimport {type Observable} from 'rxjs'\nimport {useEffectEvent} from 'use-effect-event'\n\n/** @public */\nexport function useObservableEvent<T, U>(\n fn: (arg: Observable<T>) => Observable<U>,\n): (arg: T) => void {\n const [[calls$, call]] = useState(() => observableCallback<T>())\n\n const callback = useEffectEvent(fn)\n\n useEffect(() => {\n const subscription = calls$.pipe(callback).subscribe()\n return () => subscription.unsubscribe()\n }, [callback, calls$])\n\n return call\n}\n"],"names":["useRef","useEffect","useMemo","map","catchError","of","tap","finalize","share","useSyncExternalStore","useState","observableCallback","useEffectEvent"],"mappings":";;;AAYA,SAAS,SAAY,OAA2C;AAC9D,SAAO,OAAO,SAAU,aAAa,MAAA,IAAU;AACjD;AASA,MAAM,4BAAY;AAiBF,SAAA,cACd,YACA,cACgD;AAKhD,QAAM,kBAAkBA,MAAA,OAAO,SAAS,YAAY,CAAoC;AAKxFC,QAAAA,UAAU,MAAM;AACE,oBAAA,UAAU,SAAS,YAAY;AAAA,EAAA,GAC9C,CAAC,YAAY,CAAC;AAEX,QAAA,QAAQC,MAAAA,QAAQ,MAAM;AAC1B,QAAI,CAAC,MAAM,IAAI,UAAU,GAAG;AAC1B,YAAM,QAA+D;AAAA,QACnE,UAAU,gBAAgB;AAAA,MAAA;AAE5B,YAAM,aAAa,WAAW;AAAA,QAC5BC,cAAI,CAAC,WAAW,EAAC,UAAU,OAAO,OAAO,SAAW;AAAA,QACpDC,gBAAW,CAAC,UAAUC,QAAG,EAAC,UAAU,QAAW,MAAK,CAAC,CAAC;AAAA,QACtDC,UAAAA,IAAI,CAAC,EAAC,UAAU,YAAW;AACnB,gBAAA,WAAW,UACjB,MAAM,QAAQ;AAAA,QAAA,CACf;AAAA;AAAA;AAAA,QAGDH,UAAA,IAAI,CAAC,UAAO;AAAA,QAAA,CAAa;AAAA;AAAA,QAEzBI,KAAAA,SAAS,MAAM,MAAM,OAAO,UAAU,CAAC;AAAA,QACvCC,WAAM;AAAA,MACR,GAGA,MAAM,eAAe,MAAM,WAAW,aAEtC,MAAM,IAAI,YAAY,KAAqD;AAAA,IAC7E;AAEM,UAAA,WAAW,MAAM,IAAI,UAAU;AACjC,WAAA,SAAS,aAAa,WACxB,SAAS,eAAe,SAAS,WAAW,cAGvC;AAAA,MACL,WAAW,CAAC,kBAA8B;AACxC,cAAM,eAAe,SAAS,WAAW,UAAU,aAAa;AACvD,eAAA,SAAA,aAAa,YAAY,GAC3B,MAAM;AACX,uBAAa,YAAY;AAAA,QAAA;AAAA,MAE7B;AAAA,MACA,aAAa,MAAM;AACjB,YAAI,SAAS;AACX,gBAAM,SAAS;AAEjB,eAAO,SAAS;AAAA,MAClB;AAAA,IAAA;AAAA,EACF,GACC,CAAC,UAAU,CAAC;AAER,SAAAC,MAAA;AAAA,IACL,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO,gBAAgB,UAAY,MAAc,SAAY,MAAM,gBAAgB;AAAA,EAAA;AAEvF;ACxGO,SAAS,mBACd,IACkB;AAClB,QAAM,CAAC,CAAC,QAAQ,IAAI,CAAC,IAAIC,MAAS,SAAA,MAAMC,mBAAsB,mBAAA,CAAC,GAEzD,WAAWC,8BAAe,EAAE;AAElC,SAAAX,MAAA,UAAU,MAAM;AACd,UAAM,eAAe,OAAO,KAAK,QAAQ,EAAE,UAAU;AAC9C,WAAA,MAAM,aAAa;EACzB,GAAA,CAAC,UAAU,MAAM,CAAC,GAEd;AACT;;;"}
|
package/dist/index.js
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { useRef, useEffect, useMemo, useSyncExternalStore, useState
|
|
1
|
+
import { useRef, useEffect, useMemo, useSyncExternalStore, useState } from "react";
|
|
2
2
|
import { catchError, of, finalize, share } from "rxjs";
|
|
3
3
|
import { map, tap } from "rxjs/operators";
|
|
4
4
|
import { observableCallback } from "observable-callback";
|
|
5
|
+
import { useEffectEvent } from "use-effect-event";
|
|
5
6
|
function getValue(value) {
|
|
6
7
|
return typeof value == "function" ? value() : value;
|
|
7
8
|
}
|
|
@@ -59,15 +60,6 @@ function useObservableEvent(fn) {
|
|
|
59
60
|
return () => subscription.unsubscribe();
|
|
60
61
|
}, [callback, calls$]), call;
|
|
61
62
|
}
|
|
62
|
-
function useEffectEvent(fn) {
|
|
63
|
-
const ref = useRef(null);
|
|
64
|
-
return useInsertionEffect(() => {
|
|
65
|
-
ref.current = fn;
|
|
66
|
-
}, [fn]), useCallback((...args) => {
|
|
67
|
-
const f = ref.current;
|
|
68
|
-
return f(...args);
|
|
69
|
-
}, []);
|
|
70
|
-
}
|
|
71
63
|
export {
|
|
72
64
|
useObservable,
|
|
73
65
|
useObservableEvent
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../src/useObservable.ts","../src/useObservableEvent.ts"],"sourcesContent":["import {useEffect, useMemo, useRef, useSyncExternalStore} from 'react'\nimport {\n catchError,\n finalize,\n type Observable,\n type ObservedValueOf,\n of,\n share,\n type Subscription,\n} from 'rxjs'\nimport {map, tap} from 'rxjs/operators'\n\nfunction getValue<T>(value: T): T extends () => infer U ? U : T {\n return typeof value === 'function' ? value() : value\n}\n\ninterface CacheRecord<T> {\n subscription: Subscription\n observable: Observable<void>\n snapshot: T\n error?: unknown\n}\n\nconst cache = new WeakMap<Observable<any>, CacheRecord<any>>()\n\n/** @public */\nexport function useObservable<ObservableType extends Observable<any>>(\n observable: ObservableType,\n initialValue: ObservedValueOf<ObservableType> | (() => ObservedValueOf<ObservableType>),\n): ObservedValueOf<ObservableType>\n/** @public */\nexport function useObservable<ObservableType extends Observable<any>>(\n observable: ObservableType,\n): undefined | ObservedValueOf<ObservableType>\n/** @public */\nexport function useObservable<ObservableType extends Observable<any>, InitialValue>(\n observable: ObservableType,\n initialValue: InitialValue,\n): InitialValue | ObservedValueOf<ObservableType>\n/** @public */\nexport function useObservable<ObservableType extends Observable<any>, InitialValue>(\n observable: ObservableType,\n initialValue?: InitialValue | (() => InitialValue),\n): InitialValue | ObservedValueOf<ObservableType> {\n /**\n * Store the initialValue in a ref, as we don't want a changed `initialValue` to trigger a re-subscription.\n * But we also don't want the initialValue to be stale if the observable changes.\n */\n const initialValueRef = useRef(getValue(initialValue) as ObservedValueOf<ObservableType>)\n\n /**\n * Ensures that the initialValue is always up-to-date in case the observable changes.\n */\n useEffect(() => {\n initialValueRef.current = getValue(initialValue) as ObservedValueOf<ObservableType>\n }, [initialValue])\n\n const store = useMemo(() => {\n if (!cache.has(observable)) {\n const entry: Partial<CacheRecord<ObservedValueOf<ObservableType>>> = {\n snapshot: initialValueRef.current,\n }\n entry.observable = observable.pipe(\n map((value) => ({snapshot: value, error: undefined})),\n catchError((error) => of({snapshot: undefined, error})),\n tap(({snapshot, error}) => {\n entry.snapshot = snapshot\n entry.error = error\n }),\n // Note: any value or error emitted by the provided observable will be mapped to the cache entry's mutable state\n // and the observable is thereafter only used as a notifier to call `onStoreChange`, hence the `void` return type.\n map((value) => void value),\n // Ensure that the cache entry is deleted when the observable completes or errors.\n finalize(() => cache.delete(observable)),\n share(),\n )\n\n // Eagerly subscribe to sync set `entry.currentValue` to what the observable returns, and keep the observable alive until the component unmounts.\n entry.subscription = entry.observable.subscribe()\n\n cache.set(observable, entry as CacheRecord<ObservedValueOf<ObservableType>>)\n }\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n const instance = cache.get(observable)!\n if (instance.subscription.closed) {\n instance.subscription = instance.observable.subscribe()\n }\n\n return {\n subscribe: (onStoreChange: () => void) => {\n const subscription = instance.observable.subscribe(onStoreChange)\n instance.subscription.unsubscribe()\n return () => {\n subscription.unsubscribe()\n }\n },\n getSnapshot: () => {\n if (instance.error) {\n throw instance.error\n }\n return instance.snapshot\n },\n }\n }, [observable])\n\n return useSyncExternalStore<ObservedValueOf<ObservableType>>(\n store.subscribe,\n store.getSnapshot,\n typeof initialValueRef.current === 'undefined' ? undefined : () => initialValueRef.current,\n )\n}\n","import {observableCallback} from 'observable-callback'\nimport {
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/useObservable.ts","../src/useObservableEvent.ts"],"sourcesContent":["import {useEffect, useMemo, useRef, useSyncExternalStore} from 'react'\nimport {\n catchError,\n finalize,\n type Observable,\n type ObservedValueOf,\n of,\n share,\n type Subscription,\n} from 'rxjs'\nimport {map, tap} from 'rxjs/operators'\n\nfunction getValue<T>(value: T): T extends () => infer U ? U : T {\n return typeof value === 'function' ? value() : value\n}\n\ninterface CacheRecord<T> {\n subscription: Subscription\n observable: Observable<void>\n snapshot: T\n error?: unknown\n}\n\nconst cache = new WeakMap<Observable<any>, CacheRecord<any>>()\n\n/** @public */\nexport function useObservable<ObservableType extends Observable<any>>(\n observable: ObservableType,\n initialValue: ObservedValueOf<ObservableType> | (() => ObservedValueOf<ObservableType>),\n): ObservedValueOf<ObservableType>\n/** @public */\nexport function useObservable<ObservableType extends Observable<any>>(\n observable: ObservableType,\n): undefined | ObservedValueOf<ObservableType>\n/** @public */\nexport function useObservable<ObservableType extends Observable<any>, InitialValue>(\n observable: ObservableType,\n initialValue: InitialValue,\n): InitialValue | ObservedValueOf<ObservableType>\n/** @public */\nexport function useObservable<ObservableType extends Observable<any>, InitialValue>(\n observable: ObservableType,\n initialValue?: InitialValue | (() => InitialValue),\n): InitialValue | ObservedValueOf<ObservableType> {\n /**\n * Store the initialValue in a ref, as we don't want a changed `initialValue` to trigger a re-subscription.\n * But we also don't want the initialValue to be stale if the observable changes.\n */\n const initialValueRef = useRef(getValue(initialValue) as ObservedValueOf<ObservableType>)\n\n /**\n * Ensures that the initialValue is always up-to-date in case the observable changes.\n */\n useEffect(() => {\n initialValueRef.current = getValue(initialValue) as ObservedValueOf<ObservableType>\n }, [initialValue])\n\n const store = useMemo(() => {\n if (!cache.has(observable)) {\n const entry: Partial<CacheRecord<ObservedValueOf<ObservableType>>> = {\n snapshot: initialValueRef.current,\n }\n entry.observable = observable.pipe(\n map((value) => ({snapshot: value, error: undefined})),\n catchError((error) => of({snapshot: undefined, error})),\n tap(({snapshot, error}) => {\n entry.snapshot = snapshot\n entry.error = error\n }),\n // Note: any value or error emitted by the provided observable will be mapped to the cache entry's mutable state\n // and the observable is thereafter only used as a notifier to call `onStoreChange`, hence the `void` return type.\n map((value) => void value),\n // Ensure that the cache entry is deleted when the observable completes or errors.\n finalize(() => cache.delete(observable)),\n share(),\n )\n\n // Eagerly subscribe to sync set `entry.currentValue` to what the observable returns, and keep the observable alive until the component unmounts.\n entry.subscription = entry.observable.subscribe()\n\n cache.set(observable, entry as CacheRecord<ObservedValueOf<ObservableType>>)\n }\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n const instance = cache.get(observable)!\n if (instance.subscription.closed) {\n instance.subscription = instance.observable.subscribe()\n }\n\n return {\n subscribe: (onStoreChange: () => void) => {\n const subscription = instance.observable.subscribe(onStoreChange)\n instance.subscription.unsubscribe()\n return () => {\n subscription.unsubscribe()\n }\n },\n getSnapshot: () => {\n if (instance.error) {\n throw instance.error\n }\n return instance.snapshot\n },\n }\n }, [observable])\n\n return useSyncExternalStore<ObservedValueOf<ObservableType>>(\n store.subscribe,\n store.getSnapshot,\n typeof initialValueRef.current === 'undefined' ? undefined : () => initialValueRef.current,\n )\n}\n","import {observableCallback} from 'observable-callback'\nimport {useEffect, useState} from 'react'\nimport {type Observable} from 'rxjs'\nimport {useEffectEvent} from 'use-effect-event'\n\n/** @public */\nexport function useObservableEvent<T, U>(\n fn: (arg: Observable<T>) => Observable<U>,\n): (arg: T) => void {\n const [[calls$, call]] = useState(() => observableCallback<T>())\n\n const callback = useEffectEvent(fn)\n\n useEffect(() => {\n const subscription = calls$.pipe(callback).subscribe()\n return () => subscription.unsubscribe()\n }, [callback, calls$])\n\n return call\n}\n"],"names":[],"mappings":";;;;;AAYA,SAAS,SAAY,OAA2C;AAC9D,SAAO,OAAO,SAAU,aAAa,MAAA,IAAU;AACjD;AASA,MAAM,4BAAY;AAiBF,SAAA,cACd,YACA,cACgD;AAKhD,QAAM,kBAAkB,OAAO,SAAS,YAAY,CAAoC;AAKxF,YAAU,MAAM;AACE,oBAAA,UAAU,SAAS,YAAY;AAAA,EAAA,GAC9C,CAAC,YAAY,CAAC;AAEX,QAAA,QAAQ,QAAQ,MAAM;AAC1B,QAAI,CAAC,MAAM,IAAI,UAAU,GAAG;AAC1B,YAAM,QAA+D;AAAA,QACnE,UAAU,gBAAgB;AAAA,MAAA;AAE5B,YAAM,aAAa,WAAW;AAAA,QAC5B,IAAI,CAAC,WAAW,EAAC,UAAU,OAAO,OAAO,SAAW;AAAA,QACpD,WAAW,CAAC,UAAU,GAAG,EAAC,UAAU,QAAW,MAAK,CAAC,CAAC;AAAA,QACtD,IAAI,CAAC,EAAC,UAAU,YAAW;AACnB,gBAAA,WAAW,UACjB,MAAM,QAAQ;AAAA,QAAA,CACf;AAAA;AAAA;AAAA,QAGD,IAAI,CAAC,UAAO;AAAA,QAAA,CAAa;AAAA;AAAA,QAEzB,SAAS,MAAM,MAAM,OAAO,UAAU,CAAC;AAAA,QACvC,MAAM;AAAA,MACR,GAGA,MAAM,eAAe,MAAM,WAAW,aAEtC,MAAM,IAAI,YAAY,KAAqD;AAAA,IAC7E;AAEM,UAAA,WAAW,MAAM,IAAI,UAAU;AACjC,WAAA,SAAS,aAAa,WACxB,SAAS,eAAe,SAAS,WAAW,cAGvC;AAAA,MACL,WAAW,CAAC,kBAA8B;AACxC,cAAM,eAAe,SAAS,WAAW,UAAU,aAAa;AACvD,eAAA,SAAA,aAAa,YAAY,GAC3B,MAAM;AACX,uBAAa,YAAY;AAAA,QAAA;AAAA,MAE7B;AAAA,MACA,aAAa,MAAM;AACjB,YAAI,SAAS;AACX,gBAAM,SAAS;AAEjB,eAAO,SAAS;AAAA,MAClB;AAAA,IAAA;AAAA,EACF,GACC,CAAC,UAAU,CAAC;AAER,SAAA;AAAA,IACL,MAAM;AAAA,IACN,MAAM;AAAA,IACN,OAAO,gBAAgB,UAAY,MAAc,SAAY,MAAM,gBAAgB;AAAA,EAAA;AAEvF;ACxGO,SAAS,mBACd,IACkB;AAClB,QAAM,CAAC,CAAC,QAAQ,IAAI,CAAC,IAAI,SAAS,MAAM,mBAAsB,CAAC,GAEzD,WAAW,eAAe,EAAE;AAElC,SAAA,UAAU,MAAM;AACd,UAAM,eAAe,OAAO,KAAK,QAAQ,EAAE,UAAU;AAC9C,WAAA,MAAM,aAAa;EACzB,GAAA,CAAC,UAAU,MAAM,CAAC,GAEd;AACT;"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-rx",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.2",
|
|
4
4
|
"description": "React + RxJS = <3",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"action",
|
|
@@ -50,10 +50,6 @@
|
|
|
50
50
|
"exports": {
|
|
51
51
|
".": {
|
|
52
52
|
"source": "./src/index.ts",
|
|
53
|
-
"react-compiler": {
|
|
54
|
-
"source": "./src/index.ts",
|
|
55
|
-
"default": "./dist/index.compiled.js"
|
|
56
|
-
},
|
|
57
53
|
"require": "./dist/index.cjs",
|
|
58
54
|
"default": "./dist/index.js"
|
|
59
55
|
},
|
|
@@ -78,26 +74,27 @@
|
|
|
78
74
|
"browserslist": "extends @sanity/browserslist-config",
|
|
79
75
|
"prettier": "@sanity/prettier-config",
|
|
80
76
|
"dependencies": {
|
|
81
|
-
"observable-callback": "^1.0.3"
|
|
77
|
+
"observable-callback": "^1.0.3",
|
|
78
|
+
"use-effect-event": "^1.0.2"
|
|
82
79
|
},
|
|
83
80
|
"devDependencies": {
|
|
84
|
-
"@sanity/pkg-utils": "^6.10.
|
|
81
|
+
"@sanity/pkg-utils": "^6.10.2",
|
|
85
82
|
"@sanity/prettier-config": "^1.0.2",
|
|
86
|
-
"@sanity/semantic-release-preset": "^
|
|
87
|
-
"@testing-library/dom": "^10.1
|
|
83
|
+
"@sanity/semantic-release-preset": "^5.0.0",
|
|
84
|
+
"@testing-library/dom": "^10.3.1",
|
|
88
85
|
"@testing-library/react": "^16.0.0",
|
|
89
86
|
"@types/node": "^18.17.5",
|
|
90
87
|
"@types/react": "^18.3.3",
|
|
91
88
|
"@types/react-dom": "^18.3.0",
|
|
92
|
-
"@typescript-eslint/eslint-plugin": "^7.
|
|
93
|
-
"@typescript-eslint/parser": "^7.
|
|
89
|
+
"@typescript-eslint/eslint-plugin": "^7.16.0",
|
|
90
|
+
"@typescript-eslint/parser": "^7.16.0",
|
|
94
91
|
"eslint": "^8.57.0",
|
|
95
92
|
"eslint-config-prettier": "^9.1.0",
|
|
96
93
|
"eslint-plugin-prettier": "^5.1.3",
|
|
97
|
-
"eslint-plugin-react": "^7.34.
|
|
94
|
+
"eslint-plugin-react": "^7.34.3",
|
|
98
95
|
"eslint-plugin-react-compiler": "0.0.0-experimental-51a85ea-20240601",
|
|
99
96
|
"eslint-plugin-react-hooks": "^4.6.2",
|
|
100
|
-
"eslint-plugin-simple-import-sort": "^12.1.
|
|
97
|
+
"eslint-plugin-simple-import-sort": "^12.1.1",
|
|
101
98
|
"jsdom": "^24.1.0",
|
|
102
99
|
"prettier": "^3.3.2",
|
|
103
100
|
"react": "^18.3.1",
|
|
@@ -105,12 +102,12 @@
|
|
|
105
102
|
"react-test-renderer": "^18.3.1",
|
|
106
103
|
"rxjs": "^7.8.1",
|
|
107
104
|
"semantic-release": "^24.0.0",
|
|
108
|
-
"typescript": "5.
|
|
109
|
-
"vitest": "^
|
|
105
|
+
"typescript": "5.5.3",
|
|
106
|
+
"vitest": "^2.0.1"
|
|
110
107
|
},
|
|
111
108
|
"peerDependencies": {
|
|
112
109
|
"react": "^18.3 || >=19.0.0-rc",
|
|
113
110
|
"rxjs": "^7"
|
|
114
111
|
},
|
|
115
|
-
"packageManager": "pnpm@9.
|
|
112
|
+
"packageManager": "pnpm@9.5.0"
|
|
116
113
|
}
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import {observableCallback} from 'observable-callback'
|
|
2
|
-
import {
|
|
2
|
+
import {useEffect, useState} from 'react'
|
|
3
3
|
import {type Observable} from 'rxjs'
|
|
4
|
+
import {useEffectEvent} from 'use-effect-event'
|
|
4
5
|
|
|
5
6
|
/** @public */
|
|
6
7
|
export function useObservableEvent<T, U>(
|
|
@@ -17,25 +18,3 @@ export function useObservableEvent<T, U>(
|
|
|
17
18
|
|
|
18
19
|
return call
|
|
19
20
|
}
|
|
20
|
-
|
|
21
|
-
/**
|
|
22
|
-
* This is a ponyfill of the upcoming `useEffectEvent` hook that'll arrive in React 19.
|
|
23
|
-
* https://19.react.dev/learn/separating-events-from-effects#declaring-an-effect-event
|
|
24
|
-
* To learn more about the ponyfill itself, see: https://blog.bitsrc.io/a-look-inside-the-useevent-polyfill-from-the-new-react-docs-d1c4739e8072
|
|
25
|
-
*/
|
|
26
|
-
function useEffectEvent<
|
|
27
|
-
const T extends (
|
|
28
|
-
...args: // eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
29
|
-
any[]
|
|
30
|
-
) => void,
|
|
31
|
-
>(fn: T): T {
|
|
32
|
-
const ref = useRef<T | null>(null)
|
|
33
|
-
useInsertionEffect(() => {
|
|
34
|
-
ref.current = fn
|
|
35
|
-
}, [fn])
|
|
36
|
-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
|
|
37
|
-
return useCallback((...args: any[]) => {
|
|
38
|
-
const f = ref.current!
|
|
39
|
-
return f(...args)
|
|
40
|
-
}, []) as T
|
|
41
|
-
}
|
package/dist/index.compiled.js
DELETED
|
@@ -1,87 +0,0 @@
|
|
|
1
|
-
import { c } from "react/compiler-runtime";
|
|
2
|
-
import { useRef, useEffect, useSyncExternalStore, useState, useInsertionEffect } from "react";
|
|
3
|
-
import { catchError, of, finalize, share } from "rxjs";
|
|
4
|
-
import { map, tap } from "rxjs/operators";
|
|
5
|
-
import { observableCallback } from "observable-callback";
|
|
6
|
-
function getValue(value) {
|
|
7
|
-
return typeof value == "function" ? value() : value;
|
|
8
|
-
}
|
|
9
|
-
const cache = /* @__PURE__ */ new WeakMap();
|
|
10
|
-
function useObservable(observable, initialValue) {
|
|
11
|
-
const $ = c(14), initialValueRef = useRef(getValue(initialValue));
|
|
12
|
-
let t0;
|
|
13
|
-
$[0] !== initialValue ? (t0 = [initialValue], $[0] = initialValue, $[1] = t0) : t0 = $[1], useEffect(() => {
|
|
14
|
-
initialValueRef.current = getValue(initialValue);
|
|
15
|
-
}, t0);
|
|
16
|
-
let t1;
|
|
17
|
-
if (!cache.has(observable)) {
|
|
18
|
-
const entry = {
|
|
19
|
-
snapshot: initialValueRef.current
|
|
20
|
-
};
|
|
21
|
-
entry.observable = observable.pipe(map((value) => ({
|
|
22
|
-
snapshot: value,
|
|
23
|
-
error: void 0
|
|
24
|
-
})), catchError((error) => of({
|
|
25
|
-
snapshot: void 0,
|
|
26
|
-
error
|
|
27
|
-
})), tap((t22) => {
|
|
28
|
-
const {
|
|
29
|
-
snapshot,
|
|
30
|
-
error: error_0
|
|
31
|
-
} = t22;
|
|
32
|
-
entry.snapshot = snapshot, entry.error = error_0;
|
|
33
|
-
}), map((value_0) => {
|
|
34
|
-
}), finalize(() => cache.delete(observable)), share()), entry.subscription = entry.observable.subscribe(), cache.set(observable, entry);
|
|
35
|
-
}
|
|
36
|
-
let instance;
|
|
37
|
-
$[2] !== observable ? (instance = cache.get(observable), instance.subscription.closed && (instance.subscription = instance.observable.subscribe()), $[2] = observable, $[3] = instance) : instance = $[3];
|
|
38
|
-
let t2;
|
|
39
|
-
$[4] !== instance.observable || $[5] !== instance.subscription ? (t2 = (onStoreChange) => {
|
|
40
|
-
const subscription = instance.observable.subscribe(onStoreChange);
|
|
41
|
-
return instance.subscription.unsubscribe(), () => {
|
|
42
|
-
subscription.unsubscribe();
|
|
43
|
-
};
|
|
44
|
-
}, $[4] = instance.observable, $[5] = instance.subscription, $[6] = t2) : t2 = $[6];
|
|
45
|
-
let t3;
|
|
46
|
-
$[7] !== instance.error || $[8] !== instance.snapshot ? (t3 = () => {
|
|
47
|
-
if (instance.error)
|
|
48
|
-
throw instance.error;
|
|
49
|
-
return instance.snapshot;
|
|
50
|
-
}, $[7] = instance.error, $[8] = instance.snapshot, $[9] = t3) : t3 = $[9];
|
|
51
|
-
let t4;
|
|
52
|
-
$[10] !== t2 || $[11] !== t3 ? (t4 = {
|
|
53
|
-
subscribe: t2,
|
|
54
|
-
getSnapshot: t3
|
|
55
|
-
}, $[10] = t2, $[11] = t3, $[12] = t4) : t4 = $[12], t1 = t4;
|
|
56
|
-
const store = t1;
|
|
57
|
-
let t5;
|
|
58
|
-
return $[13] === Symbol.for("react.memo_cache_sentinel") ? (t5 = typeof initialValueRef.current > "u" ? void 0 : () => initialValueRef.current, $[13] = t5) : t5 = $[13], useSyncExternalStore(store.subscribe, store.getSnapshot, t5);
|
|
59
|
-
}
|
|
60
|
-
function useObservableEvent(fn) {
|
|
61
|
-
const $ = c(5);
|
|
62
|
-
let t0;
|
|
63
|
-
$[0] === Symbol.for("react.memo_cache_sentinel") ? (t0 = () => observableCallback(), $[0] = t0) : t0 = $[0];
|
|
64
|
-
const [t1] = useState(t0), [calls$, call] = t1, callback = useEffectEvent(fn);
|
|
65
|
-
let t2, t3;
|
|
66
|
-
return $[1] !== calls$ || $[2] !== callback ? (t2 = () => {
|
|
67
|
-
const subscription = calls$.pipe(callback).subscribe();
|
|
68
|
-
return () => subscription.unsubscribe();
|
|
69
|
-
}, t3 = [callback, calls$], $[1] = calls$, $[2] = callback, $[3] = t2, $[4] = t3) : (t2 = $[3], t3 = $[4]), useEffect(t2, t3), call;
|
|
70
|
-
}
|
|
71
|
-
function useEffectEvent(fn) {
|
|
72
|
-
const $ = c(4), ref = useRef(null);
|
|
73
|
-
let t0, t1;
|
|
74
|
-
$[0] !== fn ? (t0 = () => {
|
|
75
|
-
ref.current = fn;
|
|
76
|
-
}, t1 = [fn], $[0] = fn, $[1] = t0, $[2] = t1) : (t0 = $[1], t1 = $[2]), useInsertionEffect(t0, t1);
|
|
77
|
-
let t2;
|
|
78
|
-
return $[3] === Symbol.for("react.memo_cache_sentinel") ? (t2 = (...t3) => {
|
|
79
|
-
const args = t3, f = ref.current;
|
|
80
|
-
return f(...args);
|
|
81
|
-
}, $[3] = t2) : t2 = $[3], t2;
|
|
82
|
-
}
|
|
83
|
-
export {
|
|
84
|
-
useObservable,
|
|
85
|
-
useObservableEvent
|
|
86
|
-
};
|
|
87
|
-
//# sourceMappingURL=index.compiled.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.compiled.js","sources":["../src/useObservable.ts","../src/useObservableEvent.ts"],"sourcesContent":["import {useEffect, useMemo, useRef, useSyncExternalStore} from 'react'\nimport {\n catchError,\n finalize,\n type Observable,\n type ObservedValueOf,\n of,\n share,\n type Subscription,\n} from 'rxjs'\nimport {map, tap} from 'rxjs/operators'\n\nfunction getValue<T>(value: T): T extends () => infer U ? U : T {\n return typeof value === 'function' ? value() : value\n}\n\ninterface CacheRecord<T> {\n subscription: Subscription\n observable: Observable<void>\n snapshot: T\n error?: unknown\n}\n\nconst cache = new WeakMap<Observable<any>, CacheRecord<any>>()\n\n/** @public */\nexport function useObservable<ObservableType extends Observable<any>>(\n observable: ObservableType,\n initialValue: ObservedValueOf<ObservableType> | (() => ObservedValueOf<ObservableType>),\n): ObservedValueOf<ObservableType>\n/** @public */\nexport function useObservable<ObservableType extends Observable<any>>(\n observable: ObservableType,\n): undefined | ObservedValueOf<ObservableType>\n/** @public */\nexport function useObservable<ObservableType extends Observable<any>, InitialValue>(\n observable: ObservableType,\n initialValue: InitialValue,\n): InitialValue | ObservedValueOf<ObservableType>\n/** @public */\nexport function useObservable<ObservableType extends Observable<any>, InitialValue>(\n observable: ObservableType,\n initialValue?: InitialValue | (() => InitialValue),\n): InitialValue | ObservedValueOf<ObservableType> {\n /**\n * Store the initialValue in a ref, as we don't want a changed `initialValue` to trigger a re-subscription.\n * But we also don't want the initialValue to be stale if the observable changes.\n */\n const initialValueRef = useRef(getValue(initialValue) as ObservedValueOf<ObservableType>)\n\n /**\n * Ensures that the initialValue is always up-to-date in case the observable changes.\n */\n useEffect(() => {\n initialValueRef.current = getValue(initialValue) as ObservedValueOf<ObservableType>\n }, [initialValue])\n\n const store = useMemo(() => {\n if (!cache.has(observable)) {\n const entry: Partial<CacheRecord<ObservedValueOf<ObservableType>>> = {\n snapshot: initialValueRef.current,\n }\n entry.observable = observable.pipe(\n map((value) => ({snapshot: value, error: undefined})),\n catchError((error) => of({snapshot: undefined, error})),\n tap(({snapshot, error}) => {\n entry.snapshot = snapshot\n entry.error = error\n }),\n // Note: any value or error emitted by the provided observable will be mapped to the cache entry's mutable state\n // and the observable is thereafter only used as a notifier to call `onStoreChange`, hence the `void` return type.\n map((value) => void value),\n // Ensure that the cache entry is deleted when the observable completes or errors.\n finalize(() => cache.delete(observable)),\n share(),\n )\n\n // Eagerly subscribe to sync set `entry.currentValue` to what the observable returns, and keep the observable alive until the component unmounts.\n entry.subscription = entry.observable.subscribe()\n\n cache.set(observable, entry as CacheRecord<ObservedValueOf<ObservableType>>)\n }\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n const instance = cache.get(observable)!\n if (instance.subscription.closed) {\n instance.subscription = instance.observable.subscribe()\n }\n\n return {\n subscribe: (onStoreChange: () => void) => {\n const subscription = instance.observable.subscribe(onStoreChange)\n instance.subscription.unsubscribe()\n return () => {\n subscription.unsubscribe()\n }\n },\n getSnapshot: () => {\n if (instance.error) {\n throw instance.error\n }\n return instance.snapshot\n },\n }\n }, [observable])\n\n return useSyncExternalStore<ObservedValueOf<ObservableType>>(\n store.subscribe,\n store.getSnapshot,\n typeof initialValueRef.current === 'undefined' ? undefined : () => initialValueRef.current,\n )\n}\n","import {observableCallback} from 'observable-callback'\nimport {useCallback, useEffect, useInsertionEffect, useRef, useState} from 'react'\nimport {type Observable} from 'rxjs'\n\n/** @public */\nexport function useObservableEvent<T, U>(\n fn: (arg: Observable<T>) => Observable<U>,\n): (arg: T) => void {\n const [[calls$, call]] = useState(() => observableCallback<T>())\n\n const callback = useEffectEvent(fn)\n\n useEffect(() => {\n const subscription = calls$.pipe(callback).subscribe()\n return () => subscription.unsubscribe()\n }, [callback, calls$])\n\n return call\n}\n\n/**\n * This is a ponyfill of the upcoming `useEffectEvent` hook that'll arrive in React 19.\n * https://19.react.dev/learn/separating-events-from-effects#declaring-an-effect-event\n * To learn more about the ponyfill itself, see: https://blog.bitsrc.io/a-look-inside-the-useevent-polyfill-from-the-new-react-docs-d1c4739e8072\n */\nfunction useEffectEvent<\n const T extends (\n ...args: // eslint-disable-next-line @typescript-eslint/no-explicit-any\n any[]\n ) => void,\n>(fn: T): T {\n const ref = useRef<T | null>(null)\n useInsertionEffect(() => {\n ref.current = fn\n }, [fn])\n // eslint-disable-next-line @typescript-eslint/no-explicit-any\n return useCallback((...args: any[]) => {\n const f = ref.current!\n return f(...args)\n }, []) as T\n}\n"],"names":["getValue","value","cache","WeakMap","useObservable","observable","initialValue","$","_c","initialValueRef","useRef","t0","useEffect","current","t1","has","entry","snapshot","pipe","map","error","undefined","catchError","of","tap","t2","error_0","value_0","finalize","delete","share","subscription","subscribe","set","instance","get","closed","onStoreChange","unsubscribe","t3","t4","getSnapshot","store","t5","Symbol","for","useSyncExternalStore","useObservableEvent","fn","observableCallback","useState","calls$","call","callback","useEffectEvent","ref","useInsertionEffect","args","f"],"mappings":"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"}
|