| 1 | "use strict";
|
|---|
| 2 |
|
|---|
| 3 | Object.defineProperty(exports, "__esModule", {
|
|---|
| 4 | value: true
|
|---|
| 5 | });
|
|---|
| 6 | exports.Customized = Customized;
|
|---|
| 7 | var _react = _interopRequireWildcard(require("react"));
|
|---|
| 8 | var React = _react;
|
|---|
| 9 | var _Layer = require("../container/Layer");
|
|---|
| 10 | var _LogUtils = require("../util/LogUtils");
|
|---|
| 11 | var _excluded = ["component"];
|
|---|
| 12 | /**
|
|---|
| 13 | * @fileOverview Customized
|
|---|
| 14 | */
|
|---|
| 15 | 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); }
|
|---|
| 16 | function _objectWithoutProperties(e, t) { if (null == e) return {}; var o, r, i = _objectWithoutPropertiesLoose(e, t); if (Object.getOwnPropertySymbols) { var n = Object.getOwnPropertySymbols(e); for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]); } return i; }
|
|---|
| 17 | 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; }
|
|---|
| 18 | /**
|
|---|
| 19 | * Customized component used to be necessary to render custom elements in Recharts 2.x.
|
|---|
| 20 | * Starting from Recharts 3.x, all charts are able to render arbitrary elements anywhere,
|
|---|
| 21 | * and Customized is no longer needed.
|
|---|
| 22 | *
|
|---|
| 23 | * @example Before: `<Customized component={<MyCustomComponent />} />`
|
|---|
| 24 | * @example After: `<MyCustomComponent />`
|
|---|
| 25 | *
|
|---|
| 26 | * @deprecated Just render your components directly. Will be removed in 4.0
|
|---|
| 27 | */
|
|---|
| 28 | function Customized(_ref) {
|
|---|
| 29 | var {
|
|---|
| 30 | component
|
|---|
| 31 | } = _ref,
|
|---|
| 32 | props = _objectWithoutProperties(_ref, _excluded);
|
|---|
| 33 | var child;
|
|---|
| 34 | if (/*#__PURE__*/(0, _react.isValidElement)(component)) {
|
|---|
| 35 | child = /*#__PURE__*/(0, _react.cloneElement)(component, props);
|
|---|
| 36 | } else if (typeof component === 'function') {
|
|---|
| 37 | // @ts-expect-error TS cannot verify that C is FunctionComponent<P> here
|
|---|
| 38 | child = /*#__PURE__*/(0, _react.createElement)(component, props);
|
|---|
| 39 | } else {
|
|---|
| 40 | (0, _LogUtils.warn)(false, "Customized's props `component` must be React.element or Function, but got %s.", typeof component);
|
|---|
| 41 | }
|
|---|
| 42 | return /*#__PURE__*/React.createElement(_Layer.Layer, {
|
|---|
| 43 | className: "recharts-customized-wrapper"
|
|---|
| 44 | }, child);
|
|---|
| 45 | }
|
|---|
| 46 | Customized.displayName = 'Customized'; |
|---|