Skip to content

Commit 17365d8

Browse files
authoredMar 12, 2025··
feat(presentation): include perspectiveStack and version in resolvers (#8891)
1 parent 1637cee commit 17365d8

File tree

4 files changed

+25
-9
lines changed

4 files changed

+25
-9
lines changed
 

‎packages/sanity/src/presentation/document/PresentationDocumentHeader.tsx

+3-2
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,15 @@ const LocationStack = styled(Stack)`
1818

1919
export function PresentationDocumentHeader(props: {
2020
documentId: PublishedId
21+
version: string | undefined
2122
options: PresentationPluginOptions
2223
schemaType: ObjectSchemaType
2324
}): ReactNode {
24-
const {documentId, options, schemaType} = props
25-
25+
const {documentId, options, schemaType, version} = props
2626
const context = useContext(PresentationDocumentContext)
2727
const {state, status} = useDocumentLocations({
2828
id: documentId,
29+
version,
2930
resolvers: options.resolve?.locations || options.locate,
3031
type: schemaType.name,
3132
})

‎packages/sanity/src/presentation/plugin.tsx

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,12 @@
11
import {type SanityDocument} from '@sanity/client'
22
import {lazy, Suspense} from 'react'
3-
import {definePlugin, getPublishedId, type InputProps, isDocumentSchemaType} from 'sanity'
3+
import {
4+
definePlugin,
5+
getPublishedId,
6+
getVersionFromId,
7+
type InputProps,
8+
isDocumentSchemaType,
9+
} from 'sanity'
410

511
import {DEFAULT_TOOL_ICON, DEFAULT_TOOL_NAME, EDIT_INTENT_MODE} from './constants'
612
import {PresentationDocumentHeader} from './document/PresentationDocumentHeader'
@@ -56,13 +62,14 @@ export const presentationTool = definePlugin<PresentationPluginOptions>((options
5662
function PresentationDocumentInput(props: InputProps) {
5763
const value = props.value as SanityDocument
5864
const documentId = value?._id ? getPublishedId(value?._id) : undefined
59-
65+
const documentVersion = value?._id ? getVersionFromId(value._id) : undefined
6066
if (isDocumentSchemaType(props.schemaType)) {
6167
return (
6268
<PresentationDocumentProvider options={options}>
6369
{hasLocationsResolver && documentId && (
6470
<PresentationDocumentHeader
6571
documentId={documentId}
72+
version={documentVersion}
6673
options={options}
6774
schemaType={props.schemaType}
6875
/>

‎packages/sanity/src/presentation/types.ts

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import {type ClientPerspective} from '@sanity/client'
1+
import {type ClientPerspective, type StackablePerspective} from '@sanity/client'
22
import {type ChannelInstance} from '@sanity/comlink'
33
import {
44
type LoaderControllerMsg,
@@ -56,7 +56,12 @@ export type DocumentLocationsStatus = 'empty' | 'resolving' | 'resolved'
5656
* @public
5757
*/
5858
export type DocumentLocationResolver = (
59-
params: {id: string; type: string},
59+
params: {
60+
id: string
61+
type: string
62+
version: string | undefined
63+
perspectiveStack: StackablePerspective[]
64+
},
6065
context: {documentStore: DocumentStore},
6166
) =>
6267
| DocumentLocationsState

‎packages/sanity/src/presentation/useDocumentLocations.ts

+6-3
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import {
1010
type Previewable,
1111
type SanityDocument,
1212
useDocumentStore,
13+
usePerspective,
1314
} from 'sanity'
1415

1516
import {
@@ -128,14 +129,16 @@ function observeForLocations(
128129

129130
export function useDocumentLocations(props: {
130131
id: string
132+
version: string | undefined
131133
resolvers?: DocumentLocationResolver | DocumentLocationResolvers
132134
type: string
133135
}): {
134136
state: DocumentLocationsState
135137
status: DocumentLocationsStatus
136138
} {
137-
const {id, resolvers, type} = props
139+
const {id, resolvers, type, version} = props
138140
const documentStore = useDocumentStore()
141+
const {perspectiveStack} = usePerspective()
139142
const [locationsState, setLocationsState] = useState<DocumentLocationsState>(INITIAL_STATE)
140143

141144
const resolver = resolvers && (typeof resolvers === 'function' ? resolvers : resolvers[type])
@@ -149,7 +152,7 @@ export function useDocumentLocations(props: {
149152

150153
// Original/advanced resolver which requires explicit use of Observables
151154
if (typeof resolver === 'function') {
152-
const params = {id, type}
155+
const params = {id, type, version, perspectiveStack}
153156
const context = {documentStore}
154157
const _result = resolver(params, context)
155158
return isObservable(_result) ? _result : of(_result)
@@ -162,7 +165,7 @@ export function useDocumentLocations(props: {
162165

163166
// Resolver is explicitly provided state
164167
return of(resolver)
165-
}, [documentStore, id, resolver, type])
168+
}, [documentStore, id, resolver, type, version, perspectiveStack])
166169

167170
useEffect(() => {
168171
const sub = result?.subscribe((state) => {

0 commit comments

Comments
 (0)
Please sign in to comment.