@luck-design-biz/luckda 1.0.2-2 → 1.0.2-20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/es/components/Builder/index.js +13 -10
- package/es/components/ComplexItem/index.js +5 -3
- package/es/components/ComplexItem/service.js +6 -3
- package/es/components/LDActions/index.js +1 -0
- package/es/components/LdAutoForm/index.js +5 -4
- package/es/components/LdCard/index.js +10 -8
- package/es/components/LdCom/index.js +3 -2
- package/es/components/LdFormList/index.js +10 -7
- package/es/components/LdGrid/index.js +11 -12
- package/es/components/LdGridForm/index.js +5 -4
- package/es/helper/FromItems.js +64 -5
- package/es/helper/action.js +2 -0
- package/es/helper/ldBuilder.js +5 -4
- package/es/helper/ldComBuild.js +16 -11
- package/es/locales/zh-CN.js +61 -6
- package/es/lowcode/constants/api-url.js +359 -190
- package/es/lowcode/constants/event-topics.js +4 -0
- package/es/lowcode/constants/index.js +5 -4
- package/es/lowcode/engine/meta/box.props.default.json +1 -1
- package/es/lowcode/engine/meta/box.props.json +1 -1
- package/es/lowcode/engine/meta/cardlist.props.json +3 -5
- package/es/lowcode/engine/meta/components-list.json +6 -0
- package/es/lowcode/engine/meta/dialog.props.default.json +4 -1
- package/es/lowcode/engine/meta/dialog.props.json +24 -4
- package/es/lowcode/engine/meta/drawer.props.json +1 -1
- package/es/lowcode/engine/meta/fielddate.props.default.json +1 -0
- package/es/lowcode/engine/meta/fielddate.props.json +48 -1
- package/es/lowcode/engine/meta/fieldeditor.props.json +0 -1
- package/es/lowcode/engine/meta/fieldgroup.props.json +0 -1
- package/es/lowcode/engine/meta/fieldyear.props.json +0 -1
- package/es/lowcode/engine/meta/form.props.json +3 -19
- package/es/lowcode/engine/meta/grouptree.props.json +0 -1
- package/es/lowcode/engine/meta/js-editor/auto-complete.json +5 -0
- package/es/lowcode/engine/meta/jsx.props.default.json +1 -2
- package/es/lowcode/engine/meta/jsx.props.json +4 -3
- package/es/lowcode/engine/meta/layout.props.default.json +1 -1
- package/es/lowcode/engine/meta/layout.props.json +1 -1
- package/es/lowcode/engine/meta/proxy.props.default.json +15 -0
- package/es/lowcode/engine/meta/proxy.props.json +66 -0
- package/es/lowcode/engine/meta/section.props.json +2 -2
- package/es/lowcode/engine/meta/table.props.json +0 -7
- package/es/lowcode/engine/meta/tabs.props.json +1 -1
- package/es/lowcode/engine/meta/tree.props.json +1 -5
- package/es/lowcode/engine/provider/ContextProvider/index.js +45 -9
- package/es/lowcode/engine/provider/ContextProvider/router.js +21 -1
- package/es/lowcode/engine/provider/ContextProvider/usePageDataStore.js +36 -30
- package/es/lowcode/engine/provider/ContextProvider/usePageVar.js +11 -5
- package/es/lowcode/engine/provider/ContextProvider/useTodo.js +2 -4
- package/es/lowcode/engine/provider/EventBusProvider.js +14 -4
- package/es/lowcode/engine/provider/PageProxyProvider.js +95 -0
- package/es/lowcode/engine/provider/RemoteSourceProvider.js +10 -12
- package/es/lowcode/engine/tools/helper.js +25 -1
- package/es/lowcode/engine/tools/initDS.js +4 -4
- package/es/lowcode/painter/Design.js +1 -0
- package/es/lowcode/painter/DesignOperator.js +135 -27
- package/es/lowcode/painter/DesignToolbar.js +102 -188
- package/es/lowcode/painter/History.js +300 -0
- package/es/lowcode/painter/Panel.js +1 -1
- package/es/lowcode/painter/Ribbon.js +37 -1
- package/es/lowcode/painter/components/AdvancePanel.js +55 -51
- package/es/lowcode/painter/components/DragDrop/DragDropContext.js +10 -3
- package/es/lowcode/painter/components/TipIcon.js +12 -4
- package/es/lowcode/painter/components/TreeEditor.js +76 -8
- package/es/lowcode/painter/components/code-editor/BaseEditor.js +10 -6
- package/es/lowcode/painter/components/code-editor/DiffEditor.js +41 -0
- package/es/lowcode/painter/components/field-setting/FieldAttrs.js +2 -2
- package/es/lowcode/painter/components/field-setting/SettingUI.js +56 -5
- package/es/lowcode/painter/components/field-setting/index.js +24 -1
- package/es/lowcode/painter/components/shortcut-modal/KeyIcon.js +11 -0
- package/es/lowcode/painter/components/shortcut-modal/index.js +208 -0
- package/es/lowcode/painter/panel-section/BlockEditor/index.js +10 -19
- package/es/lowcode/painter/panel-section/BlocksEditor/index.js +4 -1
- package/es/lowcode/painter/panel-section/ConditionCheck.js +70 -0
- package/es/lowcode/painter/panel-section/DataSetSelector.js +6 -3
- package/es/lowcode/painter/panel-section/DialogSize.js +76 -0
- package/es/lowcode/painter/panel-section/DialogWidthHeight.js +60 -0
- package/es/lowcode/painter/panel-section/FieldsSetting.js +1 -1
- package/es/lowcode/painter/panel-section/IconConditionSelector.js +2 -2
- package/es/lowcode/painter/panel-section/JSEditor/ToolBar.js +174 -0
- package/es/lowcode/painter/panel-section/JSEditor/index.js +181 -0
- package/es/lowcode/painter/panel-section/JSEditor/index.less +4 -0
- package/es/lowcode/painter/panel-section/PageLayoutDisplay.js +7 -2
- package/es/lowcode/painter/panel-section/ProxyLinker.js +137 -0
- package/es/lowcode/painter/panel-section/ProxyParams.js +28 -0
- package/es/lowcode/painter/panel-section/ProxyParamsSetter.js +240 -0
- package/es/lowcode/painter/panel-section/StylePanel/MainPanel.js +37 -26
- package/es/lowcode/painter/style/action-bind-modal.less +1 -1
- package/es/lowcode/painter/style/components.less +1 -1
- package/es/lowcode/painter/style/history.less +46 -0
- package/es/lowcode/painter/style/outline.less +1 -1
- package/es/lowcode/painter/style/panel-item.less +1 -0
- package/es/lowcode/preview/DebugTool.js +78 -0
- package/es/lowcode/preview/DebugToolDetail.js +103 -0
- package/es/lowcode/preview/index.js +10 -17
- package/es/lowcode/preview/useDebugSettings.js +62 -0
- package/es/lowcode/view/Canvas.js +5 -1
- package/es/lowcode/view/ErrorBoundary.js +80 -0
- package/es/lowcode/view/Page.js +11 -6
- package/es/lowcode/view/lc-components/Box/FunctionDesign.js +4 -2
- package/es/lowcode/view/lc-components/Box/index.less +2 -2
- package/es/lowcode/view/lc-components/Box/meta.json +1 -1
- package/es/lowcode/view/lc-components/CardList/index.js +3 -0
- package/es/lowcode/view/lc-components/CardList/meta.json +3 -5
- package/es/lowcode/view/lc-components/Dialog/index.js +13 -5
- package/es/lowcode/view/lc-components/Dialog/meta.json +24 -4
- package/es/lowcode/view/lc-components/Drawer/index.js +5 -3
- package/es/lowcode/view/lc-components/Drawer/meta.json +1 -1
- package/es/lowcode/view/lc-components/FieldDate/meta.json +48 -1
- package/es/lowcode/view/lc-components/FieldEditor/meta.json +0 -1
- package/es/lowcode/view/lc-components/FieldGroup/meta.json +0 -1
- package/es/lowcode/view/lc-components/FieldYear/meta.json +0 -1
- package/es/lowcode/view/lc-components/Form/index.js +15 -19
- package/es/lowcode/view/lc-components/Form/meta.json +3 -19
- package/es/lowcode/view/lc-components/GroupTree/meta.json +0 -1
- package/es/lowcode/view/lc-components/JSX/RuntimeComp.js +32 -16
- package/es/lowcode/view/lc-components/JSX/meta.json +4 -3
- package/es/lowcode/view/lc-components/Layout/meta.json +1 -1
- package/es/lowcode/view/lc-components/PageLayout/index.js +1 -1
- package/es/lowcode/view/lc-components/Proxy/FunctionDesign.js +17 -0
- package/es/lowcode/view/lc-components/Proxy/FunctionLive.js +23 -0
- package/es/lowcode/view/lc-components/Proxy/FunctionPreview.js +23 -0
- package/es/lowcode/view/lc-components/Proxy/index.js +42 -0
- package/es/lowcode/view/lc-components/Proxy/index.less +5 -0
- package/es/lowcode/view/lc-components/Proxy/meta.json +66 -0
- package/es/lowcode/view/lc-components/Section/meta.json +2 -2
- package/es/lowcode/view/lc-components/Table/components/TopImex.js +16 -13
- package/es/lowcode/view/lc-components/Table/index.js +11 -3
- package/es/lowcode/view/lc-components/Table/meta.json +0 -7
- package/es/lowcode/view/lc-components/Tabs/index.js +6 -2
- package/es/lowcode/view/lc-components/Tabs/meta.json +1 -1
- package/es/lowcode/view/lc-components/Tree/index.js +3 -0
- package/es/lowcode/view/lc-components/Tree/meta.json +1 -5
- package/es/lowcode/view/lc-components/Wrapper.js +9 -1
- package/es/upload/FilesWall/index.js +16 -6
- package/es/upload/Form/gridForm.js +16 -6
- package/es/upload/FormItem/index.js +16 -4
- package/es/utils/action.js +3 -2
- package/es/utils/form.js +4 -3
- package/es/utils/grid.js +10 -2
- package/lib/components/Builder/index.js +13 -10
- package/lib/components/ComplexItem/index.js +5 -3
- package/lib/components/ComplexItem/service.js +6 -3
- package/lib/components/LDActions/index.js +1 -0
- package/lib/components/LdAutoForm/index.js +3 -2
- package/lib/components/LdCard/index.js +10 -8
- package/lib/components/LdCom/index.js +3 -2
- package/lib/components/LdFormList/index.js +9 -6
- package/lib/components/LdGrid/index.js +11 -12
- package/lib/components/LdGridForm/index.js +3 -2
- package/lib/helper/FromItems.js +64 -5
- package/lib/helper/action.js +2 -0
- package/lib/helper/ldBuilder.js +4 -4
- package/lib/helper/ldComBuild.js +14 -9
- package/lib/locales/zh-CN.js +61 -6
- package/lib/lowcode/constants/api-url.js +360 -190
- package/lib/lowcode/constants/event-topics.js +5 -1
- package/lib/lowcode/constants/index.js +6 -5
- package/lib/lowcode/engine/meta/box.props.default.json +1 -1
- package/lib/lowcode/engine/meta/box.props.json +1 -1
- package/lib/lowcode/engine/meta/cardlist.props.json +3 -5
- package/lib/lowcode/engine/meta/components-list.json +6 -0
- package/lib/lowcode/engine/meta/dialog.props.default.json +4 -1
- package/lib/lowcode/engine/meta/dialog.props.json +24 -4
- package/lib/lowcode/engine/meta/drawer.props.json +1 -1
- package/lib/lowcode/engine/meta/fielddate.props.default.json +1 -0
- package/lib/lowcode/engine/meta/fielddate.props.json +48 -1
- package/lib/lowcode/engine/meta/fieldeditor.props.json +0 -1
- package/lib/lowcode/engine/meta/fieldgroup.props.json +0 -1
- package/lib/lowcode/engine/meta/fieldyear.props.json +0 -1
- package/lib/lowcode/engine/meta/form.props.json +3 -19
- package/lib/lowcode/engine/meta/grouptree.props.json +0 -1
- package/lib/lowcode/engine/meta/js-editor/auto-complete.json +5 -0
- package/lib/lowcode/engine/meta/jsx.props.default.json +1 -2
- package/lib/lowcode/engine/meta/jsx.props.json +4 -3
- package/lib/lowcode/engine/meta/layout.props.default.json +1 -1
- package/lib/lowcode/engine/meta/layout.props.json +1 -1
- package/lib/lowcode/engine/meta/proxy.props.default.json +15 -0
- package/lib/lowcode/engine/meta/proxy.props.json +66 -0
- package/lib/lowcode/engine/meta/section.props.json +2 -2
- package/lib/lowcode/engine/meta/table.props.json +0 -7
- package/lib/lowcode/engine/meta/tabs.props.json +1 -1
- package/lib/lowcode/engine/meta/tree.props.json +1 -5
- package/lib/lowcode/engine/provider/ContextProvider/index.js +50 -13
- package/lib/lowcode/engine/provider/ContextProvider/router.js +22 -1
- package/lib/lowcode/engine/provider/ContextProvider/usePageDataStore.js +37 -31
- package/lib/lowcode/engine/provider/ContextProvider/usePageVar.js +10 -4
- package/lib/lowcode/engine/provider/ContextProvider/useTodo.js +1 -3
- package/lib/lowcode/engine/provider/EventBusProvider.js +14 -4
- package/lib/lowcode/engine/provider/PageProxyProvider.js +103 -0
- package/lib/lowcode/engine/provider/RemoteSourceProvider.js +10 -12
- package/lib/lowcode/engine/tools/helper.js +25 -0
- package/lib/lowcode/engine/tools/initDS.js +4 -4
- package/lib/lowcode/painter/Design.js +1 -0
- package/lib/lowcode/painter/DesignOperator.js +132 -24
- package/lib/lowcode/painter/DesignToolbar.js +98 -184
- package/lib/lowcode/painter/History.js +308 -0
- package/lib/lowcode/painter/Panel.js +1 -1
- package/lib/lowcode/painter/Ribbon.js +37 -1
- package/lib/lowcode/painter/components/AdvancePanel.js +53 -49
- package/lib/lowcode/painter/components/DragDrop/DragDropContext.js +10 -3
- package/lib/lowcode/painter/components/TipIcon.js +12 -4
- package/lib/lowcode/painter/components/TreeEditor.js +76 -8
- package/lib/lowcode/painter/components/code-editor/BaseEditor.js +10 -6
- package/lib/lowcode/painter/components/code-editor/DiffEditor.js +49 -0
- package/lib/lowcode/painter/components/field-setting/FieldAttrs.js +2 -2
- package/lib/lowcode/painter/components/field-setting/SettingUI.js +55 -4
- package/lib/lowcode/painter/components/field-setting/index.js +24 -1
- package/lib/lowcode/painter/components/shortcut-modal/KeyIcon.js +18 -0
- package/lib/lowcode/painter/components/shortcut-modal/index.js +215 -0
- package/lib/lowcode/painter/panel-section/BlockEditor/index.js +9 -18
- package/lib/lowcode/painter/panel-section/BlocksEditor/index.js +4 -1
- package/lib/lowcode/painter/panel-section/ConditionCheck.js +78 -0
- package/lib/lowcode/painter/panel-section/DataSetSelector.js +6 -3
- package/lib/lowcode/painter/panel-section/DialogSize.js +83 -0
- package/lib/lowcode/painter/panel-section/DialogWidthHeight.js +67 -0
- package/lib/lowcode/painter/panel-section/FieldsSetting.js +1 -1
- package/lib/lowcode/painter/panel-section/IconConditionSelector.js +2 -2
- package/lib/lowcode/painter/panel-section/JSEditor/ToolBar.js +181 -0
- package/lib/lowcode/painter/panel-section/JSEditor/index.js +189 -0
- package/lib/lowcode/painter/panel-section/JSEditor/index.less +4 -0
- package/lib/lowcode/painter/panel-section/PageLayoutDisplay.js +7 -2
- package/lib/lowcode/painter/panel-section/ProxyLinker.js +145 -0
- package/lib/lowcode/painter/panel-section/ProxyParams.js +35 -0
- package/lib/lowcode/painter/panel-section/ProxyParamsSetter.js +248 -0
- package/lib/lowcode/painter/panel-section/StylePanel/MainPanel.js +37 -26
- package/lib/lowcode/painter/style/action-bind-modal.less +1 -1
- package/lib/lowcode/painter/style/components.less +1 -1
- package/lib/lowcode/painter/style/history.less +46 -0
- package/lib/lowcode/painter/style/outline.less +1 -1
- package/lib/lowcode/painter/style/panel-item.less +1 -0
- package/lib/lowcode/preview/DebugTool.js +86 -0
- package/lib/lowcode/preview/DebugToolDetail.js +111 -0
- package/lib/lowcode/preview/index.js +10 -18
- package/lib/lowcode/preview/useDebugSettings.js +69 -0
- package/lib/lowcode/view/Canvas.js +5 -1
- package/lib/lowcode/view/ErrorBoundary.js +88 -0
- package/lib/lowcode/view/Page.js +12 -7
- package/lib/lowcode/view/lc-components/Box/FunctionDesign.js +4 -2
- package/lib/lowcode/view/lc-components/Box/index.less +2 -2
- package/lib/lowcode/view/lc-components/Box/meta.json +1 -1
- package/lib/lowcode/view/lc-components/CardList/index.js +3 -0
- package/lib/lowcode/view/lc-components/CardList/meta.json +3 -5
- package/lib/lowcode/view/lc-components/Dialog/index.js +11 -3
- package/lib/lowcode/view/lc-components/Dialog/meta.json +24 -4
- package/lib/lowcode/view/lc-components/Drawer/index.js +3 -1
- package/lib/lowcode/view/lc-components/Drawer/meta.json +1 -1
- package/lib/lowcode/view/lc-components/FieldDate/meta.json +48 -1
- package/lib/lowcode/view/lc-components/FieldEditor/meta.json +0 -1
- package/lib/lowcode/view/lc-components/FieldGroup/meta.json +0 -1
- package/lib/lowcode/view/lc-components/FieldYear/meta.json +0 -1
- package/lib/lowcode/view/lc-components/Form/index.js +15 -19
- package/lib/lowcode/view/lc-components/Form/meta.json +3 -19
- package/lib/lowcode/view/lc-components/GroupTree/meta.json +0 -1
- package/lib/lowcode/view/lc-components/JSX/RuntimeComp.js +33 -16
- package/lib/lowcode/view/lc-components/JSX/meta.json +4 -3
- package/lib/lowcode/view/lc-components/Layout/meta.json +1 -1
- package/lib/lowcode/view/lc-components/PageLayout/index.js +1 -1
- package/lib/lowcode/view/lc-components/Proxy/FunctionDesign.js +24 -0
- package/lib/lowcode/view/lc-components/Proxy/FunctionLive.js +30 -0
- package/lib/lowcode/view/lc-components/Proxy/FunctionPreview.js +30 -0
- package/lib/lowcode/view/lc-components/Proxy/index.js +50 -0
- package/lib/lowcode/view/lc-components/Proxy/index.less +5 -0
- package/lib/lowcode/view/lc-components/Proxy/meta.json +66 -0
- package/lib/lowcode/view/lc-components/Section/meta.json +2 -2
- package/lib/lowcode/view/lc-components/Table/components/TopImex.js +16 -13
- package/lib/lowcode/view/lc-components/Table/index.js +11 -3
- package/lib/lowcode/view/lc-components/Table/meta.json +0 -7
- package/lib/lowcode/view/lc-components/Tabs/index.js +5 -1
- package/lib/lowcode/view/lc-components/Tabs/meta.json +1 -1
- package/lib/lowcode/view/lc-components/Tree/index.js +3 -0
- package/lib/lowcode/view/lc-components/Tree/meta.json +1 -5
- package/lib/lowcode/view/lc-components/Wrapper.js +8 -0
- package/lib/upload/FilesWall/index.js +13 -3
- package/lib/upload/Form/gridForm.js +13 -3
- package/lib/upload/FormItem/index.js +15 -3
- package/lib/utils/action.js +6 -0
- package/lib/utils/form.js +3 -2
- package/lib/utils/grid.js +11 -3
- package/package.json +1 -2
- package/es/lowcode/painter/panel-section/JSEditor.js +0 -49
- package/es/lowcode/view/errorBoundary.js +0 -61
- package/lib/lowcode/painter/panel-section/JSEditor.js +0 -57
- package/lib/lowcode/view/errorBoundary.js +0 -69
package/lib/utils/grid.js
CHANGED
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
value: true
|
|
7
7
|
});
|
|
8
8
|
exports.getColumnRender = getColumnRender;
|
|
9
|
-
exports.getGridColumn = void 0;
|
|
9
|
+
exports.getGridColumn = exports.getExportField = void 0;
|
|
10
10
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
|
|
11
11
|
var _objectSpread2 = _interopRequireDefault(require("@babel/runtime/helpers/objectSpread2"));
|
|
12
12
|
var _objectWithoutProperties2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutProperties"));
|
|
@@ -117,6 +117,11 @@ var getAlign = function getAlign(extraData, alignClass) {
|
|
|
117
117
|
return 'left';
|
|
118
118
|
}
|
|
119
119
|
};
|
|
120
|
+
var getExportField = exports.getExportField = function getExportField(name, type, props) {
|
|
121
|
+
var _props$config2;
|
|
122
|
+
if (type === 'number' && (_props$config2 = props.config) !== null && _props$config2 !== void 0 && _props$config2.precision || ['date', 'user', 'select', 'group', 'region', 'upload'].includes(type)) return "".concat(name, "_virtual");
|
|
123
|
+
return;
|
|
124
|
+
};
|
|
120
125
|
var getGridColumn = exports.getGridColumn = function getGridColumn() {
|
|
121
126
|
var _ref = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {},
|
|
122
127
|
comName = _ref.comName,
|
|
@@ -140,6 +145,7 @@ var getGridColumn = exports.getGridColumn = function getGridColumn() {
|
|
|
140
145
|
var _extra = JSON.parse(extra) || {};
|
|
141
146
|
var data = (0, _objectSpread2.default)((0, _objectSpread2.default)({}, _props), {}, {
|
|
142
147
|
field: name,
|
|
148
|
+
exportField: getExportField(name, comName || _form.defaultComName[property], _props),
|
|
143
149
|
title: _props.fieldAliasName || _props.label,
|
|
144
150
|
headerAlign: _props.headerAlign || getAlign(_extra, 'sheading_alignment_virtual'),
|
|
145
151
|
align: _props.align || getAlign(_extra, 'scell_alignment_virtual'),
|
|
@@ -152,8 +158,8 @@ var getGridColumn = exports.getGridColumn = function getGridColumn() {
|
|
|
152
158
|
data.filter = filter;
|
|
153
159
|
data.filterParams = filterParams;
|
|
154
160
|
} else if (!isTreeGrid && !isVirtual) {
|
|
155
|
-
var _props$
|
|
156
|
-
if ((_props.mode || ((_props$
|
|
161
|
+
var _props$config3;
|
|
162
|
+
if ((_props.mode || ((_props$config3 = _props.config) === null || _props$config3 === void 0 ? void 0 : _props$config3.mode)) === 'multiple') {
|
|
157
163
|
data.field = "".concat(name, "_virtual");
|
|
158
164
|
data.filter = 'text';
|
|
159
165
|
return data;
|
|
@@ -204,6 +210,7 @@ var getGridColumn = exports.getGridColumn = function getGridColumn() {
|
|
|
204
210
|
break;
|
|
205
211
|
case 'select':
|
|
206
212
|
case 'radio':
|
|
213
|
+
case 'dict':
|
|
207
214
|
data.filter = 'select';
|
|
208
215
|
if (_props.alias) {
|
|
209
216
|
data.filterParams = {
|
|
@@ -277,6 +284,7 @@ var getGridColumn = exports.getGridColumn = function getGridColumn() {
|
|
|
277
284
|
case 'select':
|
|
278
285
|
case 'group':
|
|
279
286
|
case 'complex':
|
|
287
|
+
case 'dict':
|
|
280
288
|
if (translateProps.multiple) {
|
|
281
289
|
formItemProps = {
|
|
282
290
|
dataFormat: function dataFormat(value) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@luck-design-biz/luckda",
|
|
3
|
-
"version": "1.0.2-
|
|
3
|
+
"version": "1.0.2-20",
|
|
4
4
|
"description": "前端配置管理中心业务组件库",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"start": "cross-env NODE_OPTIONS=--max-old-space-size=10240 USER_RUNTIME=SITE RUNTIME=dev umi dev",
|
|
@@ -108,7 +108,6 @@
|
|
|
108
108
|
"cross-var": "^1.1.0",
|
|
109
109
|
"d3-selection": "^1.4.2",
|
|
110
110
|
"dry-dry": "^0.4.0",
|
|
111
|
-
"enzyme": "^3.11.0",
|
|
112
111
|
"eslint": "^7.32.0",
|
|
113
112
|
"eslint-plugin-babel": "^5.3.1",
|
|
114
113
|
"eslint-plugin-react": "^7.31.10",
|
|
@@ -1,49 +0,0 @@
|
|
|
1
|
-
import React, { useRef } from 'react';
|
|
2
|
-
import { useMemoizedFn } from 'ahooks';
|
|
3
|
-
import { Button } from 'luck-design/antd';
|
|
4
|
-
import { debounce } from 'lodash';
|
|
5
|
-
import { formatMessage } from '@luck-design-biz/base/utils';
|
|
6
|
-
import PopConfirm from "../components/PopConfirm";
|
|
7
|
-
import FullScreenEditor from "../components/code-editor/FullScreenEditor";
|
|
8
|
-
import JSEditor from "../components/code-editor/JSEditor";
|
|
9
|
-
var _JSEditor = function _JSEditor(_ref) {
|
|
10
|
-
var defaultValue = _ref.defaultValue,
|
|
11
|
-
defaultCode = _ref.defaultCode,
|
|
12
|
-
onChange = _ref.onChange,
|
|
13
|
-
mustConfirm = _ref.mustConfirm,
|
|
14
|
-
children = _ref.children;
|
|
15
|
-
var editorRef = useRef();
|
|
16
|
-
var handleCodeChange = useRef(debounce(function (code) {
|
|
17
|
-
if (!mustConfirm) onChange(code);
|
|
18
|
-
}, 400));
|
|
19
|
-
var handleConfirm = useMemoizedFn(function () {
|
|
20
|
-
onChange(editorRef.current.editor.getValue());
|
|
21
|
-
});
|
|
22
|
-
var handleEditorLoad = useMemoizedFn(function () {
|
|
23
|
-
editorRef.current.editor.setValue(defaultValue || defaultCode);
|
|
24
|
-
});
|
|
25
|
-
return /*#__PURE__*/React.createElement(PopConfirm, {
|
|
26
|
-
placement: "left",
|
|
27
|
-
title: /*#__PURE__*/React.createElement(FullScreenEditor, {
|
|
28
|
-
ref: editorRef,
|
|
29
|
-
EditorComponent: JSEditor,
|
|
30
|
-
width: "600px",
|
|
31
|
-
height: "400px",
|
|
32
|
-
onChange: handleCodeChange.current,
|
|
33
|
-
onLoad: handleEditorLoad
|
|
34
|
-
}),
|
|
35
|
-
showBtn: mustConfirm,
|
|
36
|
-
onConfirm: handleConfirm
|
|
37
|
-
}, children !== null && children !== void 0 ? children : /*#__PURE__*/React.createElement("div", {
|
|
38
|
-
style: {
|
|
39
|
-
padding: '0 16px'
|
|
40
|
-
}
|
|
41
|
-
}, /*#__PURE__*/React.createElement(Button, {
|
|
42
|
-
block: true,
|
|
43
|
-
size: "small"
|
|
44
|
-
}, formatMessage({
|
|
45
|
-
id: 'luckda.lowcode.painter.panel-section.style-panel.sourceedit',
|
|
46
|
-
label: '源码编辑'
|
|
47
|
-
}))));
|
|
48
|
-
};
|
|
49
|
-
export default _JSEditor;
|
|
@@ -1,61 +0,0 @@
|
|
|
1
|
-
import _classCallCheck from "@babel/runtime/helpers/esm/classCallCheck";
|
|
2
|
-
import _createClass from "@babel/runtime/helpers/esm/createClass";
|
|
3
|
-
import _inherits from "@babel/runtime/helpers/esm/inherits";
|
|
4
|
-
import _createSuper from "@babel/runtime/helpers/esm/createSuper";
|
|
5
|
-
import React, { Component } from 'react';
|
|
6
|
-
var ErrorBoundary = /*#__PURE__*/function (_Component) {
|
|
7
|
-
_inherits(ErrorBoundary, _Component);
|
|
8
|
-
var _super = _createSuper(ErrorBoundary);
|
|
9
|
-
function ErrorBoundary(props) {
|
|
10
|
-
var _this;
|
|
11
|
-
_classCallCheck(this, ErrorBoundary);
|
|
12
|
-
_this = _super.call(this, props);
|
|
13
|
-
_this.state = {
|
|
14
|
-
hasError: false,
|
|
15
|
-
error: '',
|
|
16
|
-
errorInfo: ''
|
|
17
|
-
};
|
|
18
|
-
return _this;
|
|
19
|
-
}
|
|
20
|
-
_createClass(ErrorBoundary, [{
|
|
21
|
-
key: "componentDidCatch",
|
|
22
|
-
value: function componentDidCatch(error, errorInfo) {
|
|
23
|
-
// 在此处记录错误信息
|
|
24
|
-
console.error(error);
|
|
25
|
-
this.props.onClear && this.props.onClear();
|
|
26
|
-
this.setState({
|
|
27
|
-
hasError: true,
|
|
28
|
-
error: error,
|
|
29
|
-
errorInfo: errorInfo === null || errorInfo === void 0 ? void 0 : errorInfo.componentStack
|
|
30
|
-
});
|
|
31
|
-
}
|
|
32
|
-
}, {
|
|
33
|
-
key: "render",
|
|
34
|
-
value: function render() {
|
|
35
|
-
if (this.state.hasError) {
|
|
36
|
-
// 如果有错误,显示备用 UI
|
|
37
|
-
return /*#__PURE__*/React.createElement(React.Fragment, null, /*#__PURE__*/React.createElement("h3", {
|
|
38
|
-
style: {
|
|
39
|
-
whiteSpace: 'pre-line',
|
|
40
|
-
color: 'var(--luck-color-danger)',
|
|
41
|
-
fontSize: '1.5rem'
|
|
42
|
-
},
|
|
43
|
-
dangerouslySetInnerHTML: {
|
|
44
|
-
__html: this.state.error
|
|
45
|
-
}
|
|
46
|
-
}), /*#__PURE__*/React.createElement("p", {
|
|
47
|
-
style: {
|
|
48
|
-
whiteSpace: 'pre-line',
|
|
49
|
-
color: 'var(--luck-color-danger)'
|
|
50
|
-
},
|
|
51
|
-
dangerouslySetInnerHTML: {
|
|
52
|
-
__html: this.state.errorInfo
|
|
53
|
-
}
|
|
54
|
-
}));
|
|
55
|
-
}
|
|
56
|
-
return this.props.children;
|
|
57
|
-
}
|
|
58
|
-
}]);
|
|
59
|
-
return ErrorBoundary;
|
|
60
|
-
}(Component);
|
|
61
|
-
export default ErrorBoundary;
|
|
@@ -1,57 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
4
|
-
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
5
|
-
Object.defineProperty(exports, "__esModule", {
|
|
6
|
-
value: true
|
|
7
|
-
});
|
|
8
|
-
exports.default = void 0;
|
|
9
|
-
var _react = _interopRequireWildcard(require("react"));
|
|
10
|
-
var _ahooks = require("ahooks");
|
|
11
|
-
var _antd = require("luck-design/antd");
|
|
12
|
-
var _lodash = require("lodash");
|
|
13
|
-
var _utils = require("@luck-design-biz/base/utils");
|
|
14
|
-
var _PopConfirm = _interopRequireDefault(require("../components/PopConfirm"));
|
|
15
|
-
var _FullScreenEditor = _interopRequireDefault(require("../components/code-editor/FullScreenEditor"));
|
|
16
|
-
var _JSEditor2 = _interopRequireDefault(require("../components/code-editor/JSEditor"));
|
|
17
|
-
var _JSEditor = function _JSEditor(_ref) {
|
|
18
|
-
var defaultValue = _ref.defaultValue,
|
|
19
|
-
defaultCode = _ref.defaultCode,
|
|
20
|
-
onChange = _ref.onChange,
|
|
21
|
-
mustConfirm = _ref.mustConfirm,
|
|
22
|
-
children = _ref.children;
|
|
23
|
-
var editorRef = (0, _react.useRef)();
|
|
24
|
-
var handleCodeChange = (0, _react.useRef)((0, _lodash.debounce)(function (code) {
|
|
25
|
-
if (!mustConfirm) onChange(code);
|
|
26
|
-
}, 400));
|
|
27
|
-
var handleConfirm = (0, _ahooks.useMemoizedFn)(function () {
|
|
28
|
-
onChange(editorRef.current.editor.getValue());
|
|
29
|
-
});
|
|
30
|
-
var handleEditorLoad = (0, _ahooks.useMemoizedFn)(function () {
|
|
31
|
-
editorRef.current.editor.setValue(defaultValue || defaultCode);
|
|
32
|
-
});
|
|
33
|
-
return /*#__PURE__*/_react.default.createElement(_PopConfirm.default, {
|
|
34
|
-
placement: "left",
|
|
35
|
-
title: /*#__PURE__*/_react.default.createElement(_FullScreenEditor.default, {
|
|
36
|
-
ref: editorRef,
|
|
37
|
-
EditorComponent: _JSEditor2.default,
|
|
38
|
-
width: "600px",
|
|
39
|
-
height: "400px",
|
|
40
|
-
onChange: handleCodeChange.current,
|
|
41
|
-
onLoad: handleEditorLoad
|
|
42
|
-
}),
|
|
43
|
-
showBtn: mustConfirm,
|
|
44
|
-
onConfirm: handleConfirm
|
|
45
|
-
}, children !== null && children !== void 0 ? children : /*#__PURE__*/_react.default.createElement("div", {
|
|
46
|
-
style: {
|
|
47
|
-
padding: '0 16px'
|
|
48
|
-
}
|
|
49
|
-
}, /*#__PURE__*/_react.default.createElement(_antd.Button, {
|
|
50
|
-
block: true,
|
|
51
|
-
size: "small"
|
|
52
|
-
}, (0, _utils.formatMessage)({
|
|
53
|
-
id: 'luckda.lowcode.painter.panel-section.style-panel.sourceedit',
|
|
54
|
-
label: '源码编辑'
|
|
55
|
-
}))));
|
|
56
|
-
};
|
|
57
|
-
var _default = exports.default = _JSEditor;
|
|
@@ -1,69 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
|
|
4
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
5
|
-
Object.defineProperty(exports, "__esModule", {
|
|
6
|
-
value: true
|
|
7
|
-
});
|
|
8
|
-
exports.default = void 0;
|
|
9
|
-
var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
|
|
10
|
-
var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
|
|
11
|
-
var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits"));
|
|
12
|
-
var _createSuper2 = _interopRequireDefault(require("@babel/runtime/helpers/createSuper"));
|
|
13
|
-
var _react = _interopRequireWildcard(require("react"));
|
|
14
|
-
var ErrorBoundary = /*#__PURE__*/function (_Component) {
|
|
15
|
-
(0, _inherits2.default)(ErrorBoundary, _Component);
|
|
16
|
-
var _super = (0, _createSuper2.default)(ErrorBoundary);
|
|
17
|
-
function ErrorBoundary(props) {
|
|
18
|
-
var _this;
|
|
19
|
-
(0, _classCallCheck2.default)(this, ErrorBoundary);
|
|
20
|
-
_this = _super.call(this, props);
|
|
21
|
-
_this.state = {
|
|
22
|
-
hasError: false,
|
|
23
|
-
error: '',
|
|
24
|
-
errorInfo: ''
|
|
25
|
-
};
|
|
26
|
-
return _this;
|
|
27
|
-
}
|
|
28
|
-
(0, _createClass2.default)(ErrorBoundary, [{
|
|
29
|
-
key: "componentDidCatch",
|
|
30
|
-
value: function componentDidCatch(error, errorInfo) {
|
|
31
|
-
// 在此处记录错误信息
|
|
32
|
-
console.error(error);
|
|
33
|
-
this.props.onClear && this.props.onClear();
|
|
34
|
-
this.setState({
|
|
35
|
-
hasError: true,
|
|
36
|
-
error: error,
|
|
37
|
-
errorInfo: errorInfo === null || errorInfo === void 0 ? void 0 : errorInfo.componentStack
|
|
38
|
-
});
|
|
39
|
-
}
|
|
40
|
-
}, {
|
|
41
|
-
key: "render",
|
|
42
|
-
value: function render() {
|
|
43
|
-
if (this.state.hasError) {
|
|
44
|
-
// 如果有错误,显示备用 UI
|
|
45
|
-
return /*#__PURE__*/_react.default.createElement(_react.default.Fragment, null, /*#__PURE__*/_react.default.createElement("h3", {
|
|
46
|
-
style: {
|
|
47
|
-
whiteSpace: 'pre-line',
|
|
48
|
-
color: 'var(--luck-color-danger)',
|
|
49
|
-
fontSize: '1.5rem'
|
|
50
|
-
},
|
|
51
|
-
dangerouslySetInnerHTML: {
|
|
52
|
-
__html: this.state.error
|
|
53
|
-
}
|
|
54
|
-
}), /*#__PURE__*/_react.default.createElement("p", {
|
|
55
|
-
style: {
|
|
56
|
-
whiteSpace: 'pre-line',
|
|
57
|
-
color: 'var(--luck-color-danger)'
|
|
58
|
-
},
|
|
59
|
-
dangerouslySetInnerHTML: {
|
|
60
|
-
__html: this.state.errorInfo
|
|
61
|
-
}
|
|
62
|
-
}));
|
|
63
|
-
}
|
|
64
|
-
return this.props.children;
|
|
65
|
-
}
|
|
66
|
-
}]);
|
|
67
|
-
return ErrorBoundary;
|
|
68
|
-
}(_react.Component);
|
|
69
|
-
var _default = exports.default = ErrorBoundary;
|