@formant/ava-react
Version:
React components of AVA.
57 lines • 3.35 kB
JavaScript
function _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; }
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
import React, { useState } from 'react';
import { CHART_HEIGHT, INSIGHT_CARD_PREFIX_CLS } from "../../constants";
import { G2Chart } from "./G2Chart";
export var ChartCarousel = function ChartCarousel(_ref) {
var charts = _ref.charts,
_ref$height = _ref.height,
height = _ref$height === void 0 ? CHART_HEIGHT : _ref$height,
width = _ref.width;
var _useState = useState(0),
_useState2 = _slicedToArray(_useState, 2),
selectedChartIndex = _useState2[0],
setSelectedCardIndex = _useState2[1];
var onSelect = function onSelect(value) {
setSelectedCardIndex(value);
};
var chartsOptions = charts.map(function (chart, index) {
return {
label: /*#__PURE__*/React.createElement("span", {
style: {
border: index === selectedChartIndex ? '1px solid rgba(0,0,0,0.1)' : '1px solid rgba(0,0,0,0.15)',
borderRadius: '2px',
display: 'inline-block',
width: index === selectedChartIndex ? '8px' : '12px',
height: '8px',
backgroundColor: index === selectedChartIndex ? 'rgba(0,0,0,0.15)' : '#fff',
cursor: 'pointer',
margin: '2px'
},
onClick: function onClick() {
onSelect(index);
}
}),
value: index
};
});
return /*#__PURE__*/React.createElement("div", {
className: "".concat(INSIGHT_CARD_PREFIX_CLS, "-chart-carousel")
}, /*#__PURE__*/React.createElement(G2Chart, {
spec: charts[selectedChartIndex],
height: height,
width: width
}), chartsOptions.length > 1 && /*#__PURE__*/React.createElement("div", {
style: {
textAlign: 'center'
}
}, chartsOptions.map(function (option) {
return /*#__PURE__*/React.createElement("span", {
key: option.value
}, option.label);
})));
};