Skip to content

Commit 4d24fb4

Browse files
committedMar 4, 2025
feat(sanity): add isInteractive prop to ConnectorContext (#7907)
1 parent 254467f commit 4d24fb4

File tree

5 files changed

+42
-7
lines changed

5 files changed

+42
-7
lines changed
 

‎packages/sanity/src/_singletons/context/ConnectorContext.ts

+1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ export const ConnectorContext = createContext<ConnectorContextValue>(
99
isReviewChangesOpen: false,
1010
onOpenReviewChanges: () => undefined,
1111
onSetFocus: () => undefined,
12+
isInteractive: true,
1213
} as ConnectorContextValue,
1314
)

‎packages/sanity/src/core/changeIndicators/ChangeIndicator.tsx

+7
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@ import {
77
memo,
88
type MouseEvent,
99
useCallback,
10+
useContext,
1011
useMemo,
1112
useState,
1213
} from 'react'
1314
import deepCompare from 'react-fast-compare'
15+
import {ConnectorContext} from 'sanity/_singletons'
1416

1517
import {EMPTY_ARRAY} from '../util'
1618
import {ElementWithChangeBar} from './ElementWithChangeBar'
@@ -23,6 +25,7 @@ const ChangeBarWrapper = memo(function ChangeBarWrapper(
2325
hasFocus: boolean
2426
isChanged?: boolean
2527
withHoverEffect?: boolean
28+
isInteractive?: boolean
2629
},
2730
) {
2831
const {
@@ -34,6 +37,7 @@ const ChangeBarWrapper = memo(function ChangeBarWrapper(
3437
onMouseLeave: onMouseLeaveProp,
3538
path = EMPTY_ARRAY,
3639
withHoverEffect,
40+
isInteractive,
3741
...restProps
3842
} = props
3943
const layer = useLayer()
@@ -82,6 +86,7 @@ const ChangeBarWrapper = memo(function ChangeBarWrapper(
8286
isChanged={isChanged}
8387
disabled={disabled}
8488
withHoverEffect={withHoverEffect}
89+
isInteractive={isInteractive}
8590
>
8691
{children}
8792
</ElementWithChangeBar>
@@ -102,6 +107,7 @@ export function ChangeIndicator(
102107
props: ChangeIndicatorProps & Omit<HTMLProps<HTMLDivElement>, 'as'>,
103108
) {
104109
const {children, hasFocus, isChanged, path, withHoverEffect, ...restProps} = props
110+
const {isInteractive} = useContext(ConnectorContext)
105111

106112
return (
107113
<ChangeBarWrapper
@@ -110,6 +116,7 @@ export function ChangeIndicator(
110116
hasFocus={hasFocus}
111117
isChanged={isChanged}
112118
withHoverEffect={withHoverEffect}
119+
isInteractive={isInteractive}
113120
>
114121
{children}
115122
</ChangeBarWrapper>

‎packages/sanity/src/core/changeIndicators/ConnectorContext.ts

+1
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,5 @@ export interface ConnectorContextValue {
55
isReviewChangesOpen: boolean
66
onOpenReviewChanges: () => void | undefined
77
onSetFocus: (nextPath: Path) => void | undefined
8+
isInteractive?: boolean
89
}

‎packages/sanity/src/core/changeIndicators/ElementWithChangeBar.styled.tsx

+12-4
Original file line numberDiff line numberDiff line change
@@ -110,8 +110,11 @@ export const ChangeBarMarker = styled.div((props) => {
110110
`
111111
})
112112

113-
export const ChangeBarButton = styled.button<{$withHoverEffect?: boolean}>((props) => {
114-
const {$withHoverEffect} = props
113+
export const ChangeBarButton = styled.button<{
114+
$withHoverEffect?: boolean
115+
$isInteractive?: boolean
116+
}>((props) => {
117+
const {$withHoverEffect, $isInteractive} = props
115118

116119
return css`
117120
appearance: none;
@@ -123,8 +126,13 @@ export const ChangeBarButton = styled.button<{$withHoverEffect?: boolean}>((prop
123126
opacity: 0;
124127
position: absolute;
125128
height: 100%;
126-
cursor: pointer;
127-
pointer-events: all;
129+
130+
${$isInteractive &&
131+
css`
132+
cursor: pointer;
133+
pointer-events: all;
134+
`}
135+
128136
left: calc(-0.25rem + var(--change-bar-offset));
129137
width: calc(1rem - 1px);
130138
transition: opacity ${animationSpeed}ms;

‎packages/sanity/src/core/changeIndicators/ElementWithChangeBar.tsx

+21-3
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,16 @@ export function ElementWithChangeBar(props: {
1818
hasFocus?: boolean
1919
isChanged?: boolean
2020
withHoverEffect?: boolean
21+
isInteractive?: boolean
2122
}) {
22-
const {children, disabled, hasFocus, isChanged, withHoverEffect = true} = props
23+
const {
24+
children,
25+
disabled,
26+
hasFocus,
27+
isChanged,
28+
withHoverEffect = true,
29+
isInteractive = true,
30+
} = props
2331

2432
const {onOpenReviewChanges, isReviewChangesOpen} = useContext(ConnectorContext)
2533
const {zIndex} = useLayer()
@@ -30,19 +38,29 @@ export function ElementWithChangeBar(props: {
3038
disabled || !isChanged ? null : (
3139
<ChangeBar data-testid="change-bar" $zIndex={zIndex}>
3240
<ChangeBarMarker data-testid="change-bar__marker" />
33-
<Tooltip content={t('changes.change-bar.aria-label')} portal>
41+
<Tooltip content={t('changes.change-bar.aria-label')} portal disabled={!isInteractive}>
3442
<ChangeBarButton
3543
aria-label={t('changes.change-bar.aria-label')}
3644
data-testid="change-bar__button"
3745
onClick={isReviewChangesOpen ? undefined : onOpenReviewChanges}
3846
tabIndex={-1}
3947
type="button"
4048
$withHoverEffect={withHoverEffect}
49+
$isInteractive={isInteractive}
4150
/>
4251
</Tooltip>
4352
</ChangeBar>
4453
),
45-
[disabled, isChanged, isReviewChangesOpen, onOpenReviewChanges, t, withHoverEffect, zIndex],
54+
[
55+
disabled,
56+
isChanged,
57+
isInteractive,
58+
isReviewChangesOpen,
59+
onOpenReviewChanges,
60+
t,
61+
withHoverEffect,
62+
zIndex,
63+
],
4664
)
4765

4866
return (

0 commit comments

Comments
 (0)
Please sign in to comment.