@@ -43,12 +43,14 @@ describe('Test useDerivedValue changing width', () => {
43
43
animate,
44
44
animationType,
45
45
deriveFunction,
46
+ compilerApi,
46
47
} : {
47
48
startWidth : number ;
48
49
finalWidth : number ;
49
50
animate : AnimationLocation ;
50
51
animationType : AnimationType ;
51
52
deriveFunction : ( a : number ) => number ;
53
+ compilerApi : boolean ;
52
54
} ) => {
53
55
const basicValue = useSharedValue ( startWidth ) ;
54
56
const componentRef = useTestRef ( WIDTH_COMPONENT ) ;
@@ -60,20 +62,30 @@ describe('Test useDerivedValue changing width', () => {
60
62
if ( animate === AnimationLocation . ANIMATED_STYLE ) {
61
63
return {
62
64
width :
63
- animationType === AnimationType . TIMING ? withTiming ( derivedValue . value ) : withSpring ( derivedValue . value ) ,
65
+ animationType === AnimationType . TIMING
66
+ ? withTiming ( compilerApi ? derivedValue . get ( ) : derivedValue . value )
67
+ : withSpring ( compilerApi ? derivedValue . get ( ) : derivedValue . value ) ,
64
68
} ;
65
69
} else {
66
- return { width : derivedValue . value } ;
70
+ return { width : compilerApi ? derivedValue . get ( ) : derivedValue . value } ;
67
71
}
68
72
} ) ;
69
73
70
74
useEffect ( ( ) => {
71
75
if ( animate === AnimationLocation . USE_EFFECT ) {
72
- basicValue . value = animationType === AnimationType . TIMING ? withTiming ( finalWidth ) : withSpring ( finalWidth ) ;
76
+ if ( compilerApi ) {
77
+ basicValue . set ( animationType === AnimationType . TIMING ? withTiming ( finalWidth ) : withSpring ( finalWidth ) ) ;
78
+ } else {
79
+ basicValue . value = animationType === AnimationType . TIMING ? withTiming ( finalWidth ) : withSpring ( finalWidth ) ;
80
+ }
73
81
} else {
74
- basicValue . value = finalWidth ;
82
+ if ( compilerApi ) {
83
+ basicValue . set ( finalWidth ) ;
84
+ } else {
85
+ basicValue . value = finalWidth ;
86
+ }
75
87
}
76
- } , [ basicValue , finalWidth , animate , animationType ] ) ;
88
+ } , [ basicValue , finalWidth , animate , animationType , compilerApi ] ) ;
77
89
78
90
return (
79
91
< View style = { styles . container } >
@@ -108,6 +120,7 @@ describe('Test useDerivedValue changing width', () => {
108
120
finalWidth : number ,
109
121
animate : AnimationLocation ,
110
122
animationType : AnimationType ,
123
+ compilerApi : boolean ,
111
124
) {
112
125
await mockAnimationTimer ( ) ;
113
126
const updatesContainerActive = await recordAnimationUpdates ( ) ;
@@ -118,6 +131,7 @@ describe('Test useDerivedValue changing width', () => {
118
131
animate = { animate }
119
132
animationType = { animationType }
120
133
deriveFunction = { derivedFun }
134
+ compilerApi = { compilerApi }
121
135
/> ,
122
136
) ;
123
137
const testComponent = getTestComponent ( WIDTH_COMPONENT ) ;
@@ -129,68 +143,81 @@ describe('Test useDerivedValue changing width', () => {
129
143
return [ updates , naiveUpdates ] ;
130
144
}
131
145
132
- test . each ( [
133
- {
134
- startWidth : 0 ,
135
- finalWidth : 100 ,
136
- animate : AnimationLocation . USE_EFFECT ,
137
- animationType : AnimationType . TIMING ,
138
- } ,
139
- {
140
- startWidth : 0 ,
141
- finalWidth : 100 ,
142
- animate : AnimationLocation . ANIMATED_STYLE ,
143
- animationType : AnimationType . TIMING ,
144
- } ,
145
- {
146
- startWidth : 0 ,
147
- finalWidth : 100 ,
148
- animate : AnimationLocation . ANIMATED_STYLE ,
149
- animationType : AnimationType . SPRING ,
150
- } ,
151
- {
152
- startWidth : 0 ,
153
- finalWidth : 100 ,
154
- animate : AnimationLocation . USE_EFFECT ,
155
- animationType : AnimationType . SPRING ,
156
- } ,
157
- {
158
- startWidth : 0 ,
159
- finalWidth : 100 ,
160
- animate : AnimationLocation . NONE ,
161
- animationType : AnimationType . NONE ,
162
- } ,
163
- {
164
- startWidth : 100 ,
165
- finalWidth : 20 ,
166
- animate : AnimationLocation . USE_EFFECT ,
167
- animationType : AnimationType . TIMING ,
168
- } ,
169
- {
170
- startWidth : 400 ,
171
- finalWidth : 300 ,
172
- animate : AnimationLocation . ANIMATED_STYLE ,
173
- animationType : AnimationType . TIMING ,
174
- } ,
175
- {
176
- startWidth : 20 ,
177
- finalWidth : 100 ,
178
- animate : AnimationLocation . ANIMATED_STYLE ,
179
- animationType : AnimationType . SPRING ,
180
- } ,
181
- {
182
- startWidth : 55.5 ,
183
- finalWidth : 155.5 ,
184
- animate : AnimationLocation . USE_EFFECT ,
185
- animationType : AnimationType . SPRING ,
186
- } ,
187
- {
188
- startWidth : 300 ,
189
- finalWidth : 33 ,
190
- animate : AnimationLocation . NONE ,
191
- animationType : AnimationType . NONE ,
192
- } ,
193
- ] ) (
146
+ test . each (
147
+ [
148
+ {
149
+ startWidth : 0 ,
150
+ finalWidth : 100 ,
151
+ animate : AnimationLocation . USE_EFFECT ,
152
+ animationType : AnimationType . TIMING ,
153
+ } ,
154
+ {
155
+ startWidth : 0 ,
156
+ finalWidth : 100 ,
157
+ animate : AnimationLocation . ANIMATED_STYLE ,
158
+ animationType : AnimationType . TIMING ,
159
+ } ,
160
+ {
161
+ startWidth : 0 ,
162
+ finalWidth : 100 ,
163
+ animate : AnimationLocation . ANIMATED_STYLE ,
164
+ animationType : AnimationType . SPRING ,
165
+ } ,
166
+ {
167
+ startWidth : 0 ,
168
+ finalWidth : 100 ,
169
+ animate : AnimationLocation . USE_EFFECT ,
170
+ animationType : AnimationType . SPRING ,
171
+ } ,
172
+ {
173
+ startWidth : 0 ,
174
+ finalWidth : 100 ,
175
+ animate : AnimationLocation . NONE ,
176
+ animationType : AnimationType . NONE ,
177
+ } ,
178
+ {
179
+ startWidth : 100 ,
180
+ finalWidth : 20 ,
181
+ animate : AnimationLocation . USE_EFFECT ,
182
+ animationType : AnimationType . TIMING ,
183
+ } ,
184
+ {
185
+ startWidth : 400 ,
186
+ finalWidth : 300 ,
187
+ animate : AnimationLocation . ANIMATED_STYLE ,
188
+ animationType : AnimationType . TIMING ,
189
+ } ,
190
+ {
191
+ startWidth : 20 ,
192
+ finalWidth : 100 ,
193
+ animate : AnimationLocation . ANIMATED_STYLE ,
194
+ animationType : AnimationType . SPRING ,
195
+ } ,
196
+ {
197
+ startWidth : 55.5 ,
198
+ finalWidth : 155.5 ,
199
+ animate : AnimationLocation . USE_EFFECT ,
200
+ animationType : AnimationType . SPRING ,
201
+ } ,
202
+ {
203
+ startWidth : 300 ,
204
+ finalWidth : 33 ,
205
+ animate : AnimationLocation . NONE ,
206
+ animationType : AnimationType . NONE ,
207
+ } ,
208
+ ] . reduce (
209
+ ( acc , element ) => {
210
+ return [ ...acc , { ...element , compilerApi : false } , { ...element , compilerApi : true } ] ;
211
+ } ,
212
+ [ ] as {
213
+ startWidth : number ;
214
+ finalWidth : number ;
215
+ animate : AnimationLocation ;
216
+ animationType : AnimationType ;
217
+ compilerApi : boolean ;
218
+ } [ ] ,
219
+ ) ,
220
+ ) (
194
221
'Animate from ${startWidth} to ${finalWidth}, ${animationType} ${animate}' ,
195
222
async ( { startWidth, finalWidth, animate, animationType } ) => {
196
223
const snapshotIdPerType = {
@@ -212,6 +239,7 @@ describe('Test useDerivedValue changing width', () => {
212
239
finalWidth ,
213
240
animate ,
214
241
animationType ,
242
+ false ,
215
243
) ;
216
244
217
245
expect ( updates ) . toMatchSnapshots ( snapshot [ snapshotName ] ) ;
0 commit comments