Link.js 4.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.default = void 0;
  6. var _react = _interopRequireDefault(require("react"));
  7. var _Module2 = _interopRequireDefault(require("../Module"));
  8. require("./base.css");
  9. function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
  10. 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); }
  11. function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
  12. 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); } }
  13. function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }
  14. function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); }
  15. function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
  16. function _get(target, property, receiver) { if (typeof Reflect !== "undefined" && Reflect.get) { _get = Reflect.get; } else { _get = function _get(target, property, receiver) { var base = _superPropBase(target, property); if (!base) return; var desc = Object.getOwnPropertyDescriptor(base, property); if (desc.get) { return desc.get.call(receiver); } return desc.value; }; } return _get(target, property, receiver || target); }
  17. function _superPropBase(object, property) { while (!Object.prototype.hasOwnProperty.call(object, property)) { object = _getPrototypeOf(object); if (object === null) break; } return object; }
  18. function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
  19. 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); }
  20. function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
  21. var Link =
  22. /*#__PURE__*/
  23. function (_Module) {
  24. _inherits(Link, _Module);
  25. function Link(props) {
  26. var _this;
  27. _classCallCheck(this, Link);
  28. _this = _possibleConstructorReturn(this, _getPrototypeOf(Link).call(this, props));
  29. _this.state = {};
  30. _this.ref.value = _this.props.link || _this.ref.value;
  31. return _this;
  32. }
  33. _createClass(Link, [{
  34. key: "go",
  35. value: function go(ref) {
  36. this.CoreSystem.go(ref);
  37. }
  38. }, {
  39. key: "render",
  40. value: function render() {
  41. var _this2 = this;
  42. return _react.default.createElement("a", {
  43. href: this.RoutingSystem.getURL(this.ref.value),
  44. target: this.props.target,
  45. className: "Link ".concat(this.props.className),
  46. onClick: function onClick(e) {
  47. if (!_this2.props.newTab) {
  48. _this2.go(_this2.ref.value);
  49. e.preventDefault();
  50. }
  51. }
  52. }, _get(_getPrototypeOf(Link.prototype), "render", this).call(this));
  53. }
  54. }]);
  55. return Link;
  56. }(_Module2.default);
  57. Link.EditPosition = "top-left";
  58. Link.Inputs = {
  59. ref: {
  60. type: _Module2.default.Types.Text,
  61. defaultValue: "home"
  62. }
  63. };
  64. Link.Category = "Layout";
  65. var _default = Link;
  66. exports.default = _default;