grommet
Version:
focus on the essential experience
106 lines • 3.56 kB
JavaScript
var _excluded = ["id"],
_excluded2 = ["color"];
function _extends() { return _extends = Object.assign ? Object.assign.bind() : function (n) { for (var e = 1; e < arguments.length; e++) { var t = arguments[e]; for (var r in t) ({}).hasOwnProperty.call(t, r) && (n[r] = t[r]); } return n; }, _extends.apply(null, arguments); }
function _objectWithoutPropertiesLoose(r, e) { if (null == r) return {}; var t = {}; for (var n in r) if ({}.hasOwnProperty.call(r, n)) { if (-1 !== e.indexOf(n)) continue; t[n] = r[n]; } return t; }
import React, { useReducer, useEffect } from 'react';
import { Box, Diagram, Stack, Paragraph } from 'grommet';
var Node = function Node(_ref) {
var id = _ref.id,
rest = _objectWithoutPropertiesLoose(_ref, _excluded);
return /*#__PURE__*/React.createElement(Box, _extends({
id: id,
basis: "xxsmall",
margin: "small",
pad: "medium",
round: "small",
background: "dark-3"
}, rest));
};
var connection = function connection(fromTarget, toTarget, _temp) {
var _ref2 = _temp === void 0 ? {} : _temp,
color = _ref2.color,
rest = _objectWithoutPropertiesLoose(_ref2, _excluded2);
return _extends({
fromTarget: fromTarget,
toTarget: toTarget,
anchor: 'vertical',
color: color,
thickness: 'xsmall',
round: true,
type: 'rectilinear'
}, rest);
};
var fullTopRow = [1, 2, 3];
export var Progressing = function Progressing() {
var reducer = function reducer(topRow) {
var sliceEnd = topRow.length < fullTopRow.length ? topRow.length + 1 : 1;
return fullTopRow.slice(0, sliceEnd);
};
var _useReducer = useReducer(reducer, fullTopRow.slice(0, 1)),
topRow = _useReducer[0],
dispatch = _useReducer[1];
useEffect(function () {
var timer = setInterval(function () {
dispatch();
}, 3000);
return function () {
return clearInterval(timer);
};
}, [dispatch]);
var connections = [connection('1', '5')];
if (topRow.length >= 2) {
connections.push(connection('1', '2', {
anchor: 'horizontal'
}));
}
if (topRow.length >= 3) {
connections.push(connection('3', '5', {
anchor: 'horizontal',
animation: {
type: 'pulse',
duration: 500,
size: 'small'
},
color: 'brand'
}));
}
return (
/*#__PURE__*/
// Uncomment <Grommet> lines when using outside of storybook
// <Grommet theme={...}>
React.createElement(Box, {
align: "start",
pad: "large"
}, /*#__PURE__*/React.createElement(Paragraph, null, "Adding and removing nodes with animated connections. The animation 'draw' is applied to the entire diagram, however, the last connection receives its own animation type of 'pulse'."), /*#__PURE__*/React.createElement(Stack, null, /*#__PURE__*/React.createElement(Box, null, /*#__PURE__*/React.createElement(Box, {
direction: "row"
}, topRow.map(function (id) {
return /*#__PURE__*/React.createElement(Node, {
key: id,
id: id
});
})), /*#__PURE__*/React.createElement(Box, {
direction: "row"
}, [4, 5].map(function (id) {
return /*#__PURE__*/React.createElement(Node, {
key: id,
id: id,
background: "dark-2"
});
}))), /*#__PURE__*/React.createElement(Diagram, {
animation: {
type: 'draw',
duration: 3000
},
connections: connections
})))
// </Grommet>
);
};
Progressing.parameters = {
chromatic: {
disable: true
}
};
export default {
title: 'Visualizations/Diagram/Progressing'
};