Skip to content

Commit 8f65af3

Browse files
authoredFeb 27, 2025··
fix: prevent over-fetching in free trial provider (#8783)
1 parent 21d18c3 commit 8f65af3

File tree

2 files changed

+24
-31
lines changed

2 files changed

+24
-31
lines changed
 

‎packages/sanity/src/core/studio/components/navbar/free-trial/FreeTrialProvider.tsx

+11-14
Original file line numberDiff line numberDiff line change
@@ -42,24 +42,21 @@ export const FreeTrialProvider = ({children}: FreeTrialProviderProps) => {
4242
}
4343
}, [showDialog, data, showOnLoad, telemetry])
4444

45-
// This is casted to a string to make it stable across renders so it doesn't trigger multiple times the effect.
46-
const searchParamsAsString = new URLSearchParams(router.state._searchParams).toString()
45+
// See if we have any parameters from the current route
46+
// to pass onto our query
47+
const searchParams = new URLSearchParams(router.state._searchParams)
48+
// Allows us to override the current state of the trial to
49+
// get back certain modals based on the current experience
50+
// can be 'growth-trial', 'growth-trial-ending', or 'post-growth-trial'
51+
const trialState = searchParams.get('trialState')
52+
// Allows us to set whether we've seen the modals before
53+
// or whether this is our first time seeing them (i.e. show a popup)
54+
const seenBefore = searchParams.get('seenBefore')
4755

4856
useEffect(() => {
49-
// See if we have any parameters from the current route
50-
// to pass onto our query
51-
const searchParams = new URLSearchParams(searchParamsAsString)
52-
5357
const queryParams = new URLSearchParams()
5458
queryParams.append('studioVersion', SANITY_VERSION)
55-
// Allows us to override the current state of the trial to
56-
// get back certain modals based on the current experience
57-
// can be 'growth-trial', 'growth-trial-ending', or 'post-growth-trial'
58-
const trialState = searchParams.get('trialState')
5959
if (trialState) queryParams.append('trialState', trialState)
60-
// Allows us to set whether we've seen the modals before
61-
// or whether this is our first time seeing them (i.e. show a popup)
62-
const seenBefore = searchParams.get('seenBefore')
6360
if (seenBefore) queryParams.append('seenBefore', seenBefore)
6461
// If we have trialState, query the override endpoint so that we
6562
// get back trial modals for that state
@@ -84,7 +81,7 @@ export const FreeTrialProvider = ({children}: FreeTrialProviderProps) => {
8481
return () => {
8582
request.unsubscribe()
8683
}
87-
}, [client, searchParamsAsString])
84+
}, [client, seenBefore, trialState])
8885

8986
const toggleShowContent = useCallback(
9087
(closeAndReOpen = false) => {

‎packages/sanity/src/core/tasks/context/navigation/TasksNavigationProvider.tsx

+13-17
Original file line numberDiff line numberDiff line change
@@ -135,26 +135,22 @@ export const TasksNavigationProvider = ({children}: {children: ReactNode}) => {
135135
})
136136
}, [state.selectedTask, state.viewMode, telemetry, toast])
137137

138-
// This is casted to a string to make it stable across renders so it doesn't trigger multiple times the effect.
139-
const searchParamsAsString = new URLSearchParams(router.state._searchParams).toString()
138+
const searchParams = new URLSearchParams(router.state._searchParams)
139+
const sidebar = searchParams.get('sidebar')
140+
const viewMode = searchParams.get('viewMode')
141+
const selectedTask = searchParams.get('selectedTask')
142+
140143
useEffect(() => {
141144
// listen to the URL to open the tasks view if the sidebar is set to task.
142-
if (searchParamsAsString) {
143-
const searchParams = new URLSearchParams(searchParamsAsString)
144-
145-
const sidebar = searchParams.get('sidebar')
146-
if (sidebar !== 'tasks') {
147-
return
148-
}
149-
dispatch({type: 'TOGGLE_TASKS_VIEW', payload: true})
150-
const viewMode = searchParams.get('viewMode')
151-
const selectedTask = searchParams.get('selectedTask')
152-
if (viewMode === 'edit' && selectedTask) {
153-
dispatch({type: 'EDIT_TASK', payload: {id: selectedTask}})
154-
telemetry.log(TaskLinkOpened)
155-
}
145+
if (sidebar !== 'tasks') {
146+
return
147+
}
148+
dispatch({type: 'TOGGLE_TASKS_VIEW', payload: true})
149+
if (viewMode === 'edit' && selectedTask) {
150+
dispatch({type: 'EDIT_TASK', payload: {id: selectedTask}})
151+
telemetry.log(TaskLinkOpened)
156152
}
157-
}, [searchParamsAsString, telemetry])
153+
}, [selectedTask, sidebar, telemetry, viewMode])
158154

159155
const value = useMemo(
160156
() => ({

0 commit comments

Comments
 (0)
Please sign in to comment.