@difizen/mana-core
Version:
161 lines (160 loc) • 8.9 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.ApplicationComponent = void 0;
var _react = require("react");
var _application = require("../application");
var _module = require("../module");
var _hooks = require("../utils/hooks");
var _view = require("../view");
var _portalSlotView = require("../view/portal-slot-view");
var _rootView = require("../view/root-view");
var _context = require("./context");
var _rootViewRender = require("./root-view-render");
require("./index.less");
var _jsxRuntime = require("react/jsx-runtime");
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; }
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; }
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; }
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 _slicedToArray(arr, i) { return _arrayWithHoles(arr) || _iterableToArrayLimit(arr, i) || _unsupportedIterableToArray(arr, i) || _nonIterableRest(); }
function _nonIterableRest() { throw new TypeError("Invalid attempt to destructure non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
function _iterableToArrayLimit(r, l) { var t = null == r ? null : "undefined" != typeof Symbol && r[Symbol.iterator] || r["@@iterator"]; if (null != t) { var e, n, i, u, a = [], f = !0, o = !1; try { if (i = (t = t.call(r)).next, 0 === l) { if (Object(t) !== t) return; f = !1; } else for (; !(f = (e = i.call(t)).done) && (a.push(e.value), a.length !== l); f = !0); } catch (r) { o = !0, n = r; } finally { try { if (!f && null != t.return && (u = t.return(), Object(u) !== u)) return; } finally { if (o) throw n; } } return a; } }
function _arrayWithHoles(arr) { if (Array.isArray(arr)) return arr; }
function _toConsumableArray(arr) { return _arrayWithoutHoles(arr) || _iterableToArray(arr) || _unsupportedIterableToArray(arr) || _nonIterableSpread(); }
function _nonIterableSpread() { throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method."); }
function _unsupportedIterableToArray(o, minLen) { if (!o) return; if (typeof o === "string") return _arrayLikeToArray(o, minLen); var n = Object.prototype.toString.call(o).slice(8, -1); if (n === "Object" && o.constructor) n = o.constructor.name; if (n === "Map" || n === "Set") return Array.from(o); if (n === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(n)) return _arrayLikeToArray(o, minLen); }
function _iterableToArray(iter) { if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter); }
function _arrayWithoutHoles(arr) { if (Array.isArray(arr)) return _arrayLikeToArray(arr); }
function _arrayLikeToArray(arr, len) { if (len == null || len > arr.length) len = arr.length; for (var i = 0, arr2 = new Array(len); i < len; i++) arr2[i] = arr[i]; return arr2; } /* eslint-disable @typescript-eslint/no-unused-vars */
var PortalModule = _module.ManaModule.create().register((0, _view.createSlotPreference)({
slot: _view.PortalSlotId,
view: _portalSlotView.PortalSlotView
}));
var ApplicationComponent = exports.ApplicationComponent = function ApplicationComponent(props) {
var onReady = props.onReady,
onInitialized = props.onInitialized,
onWillStart = props.onWillStart,
_props$modules = props.modules,
modules = _props$modules === void 0 ? [] : _props$modules,
loading = props.loading,
_props$renderChildren = props.renderChildren,
renderChildren = _props$renderChildren === void 0 ? false : _props$renderChildren,
_props$renderAfterRea = props.renderAfterReady,
renderAfterReady = _props$renderAfterRea === void 0 ? false : _props$renderAfterRea;
var nextModels = (0, _react.useMemo)(function () {
return [_application.ApplicationModule, PortalModule].concat(_toConsumableArray(modules));
}, [modules]);
var hostRef = /*#__PURE__*/(0, _react.createRef)();
var _useState = (0, _react.useState)(false),
_useState2 = _slicedToArray(_useState, 2),
ready = _useState2[0],
setReady = _useState2[1];
var _useState3 = (0, _react.useState)(false),
_useState4 = _slicedToArray(_useState3, 2),
appReady = _useState4[0],
setAppReady = _useState4[1];
var _useState5 = (0, _react.useState)(undefined),
_useState6 = _slicedToArray(_useState5, 2),
application = _useState6[0],
setApplication = _useState6[1];
var LoadingComponent = function LoadingComponent() {
return loading ? /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
className: "mana-preload",
children: loading
}) : null;
};
var onModuleReady = function onModuleReady(ctx) {
var current = hostRef.current;
setReady(true);
var app = ctx.container.get(_application.Application);
setApplication(app);
var rootComponents = ctx.container.get(_rootView.RootComponents);
if (!rootComponents.Loading) {
rootComponents.Loading = LoadingComponent;
}
var appState = ctx.container.get(_application.ApplicationStateService);
if (current && app) {
app.host = current;
}
appState.reachedState(_application.ApplicationState.Initialized).then(function () {
if (onInitialized) {
onInitialized(ctx, app);
}
return;
}).catch(function (_e) {
//
});
if (onWillStart) {
onWillStart(ctx, app);
}
app.start();
appState.reachedState(_application.ApplicationState.Ready).then(function () {
if (onReady) {
setAppReady(true);
onReady(ctx, app);
}
return;
}).catch(function (_e) {
//
});
};
(0, _hooks.useMount)(function () {
if (hostRef.current && application) {
application.host = hostRef.current;
application.mount();
}
});
(0, _hooks.useUnmount)(function () {
if (application) {
application.unmount();
}
});
var loadingValue = loading ? /*#__PURE__*/(0, _jsxRuntime.jsx)(LoadingComponent, {}) : null;
var renderContent = function renderContent() {
if (!ready) {
// 模块加载未完成
return loadingValue;
}
if (!renderChildren) {
// 基于 rootSlot 渲染
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_rootViewRender.RootViewRender, {
loading: loadingValue
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_view.Slot, {
name: _view.PortalSlotId,
viewProps: {
shadow: true
}
})]
});
}
if (appReady || !renderAfterReady) {
// 模块加载完成 或 renderAfterReady 情况下 app 启动完成
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_jsxRuntime.Fragment, {
children: [props.children, /*#__PURE__*/(0, _jsxRuntime.jsx)(_view.Slot, {
name: _view.PortalSlotId,
viewProps: {
shadow: true
}
})]
});
}
// renderAfterReady 情况下 app 未启动完成
return loadingValue;
};
return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
ref: hostRef,
className: "mana-app",
tabIndex: 1,
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_context.ContextComponent, _objectSpread(_objectSpread({}, props), {}, {
loading: loadingValue,
modules: nextModels,
onReady: onModuleReady,
children: renderContent()
}))
});
};