FunnelUtils.js 3.1 KB

123456789101112131415161718192021222324252627282930313233
  1. function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
  2. 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); }
  3. function ownKeys(e, r) { var t = Object.keys(e); if (Object.getOwnPropertySymbols) { var o = Object.getOwnPropertySymbols(e); r && (o = o.filter(function (r) { return Object.getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
  4. function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? ownKeys(Object(t), !0).forEach(function (r) { _defineProperty(e, r, t[r]); }) : Object.getOwnPropertyDescriptors ? Object.defineProperties(e, Object.getOwnPropertyDescriptors(t)) : ownKeys(Object(t)).forEach(function (r) { Object.defineProperty(e, r, Object.getOwnPropertyDescriptor(t, r)); }); } return e; }
  5. function _defineProperty(obj, key, value) { key = _toPropertyKey(key); if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }
  6. function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
  7. function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
  8. import React from 'react';
  9. import { Shape, getPropsFromShapeOption } from './ActiveShapeUtils';
  10. // Trapezoid props is expecting x, y, height as numbers.
  11. // When props are being spread in from a user defined component in Funnel,
  12. // the prop types of an SVGElement have these typed as string | number.
  13. // This function will return the passed in props along with x, y, height as numbers.
  14. export function typeGuardTrapezoidProps(option, props) {
  15. var xValue = "".concat(props.x || option.x);
  16. var x = parseInt(xValue, 10);
  17. var yValue = "".concat(props.y || option.y);
  18. var y = parseInt(yValue, 10);
  19. var heightValue = "".concat((props === null || props === void 0 ? void 0 : props.height) || (option === null || option === void 0 ? void 0 : option.height));
  20. var height = parseInt(heightValue, 10);
  21. return _objectSpread(_objectSpread(_objectSpread({}, props), getPropsFromShapeOption(option)), {}, {
  22. height: height,
  23. x: x,
  24. y: y
  25. });
  26. }
  27. export function FunnelTrapezoid(props) {
  28. return /*#__PURE__*/React.createElement(Shape, _extends({
  29. shapeType: "trapezoid",
  30. propTransformer: typeGuardTrapezoidProps
  31. }, props));
  32. }