fastlion-amis
Version:
一种MIS页面生成工具
591 lines (590 loc) • 28.1 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.PageRenderer = void 0;
var tslib_1 = require("tslib");
var react_1 = (0, tslib_1.__importDefault)(require("react"));
var factory_1 = require("../factory");
var service_1 = require("../store/service");
var types_1 = require("../types");
var tpl_1 = require("../utils/tpl");
var helper_1 = require("../utils/helper");
var Scoped_1 = require("../Scoped");
var api_1 = require("../utils/api");
var mapValues_1 = (0, tslib_1.__importDefault)(require("lodash/mapValues"));
var tpl_builtin_1 = require("../utils/tpl-builtin");
var helper_2 = require("../utils/helper");
var Page = /** @class */ (function (_super) {
(0, tslib_1.__extends)(Page, _super);
function Page(props) {
var _a, _b;
var _this = _super.call(this, props) || this;
// autobind 会让继承里面的 super 指向有问题,所以先这样!
(0, helper_1.bulkBindFunctions)(_this, [
'handleAction',
'handleChange',
'handleQuery',
'handleDialogConfirm',
'handleDialogClose',
'handleDrawerConfirm',
'handleDrawerClose',
'handleClick',
'reload',
'silentReload',
'initInterval',
'handleResizeAfterPin'
]);
_this.style = document.createElement('style');
_this.style.setAttribute('data-page', '');
document.getElementsByTagName('head')[0].appendChild(_this.style);
_this.updateStyle();
_this.varStyle = document.createElement('style');
_this.style.setAttribute('data-vars', '');
document.getElementsByTagName('head')[0].appendChild(_this.varStyle);
_this.updateVarStyle();
_this.pageContentId = (_b = 'page-content-id_' + ((_a = props.body) === null || _a === void 0 ? void 0 : _a.name)) !== null && _b !== void 0 ? _b : '';
_this.pageMainRef = react_1.default.createRef();
_this.pageRightRef = react_1.default.createRef();
document.body.addEventListener(types_1.ResizeEvent.STOP_RESIZE_AFTER_PIN + _this.pageContentId, _this.handleResizeAfterPin);
document.body.addEventListener(types_1.ResizeEvent.RESET_MAIN_PAGE_WIDTH + _this.pageContentId, _this.handleRESET_MAIN_PAGE_WIDTH);
return _this;
}
/**
* 构建 css
*/
Page.prototype.updateStyle = function () {
if (this.props.css || this.props.mobileCSS) {
this.style.innerHTML = "\n " + this.buildCSS(this.props.css) + "\n\n @media (max-width: 768px) {\n " + this.buildCSS(this.props.mobileCSS) + "\n }\n ";
}
else {
this.style.innerHTML = '';
}
};
Page.prototype.buildCSS = function (cssRules) {
if (!cssRules) {
return '';
}
var css = '';
for (var selector in cssRules) {
var declaration = cssRules[selector];
var declarationStr = '';
for (var property in declaration) {
declarationStr += " " + property + ": " + declaration[property] + ";\n";
}
css += "\n " + selector + " {\n " + declarationStr + "\n }\n ";
}
return css;
};
/**
* 构建用于 css 变量的内联样式
*/
Page.prototype.updateVarStyle = function () {
var cssVars = this.props.cssVars;
var cssVarsContent = '';
if (cssVars) {
for (var key in cssVars) {
if (key.startsWith('--')) {
if (key.indexOf(':') !== -1) {
continue;
}
var value = cssVars[key];
// 这是为了防止 xss,可能还有别的
if (typeof value === 'string' &&
(value.indexOf('expression(') !== -1 || value.indexOf(';') !== -1)) {
continue;
}
cssVarsContent += key + ": " + value + "; \n";
}
}
this.varStyle.innerHTML = "\n :root {\n " + cssVarsContent + "\n }\n ";
}
};
Page.prototype.componentDidMount = function () {
var _a = this.props, initApi = _a.initApi, initFetch = _a.initFetch, initFetchOn = _a.initFetchOn, store = _a.store, messages = _a.messages;
this.mounted = true;
if ((0, api_1.isEffectiveApi)(initApi, store.data, initFetch, initFetchOn)) {
store
.fetchInitData(initApi, store.data, {
successMessage: messages && messages.fetchSuccess,
errorMessage: messages && messages.fetchFailed
})
.then(this.initInterval);
}
};
Page.prototype.componentDidUpdate = function (prevProps) {
var props = this.props;
var store = props.store;
var initApi = props.initApi;
if (
// 前一次不构成条件,这次更新构成了条件,则需要重新拉取
(props.initFetchOn && props.initFetch && !prevProps.initFetch) ||
// 构成了条件,同时 url 里面有变量,且上次和这次还不一样,则需要重新拉取。
(props.initFetch !== false &&
(0, api_1.isApiOutdated)(prevProps.initApi, initApi, prevProps.data, props.data))) {
var messages = props.messages;
(0, api_1.isEffectiveApi)(initApi, store.data) &&
store
.fetchData(initApi, store.data, {
successMessage: messages && messages.fetchSuccess,
errorMessage: messages && messages.fetchFailed
})
.then(this.initInterval);
}
else if (JSON.stringify(props.css) !== JSON.stringify(prevProps.css) ||
JSON.stringify(props.mobileCSS) !== JSON.stringify(prevProps.mobileCSS)) {
this.updateStyle();
}
else if (JSON.stringify(props.cssVars) !== JSON.stringify(prevProps.cssVars)) {
this.updateVarStyle();
}
else if (props.defaultData !== prevProps.defaultData) {
store.reInitData(props.defaultData);
}
};
Page.prototype.componentWillUnmount = function () {
this.mounted = false;
clearTimeout(this.timer);
if (this.style) {
this.style.remove();
}
if (this.varStyle) {
this.varStyle.remove();
}
document.body.removeEventListener(types_1.ResizeEvent.STOP_RESIZE_AFTER_PIN + this.pageContentId, this.handleResizeAfterPin);
document.body.removeEventListener(types_1.ResizeEvent.RESET_MAIN_PAGE_WIDTH + this.pageContentId, this.handleRESET_MAIN_PAGE_WIDTH);
};
Page.prototype.reloadTarget = function (target, data) {
// 会被覆写
};
Page.prototype.handleAction = function (e, action, ctx, throwErrors, delegate) {
var _this = this;
if (throwErrors === void 0) { throwErrors = false; }
var _a = this.props, env = _a.env, store = _a.store, messages = _a.messages, onAction = _a.onAction;
if (action.actionType === 'dialog') {
store.setCurrentAction(action);
store.openDialog(ctx);
}
else if (action.actionType === 'drawer') {
store.setCurrentAction(action);
store.openDrawer(ctx);
}
else if (action.actionType === 'ajax') {
store.setCurrentAction(action);
return store
.saveRemote(action.api, ctx, {
successMessage: (action.messages && action.messages.success) ||
(messages && messages.saveSuccess),
errorMessage: (action.messages && action.messages.failed) ||
(messages && messages.saveSuccess)
})
.then(function (response) { return (0, tslib_1.__awaiter)(_this, void 0, void 0, function () {
var data, redirect;
return (0, tslib_1.__generator)(this, function (_a) {
switch (_a.label) {
case 0:
if (!(action.feedback && (0, helper_1.isVisible)(action.feedback, store.data))) return [3 /*break*/, 2];
return [4 /*yield*/, this.openFeedback(action.feedback, store.data)];
case 1:
_a.sent();
_a.label = 2;
case 2:
data = (0, helper_2.createObject)(ctx, response);
redirect = action.redirect && (0, tpl_1.filter)(action.redirect, store.data);
redirect && env.jumpTo(redirect, action);
action.reload && this.reloadTarget(action.reload, (0, tslib_1.__assign)((0, tslib_1.__assign)({}, store.data), ctx));
return [2 /*return*/];
}
});
}); })
.catch(function () { });
}
else {
return onAction(e, action, ctx, throwErrors, delegate || this.context);
}
};
Page.prototype.handleQuery = function (query) {
this.receive(query);
};
Page.prototype.handleDialogConfirm = function (values, action) {
var args = [];
for (var _i = 2; _i < arguments.length; _i++) {
args[_i - 2] = arguments[_i];
}
var store = this.props.store;
if (action.mergeData && values.length === 1 && values[0]) {
store.updateData(values[0]);
}
var dialog = store.action.dialog;
if (dialog &&
dialog.onConfirm &&
dialog.onConfirm.apply(dialog, (0, tslib_1.__spreadArray)([values, action], args, false)) === false) {
return;
}
store.closeDialog(true);
};
Page.prototype.handleDialogClose = function (confirmed) {
if (confirmed === void 0) { confirmed = false; }
var store = this.props.store;
store.closeDialog(confirmed);
};
Page.prototype.handleDrawerConfirm = function (values, action) {
var args = [];
for (var _i = 2; _i < arguments.length; _i++) {
args[_i - 2] = arguments[_i];
}
var store = this.props.store;
if (action.mergeData && values.length === 1 && values[0]) {
store.updateData(values[0]);
}
var dialog = store.action.dialog;
if (dialog &&
dialog.onConfirm &&
dialog.onConfirm.apply(dialog, (0, tslib_1.__spreadArray)([values, action], args, false)) === false) {
return;
}
store.closeDrawer();
};
Page.prototype.handleDrawerClose = function () {
var store = this.props.store;
store.closeDrawer();
};
Page.prototype.handleClick = function (e) {
var _a;
var target = e.target;
var env = this.props.env;
var link = target.tagName === 'A' && target.hasAttribute('data-link')
? target.getAttribute('data-link')
: (_a = target.closest('a[data-link]')) === null || _a === void 0 ? void 0 : _a.getAttribute('data-link');
if (env && link) {
env.jumpTo(link);
e.preventDefault();
}
};
Page.prototype.handleResizeMouseDown = function (e) {
// todo 可能 ie 不正确
var isRightMB = e.nativeEvent.which == 3;
if (isRightMB) {
return;
}
this.codeWrap = e.currentTarget.parentElement;
document.addEventListener('mousemove', this.handleResizeMouseMove);
document.addEventListener('mouseup', this.handleResizeMouseUp);
this.startX = e.clientX;
this.startWidth = this.codeWrap.offsetWidth;
};
Page.prototype.handleResizeMouseMove = function (e) {
var _a = this.props, _b = _a.asideMinWidth, asideMinWidth = _b === void 0 ? 160 : _b, _c = _a.asideMaxWidth, asideMaxWidth = _c === void 0 ? 350 : _c;
var dx = e.clientX - this.startX;
var mx = this.startWidth + dx;
var width = Math.min(Math.max(mx, asideMinWidth), asideMaxWidth);
this.codeWrap.style.cssText += "width: " + width + "px";
};
Page.prototype.handleResizeMouseUp = function () {
document.removeEventListener('mousemove', this.handleResizeMouseMove);
document.removeEventListener('mouseup', this.handleResizeMouseUp);
};
Page.prototype.openFeedback = function (dialog, ctx) {
var _this = this;
return new Promise(function (resolve) {
var store = _this.props.store;
store.setCurrentAction({
type: 'button',
actionType: 'dialog',
dialog: dialog
});
store.openDialog(ctx, undefined, function (confirmed) {
resolve(confirmed);
});
});
};
Page.prototype.reload = function (subpath, query, ctx, silent) {
if (query) {
return this.receive(query);
}
var _a = this.props, store = _a.store, initApi = _a.initApi;
clearTimeout(this.timer);
(0, api_1.isEffectiveApi)(initApi, store.data) &&
store
.fetchData(initApi, store.data, {
silent: silent
})
.then(this.initInterval);
};
Page.prototype.receive = function (values) {
var store = this.props.store;
store.updateData(values);
this.reload();
};
Page.prototype.silentReload = function (target, query) {
this.reload(query, undefined, undefined, true);
};
Page.prototype.initInterval = function (value) {
var _a = this.props, interval = _a.interval, silentPolling = _a.silentPolling, stopAutoRefreshWhen = _a.stopAutoRefreshWhen, data = _a.data;
interval &&
this.mounted &&
(!stopAutoRefreshWhen || !(0, tpl_1.evalExpression)(stopAutoRefreshWhen, data)) &&
(this.timer = setTimeout(silentPolling ? this.silentReload : this.reload, Math.max(interval, 1000)));
return value;
};
Page.prototype.handleChange = function (value, name, submit, changePristine) {
var _a = this.props, store = _a.store, onChange = _a.onChange;
if (typeof name === 'string' && name) {
store.changeValue(name, value, changePristine);
}
onChange === null || onChange === void 0 ? void 0 : onChange.apply(null, arguments);
};
Page.prototype.handleResizeAfterPin = function () {
// const { width } = JSON.parse(localStorage.getItem('MODAL_AI_TOOL_CONFIG') as string);
var width = 450;
this.pageRightRef.current.style.width = width + "px";
this.pageMainRef.current.style.width = "calc(100% - " + width + "px)";
};
Page.prototype.handleRESET_MAIN_PAGE_WIDTH = function () {
this.pageRightRef.current.style.width = '0%';
this.pageMainRef.current.style.width = '100%';
};
Page.prototype.renderHeader = function () {
var _a = this.props, title = _a.title, subTitle = _a.subTitle, remark = _a.remark, remarkPlacement = _a.remarkPlacement, headerClassName = _a.headerClassName, toolbarClassName = _a.toolbarClassName, toolbar = _a.toolbar, render = _a.render, store = _a.store, initApi = _a.initApi, env = _a.env, cx = _a.classnames, regions = _a.regions, __ = _a.translate;
var subProps = {
onAction: this.handleAction,
onQuery: initApi ? this.handleQuery : undefined
};
var header, right;
if (Array.isArray(regions) ? ~regions.indexOf('header') : title || subTitle) {
header = (react_1.default.createElement("div", { className: cx("Page-header", headerClassName) },
title ? (react_1.default.createElement("h2", { className: cx('Page-title') },
render('title', title, subProps),
remark
? render('remark', {
type: 'remark',
tooltip: remark,
placement: remarkPlacement || 'bottom',
container: env && env.getModalContainer
? env.getModalContainer
: undefined
})
: null)) : null,
subTitle && (react_1.default.createElement("small", { className: cx('Page-subTitle') }, render('subTitle', subTitle, subProps)))));
}
if (Array.isArray(regions) ? ~regions.indexOf('toolbar') : toolbar) {
right = (react_1.default.createElement("div", { className: cx("Page-toolbar", toolbarClassName) }, render('toolbar', toolbar || '', subProps)));
}
if (header && right) {
return (react_1.default.createElement("div", { className: cx('Page-headerRow') },
header,
right));
}
return header || right;
};
Page.prototype.render = function () {
var _a = this.props, className = _a.className, store = _a.store, body = _a.body, bodyClassName = _a.bodyClassName, render = _a.render, aside = _a.aside, asideClassName = _a.asideClassName, cx = _a.classnames, header = _a.header, showErrorMsg = _a.showErrorMsg, initApi = _a.initApi, regions = _a.regions, style = _a.style, data = _a.data, asideResizor = _a.asideResizor, __ = _a.translate;
var subProps = {
onAction: this.handleAction,
onQuery: initApi ? this.handleQuery : undefined,
onChange: this.handleChange,
pageLoading: store.loading,
loading: store.loading
};
var hasAside = Array.isArray(regions)
? ~regions.indexOf('aside')
: aside && (!Array.isArray(aside) || aside.length);
var styleVar = typeof style === 'string'
? (0, tpl_builtin_1.resolveVariable)(style, data) || {}
: (0, mapValues_1.default)(style, function (s) { return (0, tpl_builtin_1.resolveVariable)(s, data) || s; });
return (react_1.default.createElement("div", { className: cx("Page", hasAside ? "Page--withSidebar" : '', className), onClick: this.handleClick, style: styleVar },
hasAside ? (react_1.default.createElement("div", { className: cx("Page-aside", asideResizor ? 'relative' : 'Page-aside--withWidth', asideClassName) }, render('aside', aside || '', (0, tslib_1.__assign)((0, tslib_1.__assign)({}, subProps), (typeof aside === 'string'
? {
inline: false,
className: "Page-asideTplWrapper"
}
: null))))) : null,
react_1.default.createElement("div", { className: cx('Page-content') + " main-page-content " + this.pageContentId },
react_1.default.createElement("div", { className: cx('Page-main'), ref: this.pageMainRef },
this.renderHeader(),
react_1.default.createElement("div", { className: cx("Page-body", bodyClassName) }, (Array.isArray(regions) ? ~regions.indexOf('body') : body)
? render('body', body || '', subProps)
: null)),
react_1.default.createElement("div", { className: cx('Page-right') + " main-page-portal-box", ref: this.pageRightRef })),
this.props.store.dialogOpen ? render('dialog', (0, tslib_1.__assign)((0, tslib_1.__assign)({}, (store.action &&
store.action.dialog)), { type: 'dialog' }), {
key: 'dialog',
data: store.dialogData,
onConfirm: this.handleDialogConfirm,
onClose: this.handleDialogClose,
show: store.dialogOpen,
onAction: this.handleAction,
onQuery: initApi ? this.handleQuery : undefined
}) : null,
this.props.store.drawerOpen ? render('drawer', (0, tslib_1.__assign)((0, tslib_1.__assign)({}, (store.action &&
store.action.drawer)), { type: 'drawer' }), {
key: 'drawer',
data: store.drawerData,
onConfirm: this.handleDrawerConfirm,
onClose: this.handleDrawerClose,
show: store.drawerOpen,
onAction: this.handleAction,
onQuery: initApi ? this.handleQuery : undefined
}) : null));
};
var _a, _b;
Page.defaultProps = {
asideClassName: '',
bodyClassName: '',
headerClassName: '',
initFetch: true,
// primaryField: 'id',
toolbarClassName: '',
messages: {}
};
Page.propsList = [
'title',
'subTitle',
'initApi',
'initFetchOn',
'initFetch',
'headerClassName',
'bodyClassName',
'asideClassName',
'toolbarClassName',
'toolbar',
'body',
'aside',
'messages',
'style',
'showErrorMsg'
];
(0, tslib_1.__decorate)([
helper_1.autobind,
(0, tslib_1.__metadata)("design:type", Function),
(0, tslib_1.__metadata)("design:paramtypes", [typeof (_a = typeof react_1.default !== "undefined" && react_1.default.MouseEvent) === "function" ? _a : Object]),
(0, tslib_1.__metadata)("design:returntype", void 0)
], Page.prototype, "handleResizeMouseDown", null);
(0, tslib_1.__decorate)([
helper_1.autobind,
(0, tslib_1.__metadata)("design:type", Function),
(0, tslib_1.__metadata)("design:paramtypes", [typeof (_b = typeof MouseEvent !== "undefined" && MouseEvent) === "function" ? _b : Object]),
(0, tslib_1.__metadata)("design:returntype", void 0)
], Page.prototype, "handleResizeMouseMove", null);
(0, tslib_1.__decorate)([
helper_1.autobind,
(0, tslib_1.__metadata)("design:type", Function),
(0, tslib_1.__metadata)("design:paramtypes", []),
(0, tslib_1.__metadata)("design:returntype", void 0)
], Page.prototype, "handleResizeMouseUp", null);
(0, tslib_1.__decorate)([
helper_1.autobind,
(0, tslib_1.__metadata)("design:type", Function),
(0, tslib_1.__metadata)("design:paramtypes", []),
(0, tslib_1.__metadata)("design:returntype", void 0)
], Page.prototype, "handleResizeAfterPin", null);
(0, tslib_1.__decorate)([
helper_1.autobind,
(0, tslib_1.__metadata)("design:type", Function),
(0, tslib_1.__metadata)("design:paramtypes", []),
(0, tslib_1.__metadata)("design:returntype", void 0)
], Page.prototype, "handleRESET_MAIN_PAGE_WIDTH", null);
return Page;
}(react_1.default.Component));
exports.default = Page;
var PageRenderer = /** @class */ (function (_super) {
(0, tslib_1.__extends)(PageRenderer, _super);
function PageRenderer(props, context) {
var _this = _super.call(this, props) || this;
var scoped = context;
scoped.registerComponent(_this);
return _this;
}
PageRenderer.prototype.componentWillUnmount = function () {
var scoped = this.context;
scoped.unRegisterComponent(this);
_super.prototype.componentWillUnmount.call(this);
document.body.removeEventListener(types_1.ResizeEvent.STOP_RESIZE_AFTER_PIN + this.pageContentId, this.handleResizeAfterPin);
document.body.removeEventListener(types_1.ResizeEvent.RESET_MAIN_PAGE_WIDTH + this.pageContentId, this.handleRESET_MAIN_PAGE_WIDTH);
};
PageRenderer.prototype.reloadTarget = function (target, data) {
var scoped = this.context;
scoped.reload(target, data);
};
PageRenderer.prototype.handleAction = function (e, action, ctx, throwErrors, delegate, currentName, isItemAction) {
if (throwErrors === void 0) { throwErrors = false; }
var scoped = this.context;
if (action.actionType === 'reload') {
action.target && scoped.reload(action.target, ctx, currentName, isItemAction, delegate);
}
else if (action.target) {
action.target.split(',').forEach(function (name) {
var target = scoped.getComponentByName(name);
target &&
target.doAction &&
target.doAction((0, tslib_1.__assign)((0, tslib_1.__assign)({}, action), { target: undefined }), ctx);
});
}
else {
_super.prototype.handleAction.call(this, e, action, ctx, throwErrors, delegate);
if (action.reload &&
~['url', 'link', 'jump'].indexOf(action.actionType)) {
var scoped_1 = delegate || this.context;
scoped_1.reload(action.reload, ctx);
}
}
};
PageRenderer.prototype.handleDialogConfirm = function (values, action) {
var _a;
var rest = [];
for (var _i = 2; _i < arguments.length; _i++) {
rest[_i - 2] = arguments[_i];
}
_super.prototype.handleDialogConfirm.apply(this, (0, tslib_1.__spreadArray)([values, action], rest, false));
var scoped = this.context;
var store = this.props.store;
var dialogAction = store.action;
var reload = (_a = action.reload) !== null && _a !== void 0 ? _a : dialogAction.reload;
if (reload) {
scoped.reload(reload, store.data);
}
else {
// 没有设置,则自动让页面中 crud 刷新。
scoped
.getComponents()
.filter(function (item) { return item.props.type === 'crud'; })
.forEach(function (item) { return item.reload && item.reload(); });
}
};
PageRenderer.prototype.handleDrawerConfirm = function (values, action) {
var _a;
var rest = [];
for (var _i = 2; _i < arguments.length; _i++) {
rest[_i - 2] = arguments[_i];
}
_super.prototype.handleDrawerConfirm.call(this, values, action);
var scoped = this.context;
var store = this.props.store;
var drawerAction = store.action;
var reload = (_a = action.reload) !== null && _a !== void 0 ? _a : drawerAction.reload;
// 稍等会,等动画结束。
setTimeout(function () {
if (reload) {
scoped.reload(reload, store.data);
}
else {
// 没有设置,则自动让页面中 crud 刷新。
scoped
.getComponents()
.filter(function (item) { return item.props.type === 'crud'; })
.forEach(function (item) { return item.reload && item.reload(); });
}
}, 300);
};
var _c;
PageRenderer.contextType = Scoped_1.ScopedContext;
PageRenderer = (0, tslib_1.__decorate)([
(0, factory_1.Renderer)({
type: 'page',
storeType: service_1.ServiceStore.name,
isolateScope: true
}),
(0, tslib_1.__metadata)("design:paramtypes", [Object, typeof (_c = typeof Scoped_1.IScopedContext !== "undefined" && Scoped_1.IScopedContext) === "function" ? _c : Object])
], PageRenderer);
return PageRenderer;
}(Page));
exports.PageRenderer = PageRenderer;
//# sourceMappingURL=./renderers/Page.js.map