-
-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathuseSpring.ts
40 lines (35 loc) · 1.3 KB
/
useSpring.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
34
35
36
37
38
39
40
import type { MaybeRef } from 'vue'
import { animate } from 'popmotion'
import type { MotionProperties, PermissiveMotionProperties, PermissiveTarget, Spring, SpringControls } from './types'
import { useMotionValues } from './useMotionValues'
import { getDefaultTransition } from './utils/defaults'
export type UseSpringOptions = Partial<Spring> & {
target?: MaybeRef<PermissiveTarget>
}
export function useSpring(values: Partial<PermissiveMotionProperties>, spring?: UseSpringOptions): SpringControls {
const { stop, get } = useMotionValues()
return {
values,
stop,
set: (properties: MotionProperties) =>
Promise.all(
Object.entries(properties).map(([key, value]) => {
const motionValue = get(key, values[key], values)
return motionValue.start((onComplete?: () => void) => {
const options = {
type: 'spring',
...(spring || getDefaultTransition(key, value)),
} as { type: 'spring' | 'decay' | 'keyframes' | undefined }
return animate({
from: motionValue.get(),
to: value,
velocity: motionValue.getVelocity(),
onUpdate: v => motionValue.set(v),
onComplete,
...options,
})
})
}),
),
}
}