/
Alex_Ural
/
opencode
Обзор
Документация
Войти
/
Alex_Ural
/
opencode
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
packages/ui/src/components/motion-spring.tsx
58 строк
2 KB
Brendan Allan
fix(app): preserve todo dock across sessions (#33778)
25 июн 2026, 08:34
Не верифицирован
25 июн 2026, 08:34
d13779b
Код
Авторство
О чём код?
import { attachSpring, motionValue } from "motion" import type { SpringOptions } from "motion" import { createComputed, createEffect, createSignal, onCleanup } from "solid-js" type Opt = Partial<Pick<SpringOptions, "visualDuration" | "bounce" | "stiffness" | "damping" | "mass" | "velocity">> const eq = (a: Opt | undefined, b: Opt | undefined) => a?.visualDuration === b?.visualDuration && a?.bounce === b?.bounce && a?.stiffness === b?.stiffness && a?.damping === b?.damping && a?.mass === b?.mass && a?.velocity === b?.velocity export function useSpring(target: () => number, options?: Opt | (() => Opt), snapKey?: () => unknown) { const read = () => (typeof options === "function" ? options() : options) const [value, setValue] = createSignal(target()) const source = motionValue(value()) const spring = motionValue(value()) let config = read() let snapValue = snapKey?.() let stop = attachSpring(spring, source, config) let off = spring.on("change", (next: number) => setValue(next)) createComputed(() => { const next = target() const nextSnap = snapKey?.() if (snapKey && nextSnap !== snapValue) { // State boundaries should adopt their target without animating from the previous context. snapValue = nextSnap stop() spring.jump(next) source.jump(next) stop = attachSpring(spring, source, config) setValue(next) return } source.set(next) }) createEffect(() => { if (!options) return const next = read() if (eq(config, next)) return config = next stop() stop = attachSpring(spring, source, next) setValue(spring.get()) }) onCleanup(() => { off() stop() spring.destroy() source.destroy() }) return value }