@difizen/mana-app
Version:
82 lines (81 loc) • 7.86 kB
JavaScript
;
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); }
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.BoxViewComponent = exports.BoxSlotView = void 0;
var _manaCore = require("@difizen/mana-core");
var _manaObservable = require("@difizen/mana-observable");
var _manaReact = require("@difizen/mana-react");
var _manaSyringe = require("@difizen/mana-syringe");
var _react = _interopRequireDefault(require("react"));
var _jsxRuntime = require("react/jsx-runtime");
var _dec, _dec2, _dec3, _dec4, _class, _class2, _descriptor, _descriptor2;
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
function _initializerDefineProperty(target, property, descriptor, context) { if (!descriptor) return; Object.defineProperty(target, property, { enumerable: descriptor.enumerable, configurable: descriptor.configurable, writable: descriptor.writable, value: descriptor.initializer ? descriptor.initializer.call(context) : void 0 }); }
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, _toPropertyKey(descriptor.key), descriptor); } }
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : String(i); }
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); }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
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 } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); }
function _applyDecoratedDescriptor(target, property, decorators, descriptor, context) { var desc = {}; Object.keys(descriptor).forEach(function (key) { desc[key] = descriptor[key]; }); desc.enumerable = !!desc.enumerable; desc.configurable = !!desc.configurable; if ('value' in desc || desc.initializer) { desc.writable = true; } desc = decorators.slice().reverse().reduce(function (desc, decorator) { return decorator(target, property, desc) || desc; }, desc); if (context && desc.initializer !== void 0) { desc.value = desc.initializer ? desc.initializer.call(context) : void 0; desc.initializer = undefined; } if (desc.initializer === void 0) { Object.defineProperty(target, property, desc); desc = null; } return desc; }
function _initializerWarningHelper(descriptor, context) { throw new Error('Decorating class property failed. Please ensure that ' + 'transform-class-properties is enabled and runs after the decorators transform.'); }
var BoxViewComponent = exports.BoxViewComponent = /*#__PURE__*/_react.default.forwardRef(function BoxViewComponent(_props, ref) {
var instance = (0, _manaObservable.useInject)(_manaCore.ViewInstance);
var children = instance.children;
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_manaReact.BoxPanel, {
direction: instance.direction,
className: instance.className || '',
ref: ref,
children: children.map(function (item) {
return /*#__PURE__*/(0, _jsxRuntime.jsx)(_manaReact.BoxPanel.Pane, {
flex: 1,
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_manaCore.ViewRender, {
view: item
})
}, item.id);
})
});
});
var BoxSlotView = exports.BoxSlotView = (_dec = (0, _manaSyringe.transient)(), _dec2 = (0, _manaCore.view)('box-panel-view'), _dec3 = (0, _manaObservable.prop)(), _dec4 = (0, _manaObservable.prop)(), _dec(_class = _dec2(_class = (_class2 = /*#__PURE__*/function (_DefaultSlotView) {
_inherits(BoxSlotView, _DefaultSlotView);
var _super = _createSuper(BoxSlotView);
function BoxSlotView(option, viewManager) {
var _this;
_classCallCheck(this, BoxSlotView);
_this = _super.call(this, option, viewManager);
_this.label = null;
_this.view = BoxViewComponent;
_initializerDefineProperty(_this, "sort", _descriptor, _assertThisInitialized(_this));
_initializerDefineProperty(_this, "direction", _descriptor2, _assertThisInitialized(_this));
_this.option = option;
_this.id = "box-".concat(_this.id);
_this.sort = option.sort;
_this.direction = option.direction || 'left-to-right';
return _this;
}
BoxSlotView = (0, _manaSyringe.inject)(_manaCore.ViewManager)(BoxSlotView, undefined, 1) || BoxSlotView;
BoxSlotView = (0, _manaSyringe.inject)(_manaCore.ViewOption)(BoxSlotView, undefined, 0) || BoxSlotView;
return _createClass(BoxSlotView);
}(_manaCore.DefaultSlotView), (_descriptor = _applyDecoratedDescriptor(_class2.prototype, "sort", [_dec3], {
configurable: true,
enumerable: true,
writable: true,
initializer: function initializer() {
return false;
}
}), _descriptor2 = _applyDecoratedDescriptor(_class2.prototype, "direction", [_dec4], {
configurable: true,
enumerable: true,
writable: true,
initializer: function initializer() {
return 'left-to-right';
}
})), _class2)) || _class) || _class);