mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-08-11 14:08:55 +08:00
69 lines
1.6 KiB
TypeScript
69 lines
1.6 KiB
TypeScript
import { use } from 'foxact/use';
|
|
import { useSyncExternalStore } from 'react';
|
|
|
|
import type { LiveData } from './livedata';
|
|
|
|
function noopSubscribe() {
|
|
return () => {};
|
|
}
|
|
|
|
function nullGetSnapshot() {
|
|
return null;
|
|
}
|
|
|
|
function undefinedGetSnapshot() {
|
|
return undefined;
|
|
}
|
|
|
|
/**
|
|
* subscribe LiveData and return the value.
|
|
*/
|
|
export function useLiveData<Input extends LiveData<any> | null | undefined>(
|
|
liveData: Input
|
|
): NonNullable<Input> extends LiveData<infer T>
|
|
? Input extends undefined
|
|
? T | undefined
|
|
: Input extends null
|
|
? T | null
|
|
: T
|
|
: never {
|
|
return useSyncExternalStore(
|
|
liveData ? liveData.reactSubscribe : noopSubscribe,
|
|
liveData
|
|
? liveData.reactGetSnapshot
|
|
: liveData === undefined
|
|
? undefinedGetSnapshot
|
|
: nullGetSnapshot
|
|
);
|
|
}
|
|
|
|
/**
|
|
* subscribe LiveData and return the value. If the value is nullish, will suspends until the value is not nullish.
|
|
*/
|
|
export function useEnsureLiveData<T>(liveData$: LiveData<T>): NonNullable<T> {
|
|
const data = useLiveData(liveData$);
|
|
|
|
if (data === null || data === undefined) {
|
|
return use(
|
|
new Promise((resolve, reject) => {
|
|
const subscription = liveData$.subscribe({
|
|
next(value) {
|
|
if (value === null || value === undefined) {
|
|
resolve(value);
|
|
subscription.unsubscribe();
|
|
}
|
|
},
|
|
error(err) {
|
|
reject(err);
|
|
},
|
|
complete() {
|
|
reject(new Error('Unexpected completion'));
|
|
},
|
|
});
|
|
})
|
|
);
|
|
}
|
|
|
|
return data;
|
|
}
|