@@ -14,13 +14,13 @@ jest.mock('./createPresenceComponent', () => {
14
14
} ;
15
15
} ) ;
16
16
17
- // TODO: replace `direction` param with something more concrete, less confusing
18
- const PRESENCE_MOTION : PresenceMotionFn < { duration ?: number ; easing ?: string } > = ( {
17
+ const PRESENCE_MOTION : PresenceMotionFn < { outOpacity ?: number ; duration ?: number ; easing ?: string } > = ( {
18
+ outOpacity = 0 ,
19
19
duration = 1000 ,
20
20
easing = 'linear' ,
21
21
} ) => ( {
22
- enter : { keyframes : [ ] , duration, easing } ,
23
- exit : { keyframes : [ ] , duration, easing } ,
22
+ enter : [ { keyframes : [ { opacity : outOpacity } , { opacity : 1 } ] , duration, easing } ] ,
23
+ exit : [ { keyframes : [ { opacity : 1 } , { opacity : outOpacity } ] , duration, easing } ] ,
24
24
} ) ;
25
25
const PRESENCE_COMPONENT = createPresenceComponent ( PRESENCE_MOTION ) ;
26
26
@@ -29,11 +29,16 @@ const MOTION_PARAMS = {
29
29
} ;
30
30
31
31
describe ( 'createPresenceComponentVariant' , ( ) => {
32
- // TODO: update for new implementation of createPresenceComponentVariant
33
- it ( 'appends override to the original motion' , ( ) => {
32
+ it ( 'overrides motion parameters used within motion atom arrays' , ( ) => {
33
+ // variant params overriding the default motion params
34
+ const outOpacity = 0.3 ;
35
+ const duration = 500 ;
36
+ const easing = 'ease-in-out' ;
37
+
34
38
const PresenceVariant = createPresenceComponentVariant ( PRESENCE_COMPONENT , {
35
- duration : 500 ,
36
- easing : 'ease-in-out' ,
39
+ outOpacity,
40
+ duration,
41
+ easing,
37
42
} ) ;
38
43
const overrideFn = ( createPresenceComponent as jest . Mock ) . mock . calls [ 0 ] [ 0 ] ;
39
44
@@ -51,16 +56,20 @@ describe('createPresenceComponentVariant', () => {
51
56
52
57
expect ( overrideFn ) . toBeInstanceOf ( Function ) ;
53
58
expect ( overrideFn ( MOTION_PARAMS ) ) . toEqual ( {
54
- enter : {
55
- duration : 500 ,
56
- easing : 'ease-in-out' ,
57
- keyframes : [ ] ,
58
- } ,
59
- exit : {
60
- duration : 500 ,
61
- easing : 'ease-in-out' ,
62
- keyframes : [ ] ,
63
- } ,
59
+ enter : [
60
+ {
61
+ duration,
62
+ easing,
63
+ keyframes : [ { opacity : outOpacity } , { opacity : 1 } ] ,
64
+ } ,
65
+ ] ,
66
+ exit : [
67
+ {
68
+ duration,
69
+ easing,
70
+ keyframes : [ { opacity : 1 } , { opacity : outOpacity } ] ,
71
+ } ,
72
+ ] ,
64
73
} ) ;
65
74
} ) ;
66
75
} ) ;
0 commit comments