Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-interpolation-animation

Package Overview
Dependencies
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-interpolation-animation

Check out the live demo/walkthrough at https://thomasoniii.github.io/react-interpolation-animation/

  • 1.0.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
Maintainers
1
Weekly downloads
 
Created
Source

react-interpolation-animation

Check out the live demo/walkthrough at https://thomasoniii.github.io/react-interpolation-animation/

This is a set of simple higher order react components + a hook that do nothing more than help you interpolate from one value to another.

It's easy to spit out a bunch of bars in a bar chart in an SVG element. It's relatively difficult to animate a transition from one width to another. These files make it easy.

Instead of this:

<rect x = {x} y = {y} width = {width} height = {height} fill = "blue" />`

Do this:

import { Animator } from "react-interpolation-animation"

<Animator values={["x", "y", "width", "height"]}>
  <rect x = {x} y = {y} width = {width} height = {height} fill = "blue" />
</Animator>`

That's it. Now if you change the values of x,y,width or height, your rectangle will animate to the new value instad of jarringly jumping.

If it makes more sense, you can also use a hook and do it inline. So instead of this:

const MyRect = ({x,y,width,height,fill}) => {
  return <rect x = {x} y = {y} width = {width} height = {height} fill = {fill} />
}

Do this:

import { useInterpolate } from "react-interpolation-animation"

const MyRect = ({x,y,width,height,fill}) => {

  const [interpolatedX, setInterpolatedX] = useState(x)
  useInterpolate(x, setInterpolatedX)

  const [interpolatedY, setInterpolatedY] = useState(y)
  useInterpolate(y, setInterpolatedY)

  const [interpolatedWidth, setInterpolatedWidth] = useState(width)
  useInterpolate(width, setInterpolatedWidth)

  const [interpolatedHeight, setInterpolatedHeight] = useState(height)
  useInterpolate(height, setInterpolatedHeight)

  return <rect x = {interpolatedX} y = {interpolatedY} width = {interpolatedWidth} height = {interpolatedHeight} fill = {fill} />
}

Ta da! Read the walkthrough up above and the source for more options about all the configuration that can go into it.

FAQ

  • Why in the world would I use this? I love (insert name of animation library)

    That's awesome! Keep using it, then! This library is to help add quick transitional animations into existing code. So if you have a component that spits out a chart but doesn't animate transitions, you can use this to wrapper your pieces to easily add those transitions.

    If it's not powerful enough for you, then take the time to learn one of the more thorough libraries.

  • My animation is jumping all over the place. What's going on?

    You probably are passing a value as a string instead of a numeric value. Make sure your numbers are numbers!

FAQs

Package last updated on 25 Aug 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc