@visx/react-spring
Version:
visx primitives that rely on react-spring for animation
43 lines • 2.03 kB
JavaScript
import _pt from "prop-types";
var _excluded = ["scale", "lines", "animationTrajectory", "animateXOrY", "lineKey", "lineStyle"];
function _extends() { _extends = Object.assign ? Object.assign.bind() : function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
import React from 'react';
import { animated, useTransition } from '@react-spring/web';
import useLineTransitionConfig from '../spring-configs/useLineTransitionConfig';
export default function AnimatedGridLines(_ref) {
var scale = _ref.scale,
lines = _ref.lines,
animationTrajectory = _ref.animationTrajectory,
animateXOrY = _ref.animateXOrY,
lineKey = _ref.lineKey,
lineStyle = _ref.lineStyle,
lineProps = _objectWithoutPropertiesLoose(_ref, _excluded);
var animatedLines = useTransition(lines, _extends({}, useLineTransitionConfig({
scale: scale,
animateXOrY: animateXOrY,
animationTrajectory: animationTrajectory
}), {
key: lineKey
}));
return /*#__PURE__*/React.createElement(React.Fragment, null, animatedLines(function (_ref2, _, _ref3) {
var fromX = _ref2.fromX,
toX = _ref2.toX,
fromY = _ref2.fromY,
toY = _ref2.toY,
opacity = _ref2.opacity;
var key = _ref3.key;
return /*#__PURE__*/React.createElement(animated.line, _extends({
key: key,
x1: fromX,
x2: toX,
y1: fromY,
y2: toY,
strokeOpacity: opacity,
style: lineStyle
}, lineProps));
}));
}
AnimatedGridLines.propTypes = {
lineKey: _pt.func.isRequired
};