@@ -8,12 +8,10 @@ import {
8
8
useState ,
9
9
useContext ,
10
10
useId ,
11
- Fragment ,
12
11
Suspense ,
13
12
useEffect ,
14
13
useRef ,
15
14
useTransition ,
16
- useReducer ,
17
15
} from 'react' ;
18
16
import cn from 'classnames' ;
19
17
import NextLink from 'next/link' ;
@@ -26,7 +24,6 @@ import {IconSearch} from 'components/Icon/IconSearch';
26
24
import { Logo } from 'components/Logo' ;
27
25
import Link from 'components/MDX/Link' ;
28
26
import CodeBlock from 'components/MDX/CodeBlock' ;
29
- import { IconNavArrow } from 'components/Icon/IconNavArrow' ;
30
27
import { ExternalLink } from 'components/ExternalLink' ;
31
28
import sidebarBlog from '../../sidebarBlog.json' ;
32
29
@@ -67,14 +64,6 @@ function Para({children}) {
67
64
) ;
68
65
}
69
66
70
- function Left ( { children} ) {
71
- return (
72
- < div className = "px-5 lg:px-0 max-w-4xl lg:text-left text-white text-opacity-80" >
73
- { children }
74
- </ div >
75
- ) ;
76
- }
77
-
78
67
function Center ( { children} ) {
79
68
return (
80
69
< div className = "px-5 lg:px-0 max-w-4xl lg:text-center text-white text-opacity-80 flex flex-col items-center justify-center" >
@@ -90,19 +79,23 @@ function FullBleed({children}) {
90
79
}
91
80
92
81
function CurrentTime ( ) {
93
- const msPerMinute = 60 * 1000 ;
94
- const date = new Date ( ) ;
95
- let nextMinute = Math . floor ( + date / msPerMinute + 1 ) * msPerMinute ;
96
-
82
+ const [ date , setDate ] = useState ( new Date ( ) ) ;
97
83
const currentTime = date . toLocaleTimeString ( [ ] , {
98
84
hour : 'numeric' ,
99
85
minute : 'numeric' ,
100
86
} ) ;
101
- let [ , forceUpdate ] = useReducer ( ( n ) => n + 1 , 0 ) ;
102
87
useEffect ( ( ) => {
103
- const timeout = setTimeout ( forceUpdate , nextMinute - Date . now ( ) ) ;
88
+ const msPerMinute = 60 * 1000 ;
89
+ let nextMinute = Math . floor ( + date / msPerMinute + 1 ) * msPerMinute ;
90
+
91
+ const timeout = setTimeout ( ( ) => {
92
+ if ( Date . now ( ) > nextMinute ) {
93
+ setDate ( new Date ( ) ) ;
94
+ }
95
+ } , nextMinute - Date . now ( ) ) ;
104
96
return ( ) => clearTimeout ( timeout ) ;
105
97
} , [ date ] ) ;
98
+
106
99
return < span suppressHydrationWarning > { currentTime } </ span > ;
107
100
}
108
101
@@ -831,7 +824,7 @@ function ExampleLayout({
831
824
. filter ( ( s ) => s !== null ) ;
832
825
setOverlayStyles ( nextOverlayStyles ) ;
833
826
}
834
- } , [ activeArea ] ) ;
827
+ } , [ activeArea , hoverTopOffset ] ) ;
835
828
return (
836
829
< div className = "lg:pl-10 lg:pr-5 w-full" >
837
830
< div className = "mt-12 mb-2 lg:my-16 max-w-7xl mx-auto flex flex-col w-full lg:rounded-2xl lg:bg-card lg:dark:bg-card-dark" >
@@ -1211,7 +1204,7 @@ function useNestedScrollLock(ref) {
1211
1204
window . removeEventListener ( 'scroll' , handleScroll ) ;
1212
1205
clearInterval ( interval ) ;
1213
1206
} ;
1214
- } , [ ] ) ;
1207
+ } , [ ref ] ) ;
1215
1208
}
1216
1209
1217
1210
function ExamplePanel ( {
@@ -1220,7 +1213,6 @@ function ExamplePanel({
1220
1213
noShadow,
1221
1214
height,
1222
1215
contentMarginTop,
1223
- activeArea,
1224
1216
} ) {
1225
1217
return (
1226
1218
< div
0 commit comments