sanity
Version:
Sanity is a real-time content infrastructure with a scalable, hosted backend featuring a Graph Oriented Query Language (GROQ), asset pipelines and fast edge caches
35 lines (31 loc) • 1.24 kB
text/typescript
import {type SanityClient} from '@sanity/client'
import {combineLatest, type Observable} from 'rxjs'
import {distinctUntilChanged, map, publishReplay, refCount, switchMap} from 'rxjs/operators'
import {type IdPair} from '../types'
import {memoize} from '../utils/createMemoizer'
import {memoizedPair} from './memoizedPair'
// A stream of all events related to either published or draft, each event comes with a 'target'
// that specifies which version (draft|published) the event is about
export const consistencyStatus: (
client: SanityClient,
idPair: IdPair,
typeName: string,
) => Observable<boolean> = memoize(
(client: SanityClient, idPair: IdPair, typeName: string) => {
return memoizedPair(client, idPair, typeName).pipe(
switchMap(({draft, published}) =>
combineLatest([draft.consistency$, published.consistency$]),
),
map(
([draftIsConsistent, publishedIsConsistent]) => draftIsConsistent && publishedIsConsistent,
),
distinctUntilChanged(),
publishReplay(1),
refCount(),
)
},
(client, idPair, typeName) => {
const config = client.config()
return `${config.dataset ?? ''}-${config.projectId ?? ''}-${idPair.publishedId}-${typeName}`
},
)