-
-
Notifications
You must be signed in to change notification settings - Fork 94
/
Copy pathuseMotionTransitions.ts
33 lines (26 loc) · 1.09 KB
/
useMotionTransitions.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
import type { MotionProperties, MotionTransitions, ResolvedValueTarget, Transition } from './types'
import { useMotionValues } from './useMotionValues'
import { getAnimation } from './utils/transition'
/**
* A Composable holding all the ongoing transitions in a local reference.
*/
export function useMotionTransitions(): MotionTransitions {
const { motionValues, stop, get } = useMotionValues()
const push = (key: string, value: ResolvedValueTarget, target: MotionProperties, transition: Transition = {}, onComplete?: () => void) => {
// Get the `from` key from target
// @ts-expect-error - Fix errors later for typescript 5
const from = target[key]
// Get motion value for the target key
const motionValue = get(key, from, target)
// Sets the value immediately if specified
if (transition && transition.immediate) {
motionValue.set(value)
return
}
// Create animation
const animation = getAnimation(key, motionValue, value, transition, onComplete)
// Start animation
motionValue.start(animation)
}
return { motionValues, stop, push }
}