UNPKG

react-annotation

Version:

React components for annotating SVG elements

107 lines (78 loc) 4.76 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _react = _interopRequireDefault(require("react")); var _bracket = _interopRequireDefault(require("viz-annotation/lib/Subject/bracket")); var _Subject2 = _interopRequireDefault(require("./Subject")); var _propTypes = _interopRequireDefault(require("prop-types")); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } var SubjectBracket = /*#__PURE__*/ function (_Subject) { _inherits(SubjectBracket, _Subject); function SubjectBracket() { var _getPrototypeOf2; var _this; _classCallCheck(this, SubjectBracket); for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } _this = _possibleConstructorReturn(this, (_getPrototypeOf2 = _getPrototypeOf(SubjectBracket)).call.apply(_getPrototypeOf2, [this].concat(args))); _defineProperty(_assertThisInitialized(_assertThisInitialized(_this)), "name", "SubjectBracket"); return _this; } _createClass(SubjectBracket, [{ key: "getComponents", value: function getComponents(_ref) { var height = _ref.height, width = _ref.width, _ref$depth = _ref.depth, depth = _ref$depth === void 0 ? 20 : _ref$depth, _ref$type = _ref.type, type = _ref$type === void 0 ? "square" : _ref$type, editMode = _ref.editMode; var components = (0, _bracket.default)({ height: height, width: width, depth: depth, type: type, editMode: editMode }); var handleKeys = { height: height, width: width, depth: depth }; components.handleFunction = function (h, data) { if (h.key === "depth") { return { depth: depth + data["oDelta".concat(h.type)] }; } else { return _defineProperty({}, h.key, handleKeys[h.key] + data[h.key === "width" ? "oDeltaX" : "oDeltaY"]); } }; return components; } }]); return SubjectBracket; }(_Subject2.default); exports.default = SubjectBracket; SubjectBracket.propTypes = { width: _propTypes.default.number, height: _propTypes.default.number, depth: _propTypes.default.number, editMode: _propTypes.default.bool };