Value

A multicast reaction that tracks the state of a number and allows velocity queries.

Import

import { value } from 'popmotion';

Usage

value(initialValue, onUpdate);
import { tween, value } from 'popmotion';
import styler from 'stylefire';

const div = styler(document.querySelector('div'));
const divX = value(0, div.set('x'));

tween({ to: 500 }).start(divX);

setTimeout(() => console.log(() => {
  physics({
    velocity: divX.getVelocity()
  }).start(divX); // This will automatically `stop` the tween
}), 150);

value can also handle objects and arrays:

const foo = value({ x: 0, y: 0 });
const bar = value([0, 0]);

foo.getVelocity(); // { x: 0, y: 0 }
bar.getVelocity(); // [0, 0]

As a multicast reaction, you can optionally subscribe with multiple other reactions rather than providing an initial subscription:

const foo = value(0);
foo.subscribe(() => console.log('first reaction'));
foo.subscribe(() => console.log('second reaction'));

Methods

Reaction methods

value() returns:

  • get(): number: Returns the current value state.
  • getVelocity: number: Returns the current value velocity.
  • filter((v: any) => boolean): Returns a new action that filters out values when the provided function returns false.
  • pipe(...funcs: Array<(v) => v): Returns a new reaction that will run update values through this sequence of functions.
  • stop(): Stops parent action.
  • subscribe(update | { update, complete }): Returns a subscription.
  • while((v: any) => boolean): Returns a new reaction that will complete when the provided function returns false.

Subscription methods

value().subscribe() returns:

  • unsubscribe(): void