1
- import { useEffect , useState , useCallback } from 'react'
1
+ import { useEffect } from 'react'
2
2
import { useDispatch , useSelector } from 'react-redux'
3
3
import { Routes , Route , Navigate , useLocation } from 'react-router-dom'
4
4
import { css } from 'styled-components'
9
9
COLORS ,
10
10
OVERFLOW_AUTO ,
11
11
POSITION_RELATIVE ,
12
- useScrolling ,
13
12
} from '@opentrons/components'
14
13
import { ApiHostProvider } from '@opentrons/react-api-client'
15
14
import NiceModal from '@ebay/nice-modal-react'
@@ -46,13 +45,18 @@ import { Welcome } from '/app/pages/ODD/Welcome'
46
45
import { InitialLoadingScreen } from '/app/pages/ODD/InitialLoadingScreen'
47
46
import { DeckConfigurationEditor } from '/app/pages/ODD/DeckConfiguration'
48
47
import { PortalRoot as ModalPortalRoot } from './portal'
48
+ import { SharedScrollRefProvider } from './ODDProviders/ScrollRefProvider'
49
49
import {
50
50
getOnDeviceDisplaySettings ,
51
51
updateConfigValue ,
52
52
} from '/app/redux/config'
53
53
import { updateBrightness } from '/app/redux/shell'
54
54
import { useScreenIdle , SLEEP_NEVER_MS } from '/app/local-resources/dom-utils'
55
- import { useProtocolReceiptToast , useSoftwareUpdatePoll } from './hooks'
55
+ import {
56
+ useProtocolReceiptToast ,
57
+ useScrollRef ,
58
+ useSoftwareUpdatePoll ,
59
+ } from './hooks'
56
60
import { ODDTopLevelRedirects } from './ODDTopLevelRedirects'
57
61
import { ReactQueryDevtools } from '/app/App/tools'
58
62
@@ -199,7 +203,9 @@ export const OnDeviceDisplayApp = (): JSX.Element => {
199
203
< NiceModal . Provider >
200
204
< ToasterOven >
201
205
< ProtocolReceiptToasts />
202
- < OnDeviceDisplayAppRoutes />
206
+ < SharedScrollRefProvider >
207
+ < OnDeviceDisplayAppRoutes />
208
+ </ SharedScrollRefProvider >
203
209
</ ToasterOven >
204
210
</ NiceModal . Provider >
205
211
</ MaintenanceRunTakeover >
@@ -225,14 +231,10 @@ const getTargetPath = (unfinishedUnboxingFlowRoute: string | null): string => {
225
231
// split to a separate function because scrollRef rerenders on every route change
226
232
// this avoids rerendering parent providers as well
227
233
export function OnDeviceDisplayAppRoutes ( ) : JSX . Element {
228
- const [ currentNode , setCurrentNode ] = useState < null | HTMLElement > ( null )
229
- const scrollRef = useCallback ( ( node : HTMLElement | null ) => {
230
- setCurrentNode ( node )
231
- } , [ ] )
232
- const isScrolling = useScrolling ( currentNode )
234
+ const { isScrolling, refCallback, element } = useScrollRef ( )
233
235
const location = useLocation ( )
234
236
useEffect ( ( ) => {
235
- currentNode ?. scrollTo ( {
237
+ element ?. scrollTo ( {
236
238
top : 0 ,
237
239
left : 0 ,
238
240
behavior : 'auto' ,
@@ -271,7 +273,7 @@ export function OnDeviceDisplayAppRoutes(): JSX.Element {
271
273
key = { path }
272
274
path = { path }
273
275
element = {
274
- < Box css = { TOUCH_SCREEN_STYLE } ref = { scrollRef } >
276
+ < Box css = { TOUCH_SCREEN_STYLE } ref = { refCallback } >
275
277
< ModalPortalRoot />
276
278
{ getPathComponent ( path ) }
277
279
</ Box >
0 commit comments