82 lines
3.8 KiB
JavaScript
82 lines
3.8 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.CartesianChart = void 0;
|
|
var _react = _interopRequireWildcard(require("react"));
|
|
var React = _react;
|
|
var _RechartsStoreProvider = require("../state/RechartsStoreProvider");
|
|
var _chartDataContext = require("../context/chartDataContext");
|
|
var _ReportMainChartProps = require("../state/ReportMainChartProps");
|
|
var _ReportChartProps = require("../state/ReportChartProps");
|
|
var _CategoricalChart = require("./CategoricalChart");
|
|
var _resolveDefaultProps = require("../util/resolveDefaultProps");
|
|
function _interopRequireWildcard(e, t) { if ("function" == typeof WeakMap) var r = new WeakMap(), n = new WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, default: e }; if (null === e || "object" != typeof e && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = Object.defineProperty) && Object.getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
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); }
|
|
var defaultMargin = {
|
|
top: 5,
|
|
right: 5,
|
|
bottom: 5,
|
|
left: 5
|
|
};
|
|
var defaultProps = {
|
|
accessibilityLayer: true,
|
|
layout: 'horizontal',
|
|
stackOffset: 'none',
|
|
barCategoryGap: '10%',
|
|
barGap: 4,
|
|
margin: defaultMargin,
|
|
reverseStackOrder: false,
|
|
syncMethod: 'index',
|
|
responsive: false
|
|
};
|
|
|
|
/**
|
|
* These are one-time, immutable options that decide the chart's behavior.
|
|
* Users who wish to call CartesianChart may decide to pass these options explicitly,
|
|
* but usually we would expect that they use one of the convenience components like BarChart, LineChart, etc.
|
|
*/
|
|
|
|
var CartesianChart = exports.CartesianChart = /*#__PURE__*/(0, _react.forwardRef)(function CartesianChart(props, ref) {
|
|
var _categoricalChartProp;
|
|
var rootChartProps = (0, _resolveDefaultProps.resolveDefaultProps)(props.categoricalChartProps, defaultProps);
|
|
var {
|
|
chartName,
|
|
defaultTooltipEventType,
|
|
validateTooltipEventTypes,
|
|
tooltipPayloadSearcher,
|
|
categoricalChartProps
|
|
} = props;
|
|
var options = {
|
|
chartName,
|
|
defaultTooltipEventType,
|
|
validateTooltipEventTypes,
|
|
tooltipPayloadSearcher,
|
|
eventEmitter: undefined
|
|
};
|
|
return /*#__PURE__*/React.createElement(_RechartsStoreProvider.RechartsStoreProvider, {
|
|
preloadedState: {
|
|
options
|
|
},
|
|
reduxStoreName: (_categoricalChartProp = categoricalChartProps.id) !== null && _categoricalChartProp !== void 0 ? _categoricalChartProp : chartName
|
|
}, /*#__PURE__*/React.createElement(_chartDataContext.ChartDataContextProvider, {
|
|
chartData: categoricalChartProps.data
|
|
}), /*#__PURE__*/React.createElement(_ReportMainChartProps.ReportMainChartProps, {
|
|
layout: rootChartProps.layout,
|
|
margin: rootChartProps.margin
|
|
}), /*#__PURE__*/React.createElement(_ReportChartProps.ReportChartProps, {
|
|
baseValue: rootChartProps.baseValue,
|
|
accessibilityLayer: rootChartProps.accessibilityLayer,
|
|
barCategoryGap: rootChartProps.barCategoryGap,
|
|
maxBarSize: rootChartProps.maxBarSize,
|
|
stackOffset: rootChartProps.stackOffset,
|
|
barGap: rootChartProps.barGap,
|
|
barSize: rootChartProps.barSize,
|
|
syncId: rootChartProps.syncId,
|
|
syncMethod: rootChartProps.syncMethod,
|
|
className: rootChartProps.className
|
|
}), /*#__PURE__*/React.createElement(_CategoricalChart.CategoricalChart, _extends({}, rootChartProps, {
|
|
ref: ref
|
|
})));
|
|
}); |