@@ -2,6 +2,7 @@ import type {Placement} from '@floating-ui/core';
2
2
import {
3
3
autoUpdate ,
4
4
flip ,
5
+ limitShift ,
5
6
shift ,
6
7
size ,
7
8
useFloating ,
@@ -10,21 +11,34 @@ import {useState} from 'react';
10
11
11
12
import { allPlacements } from '../utils/allPlacements' ;
12
13
import { Controls } from '../utils/Controls' ;
14
+ import { useResize } from '../utils/useResize' ;
13
15
import { useScroll } from '../utils/useScroll' ;
14
16
17
+ type ShiftOrder = 'none' | 'before' | 'after' ;
18
+ const SHIFT_ORDERS : ShiftOrder [ ] = [ 'none' , 'before' , 'after' ] ;
19
+
15
20
export function Size ( ) {
16
21
const [ rtl , setRtl ] = useState ( false ) ;
17
22
const [ placement , setPlacement ] = useState < Placement > ( 'bottom' ) ;
18
- const [ addFlipShift , setAddFlipShift ] = useState ( false ) ;
23
+ const [ addFlip , setAddFlip ] = useState ( false ) ;
24
+ const [ addShift , setAddShift ] = useState < ShiftOrder > ( 'none' ) ;
25
+ const [ shiftCrossAxis , setShiftCrossAxis ] = useState ( false ) ;
26
+ const [ shiftLimiter , setShiftLimiter ] = useState ( false ) ;
19
27
20
28
const hasEdgeAlignment = placement . includes ( '-' ) ;
21
29
30
+ const shiftOptions = {
31
+ padding : 10 ,
32
+ crossAxis : shiftCrossAxis ,
33
+ limiter : shiftLimiter ? limitShift ( { offset : 50 } ) : undefined ,
34
+ } ;
35
+
22
36
const { x, y, strategy, update, refs} = useFloating ( {
23
37
placement,
24
38
whileElementsMounted : autoUpdate ,
25
39
middleware : [
26
- addFlipShift && flip ( { padding : 10 } ) ,
27
- addFlipShift && ! hasEdgeAlignment && shift ( { padding : 10 } ) ,
40
+ addFlip && flip ( { padding : 10 } ) ,
41
+ addShift === 'before' && shift ( shiftOptions ) ,
28
42
size ( {
29
43
apply ( { availableHeight, availableWidth, elements} ) {
30
44
Object . assign ( elements . floating . style , {
@@ -34,19 +48,20 @@ export function Size() {
34
48
} ,
35
49
padding : 10 ,
36
50
} ) ,
37
- addFlipShift && hasEdgeAlignment && shift ( { padding : 10 } ) ,
51
+ addShift === 'after' && shift ( shiftOptions ) ,
38
52
] ,
39
53
} ) ;
40
54
41
55
const { scrollRef, indicator} = useScroll ( { refs, update, rtl} ) ;
56
+ useResize ( scrollRef , update ) ;
42
57
43
58
return (
44
59
< >
45
60
< h1 > Size</ h1 >
46
61
< p > </ p >
47
62
< div className = "container" style = { { direction : rtl ? 'rtl' : 'ltr' } } >
48
63
< div
49
- className = "scroll"
64
+ className = "scroll resize "
50
65
data-x
51
66
style = { { position : 'relative' } }
52
67
ref = { scrollRef }
@@ -64,8 +79,13 @@ export function Size() {
64
79
left : x ?? '' ,
65
80
width : 400 ,
66
81
height : 300 ,
67
- ...( addFlipShift && {
68
- width : 600 ,
82
+ ...( addShift !== 'none' && {
83
+ width :
84
+ addShift === 'before' && shiftCrossAxis
85
+ ? 100
86
+ : addShift === 'before' && hasEdgeAlignment
87
+ ? 360
88
+ : 600 ,
69
89
height : 600 ,
70
90
} ) ,
71
91
} }
@@ -107,21 +127,73 @@ export function Size() {
107
127
) ) }
108
128
</ Controls >
109
129
110
- < h2 > Add flip and shift </ h2 >
130
+ < h2 > Add flip</ h2 >
111
131
< Controls >
112
132
{ [ true , false ] . map ( ( bool ) => (
113
133
< button
114
134
key = { String ( bool ) }
115
- data-testid = { `flipshift -${ bool } ` }
116
- onClick = { ( ) => setAddFlipShift ( bool ) }
135
+ data-testid = { `flip -${ bool } ` }
136
+ onClick = { ( ) => setAddFlip ( bool ) }
117
137
style = { {
118
- backgroundColor : addFlipShift === bool ? 'black' : '' ,
138
+ backgroundColor : addFlip === bool ? 'black' : '' ,
119
139
} }
120
140
>
121
141
{ String ( bool ) }
122
142
</ button >
123
143
) ) }
124
144
</ Controls >
145
+
146
+ < h2 > Add shift</ h2 >
147
+ < Controls >
148
+ { SHIFT_ORDERS . map ( ( str ) => (
149
+ < button
150
+ key = { str }
151
+ data-testid = { `shift-${ str } ` }
152
+ onClick = { ( ) => setAddShift ( str ) }
153
+ style = { {
154
+ backgroundColor : addShift === str ? 'black' : '' ,
155
+ } }
156
+ >
157
+ { str }
158
+ </ button >
159
+ ) ) }
160
+ </ Controls >
161
+
162
+ { addShift !== 'none' && (
163
+ < >
164
+ < h3 > shift.crossAxis</ h3 >
165
+ < Controls >
166
+ { [ true , false ] . map ( ( bool ) => (
167
+ < button
168
+ key = { String ( bool ) }
169
+ data-testid = { `shift.crossAxis-${ bool } ` }
170
+ onClick = { ( ) => setShiftCrossAxis ( bool ) }
171
+ style = { {
172
+ backgroundColor : shiftCrossAxis === bool ? 'black' : '' ,
173
+ } }
174
+ >
175
+ { String ( bool ) }
176
+ </ button >
177
+ ) ) }
178
+ </ Controls >
179
+
180
+ < h3 > shift.limiter</ h3 >
181
+ < Controls >
182
+ { [ true , false ] . map ( ( bool ) => (
183
+ < button
184
+ key = { String ( bool ) }
185
+ data-testid = { `shift.limiter-${ bool } ` }
186
+ onClick = { ( ) => setShiftLimiter ( bool ) }
187
+ style = { {
188
+ backgroundColor : shiftLimiter === bool ? 'black' : '' ,
189
+ } }
190
+ >
191
+ { String ( bool ) }
192
+ </ button >
193
+ ) ) }
194
+ </ Controls >
195
+ </ >
196
+ ) }
125
197
</ >
126
198
) ;
127
199
}
0 commit comments