@bdsoft/element 1.1.0
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/README.md +90 -0
- package/global/index.ts +6 -0
- package/global/register-properties.ts +10 -0
- package/index.html +13 -0
- package/index.js +84 -0
- package/package-form/core/components/formCreate.js +274 -0
- package/package-form/core/components/fragment.js +12 -0
- package/package-form/core/factory/context.js +257 -0
- package/package-form/core/factory/creator.js +63 -0
- package/package-form/core/factory/maker.js +17 -0
- package/package-form/core/factory/manager.js +79 -0
- package/package-form/core/factory/node.js +85 -0
- package/package-form/core/factory/parser.js +28 -0
- package/package-form/core/frame/api.js +599 -0
- package/package-form/core/frame/attrs.js +12 -0
- package/package-form/core/frame/dataDriver.js +76 -0
- package/package-form/core/frame/fetch.js +119 -0
- package/package-form/core/frame/formCreate.js +274 -0
- package/package-form/core/frame/index.js +760 -0
- package/package-form/core/frame/provider.js +288 -0
- package/package-form/core/frame/util.js +274 -0
- package/package-form/core/handler/context.js +380 -0
- package/package-form/core/handler/effect.js +122 -0
- package/package-form/core/handler/index.js +111 -0
- package/package-form/core/handler/inject.js +145 -0
- package/package-form/core/handler/input.js +197 -0
- package/package-form/core/handler/lifecycle.js +43 -0
- package/package-form/core/handler/loader.js +373 -0
- package/package-form/core/handler/page.js +46 -0
- package/package-form/core/handler/render.js +29 -0
- package/package-form/core/index.js +12 -0
- package/package-form/core/package.json +15 -0
- package/package-form/core/parser/html.js +17 -0
- package/package-form/core/render/cache.js +47 -0
- package/package-form/core/render/index.js +31 -0
- package/package-form/core/render/render.js +393 -0
- package/package-form/element-form/components/checkbox/package.json +17 -0
- package/package-form/element-form/components/checkbox/src/component.jsx +110 -0
- package/package-form/element-form/components/checkbox/src/index.js +3 -0
- package/package-form/element-form/components/frame/package.json +17 -0
- package/package-form/element-form/components/frame/src/IconCircleClose.vue +14 -0
- package/package-form/element-form/components/frame/src/IconDelete.vue +12 -0
- package/package-form/element-form/components/frame/src/IconDocument.vue +12 -0
- package/package-form/element-form/components/frame/src/IconFolderOpened.vue +12 -0
- package/package-form/element-form/components/frame/src/IconView.vue +12 -0
- package/package-form/element-form/components/frame/src/component.jsx +349 -0
- package/package-form/element-form/components/frame/src/index.js +3 -0
- package/package-form/element-form/components/frame/src/style.css +66 -0
- package/package-form/element-form/components/group/package.json +17 -0
- package/package-form/element-form/components/group/src/component.jsx +314 -0
- package/package-form/element-form/components/group/src/index.js +3 -0
- package/package-form/element-form/components/group/src/style.css +125 -0
- package/package-form/element-form/components/index.js +22 -0
- package/package-form/element-form/components/radio/package.json +17 -0
- package/package-form/element-form/components/radio/src/component.jsx +101 -0
- package/package-form/element-form/components/radio/src/index.js +3 -0
- package/package-form/element-form/components/select/package.json +17 -0
- package/package-form/element-form/components/select/src/component.jsx +52 -0
- package/package-form/element-form/components/select/src/index.js +3 -0
- package/package-form/element-form/components/subform/package.json +14 -0
- package/package-form/element-form/components/subform/src/component.jsx +76 -0
- package/package-form/element-form/components/subform/src/index.js +3 -0
- package/package-form/element-form/components/tree/package.json +17 -0
- package/package-form/element-form/components/tree/src/component.jsx +62 -0
- package/package-form/element-form/components/tree/src/index.js +3 -0
- package/package-form/element-form/components/upload/package.json +17 -0
- package/package-form/element-form/components/upload/src/IconUpload.vue +12 -0
- package/package-form/element-form/components/upload/src/component.jsx +129 -0
- package/package-form/element-form/components/upload/src/index.js +3 -0
- package/package-form/element-form/components/upload/src/style.css +11 -0
- package/package-form/element-form/index.js +8 -0
- package/package-form/element-form/package.json +16 -0
- package/package-form/element-form/src/components/icon/IconWarning.vue +12 -0
- package/package-form/element-form/src/components/index.js +22 -0
- package/package-form/element-form/src/core/alias.js +34 -0
- package/package-form/element-form/src/core/api.js +208 -0
- package/package-form/element-form/src/core/config.js +62 -0
- package/package-form/element-form/src/core/index.js +60 -0
- package/package-form/element-form/src/core/maker.js +76 -0
- package/package-form/element-form/src/core/manager.js +315 -0
- package/package-form/element-form/src/core/provider.js +79 -0
- package/package-form/element-form/src/parsers/datePicker.js +31 -0
- package/package-form/element-form/src/parsers/hidden.js +12 -0
- package/package-form/element-form/src/parsers/index.js +17 -0
- package/package-form/element-form/src/parsers/input.js +21 -0
- package/package-form/element-form/src/parsers/row.js +10 -0
- package/package-form/element-form/src/parsers/select.js +15 -0
- package/package-form/element-form/src/parsers/slider.js +21 -0
- package/package-form/element-form/src/parsers/timePicker.js +17 -0
- package/package-form/element-form/src/style/index.css +52 -0
- package/package.json +17 -0
- package/src/App.vue +28 -0
- package/src/assets/css/element.scss +179 -0
- package/src/assets/css/layout.scss +215 -0
- package/src/assets/css/tailwind.scss +67 -0
- package/src/assets/images/banner.gif +0 -0
- package/src/assets/images/banner.png +0 -0
- package/src/assets/images/bg1.svg +22 -0
- package/src/assets/images/bg2.png +0 -0
- package/src/assets/images/ff.png +0 -0
- package/src/assets/images/home-file1.png +0 -0
- package/src/assets/images/ky.png +0 -0
- package/src/assets/images/menu/add.png +0 -0
- package/src/assets/images/menu/del.png +0 -0
- package/src/assets/images/menu/down.png +0 -0
- package/src/assets/images/menu/dr.png +0 -0
- package/src/assets/images/menu/edit.png +0 -0
- package/src/assets/images/menu/kx.png +0 -0
- package/src/assets/images/menu/mb.png +0 -0
- package/src/assets/images/menu/pz.png +0 -0
- package/src/assets/images/menu/save.png +0 -0
- package/src/assets/images/menu/sj.png +0 -0
- package/src/assets/images/menu/sjk.png +0 -0
- package/src/assets/images/menu/up.png +0 -0
- package/src/assets/images/po-i.png +0 -0
- package/src/assets/images/po1-i1.png +0 -0
- package/src/assets/images/po1-i2.png +0 -0
- package/src/assets/images/po1-i3.png +0 -0
- package/src/assets/images/po1-i4.png +0 -0
- package/src/assets/images/po1-i5.png +0 -0
- package/src/assets/images/po1-i6.png +0 -0
- package/src/assets/images/po1-i7.png +0 -0
- package/src/assets/images/po1-i8.png +0 -0
- package/src/assets/images/po2-i1.png +0 -0
- package/src/assets/images/po2-i2.png +0 -0
- package/src/assets/images/po3-i1.png +0 -0
- package/src/assets/images/po4-i1.png +0 -0
- package/src/assets/images/po5-i1.png +0 -0
- package/src/assets/images/po6-i1.png +0 -0
- package/src/assets/images/po6-i2.png +0 -0
- package/src/assets/images/po7-i1.png +0 -0
- package/src/assets/images/tj1.png +0 -0
- package/src/assets/images/tj2.png +0 -0
- package/src/assets/images/tj3.png +0 -0
- package/src/components/3dcloudwords/index.js +346 -0
- package/src/components/3dcloudwords/index.vue +99 -0
- package/src/components/3dcloudwords/readme.md +66 -0
- package/src/components/badge/index.js +167 -0
- package/src/components/badge/index.scss +166 -0
- package/src/components/badge/index.vue +98 -0
- package/src/components/badge/readme.md +18 -0
- package/src/components/basic/Finish.vue +107 -0
- package/src/components/basic/button.vue +19 -0
- package/src/components/basic/readme.md +7 -0
- package/src/components/button/index.vue +48 -0
- package/src/components/button/readme.md +62 -0
- package/src/components/carousel/index.vue +104 -0
- package/src/components/carousel/readme.md +12 -0
- package/src/components/chartconfig/index.vue +141 -0
- package/src/components/chartconfig/readme.md +25 -0
- package/src/components/contextMenu/hookContxtMenu.js +41 -0
- package/src/components/contextMenu/index.vue +245 -0
- package/src/components/contextMenu/readme.md +55 -0
- package/src/components/contextMenu/useElementBounding.js +40 -0
- package/src/components/countup/countUp.js +196 -0
- package/src/components/countup/index.vue +112 -0
- package/src/components/countup/readme.md +9 -0
- package/src/components/empty/assets/build.png +0 -0
- package/src/components/empty/assets/emptybg.gif +0 -0
- package/src/components/empty/assets/emptybg.png +0 -0
- package/src/components/empty/assets/emptybg2.jpg +0 -0
- package/src/components/empty/assets/emptybg3.jpg +0 -0
- package/src/components/empty/assets/wuxiao.png +0 -0
- package/src/components/empty/assets/wuxiao.webp +0 -0
- package/src/components/empty/building.vue +117 -0
- package/src/components/empty/empty.vue +120 -0
- package/src/components/empty/index.js +12 -0
- package/src/components/empty/invalid.vue +56 -0
- package/src/components/error/Error.vue +79 -0
- package/src/components/error/readme.md +20 -0
- package/src/components/form/Form.vue +84 -0
- package/src/components/form/FormItem.vue +143 -0
- package/src/components/form/data.js +52 -0
- package/src/components/form/readme.md +69 -0
- package/src/components/layout/banner.vue +412 -0
- package/src/components/layout/bar.vue +43 -0
- package/src/components/layout/layout1.vue +60 -0
- package/src/components/layout/layout2.vue +134 -0
- package/src/components/layout/layout3.vue +107 -0
- package/src/components/layout/layout4.vue +66 -0
- package/src/components/layout/nav.vue +333 -0
- package/src/components/layout/readme.md +61 -0
- package/src/components/loading/index.vue +122 -0
- package/src/components/loading/readme.md +6 -0
- package/src/components/notice/NoticeList.vue +198 -0
- package/src/components/notice/NoticeListPaging.vue +281 -0
- package/src/components/notice/NoticeView.vue +92 -0
- package/src/components/notice/readme.md +1 -0
- package/src/components/pagination/index.vue +100 -0
- package/src/components/pagination/readme.md +19 -0
- package/src/components/pagination/scroll-to.js +51 -0
- package/src/components/progress/bar.vue +72 -0
- package/src/components/progress/progress.vue +58 -0
- package/src/components/screenfull/index.js +3 -0
- package/src/components/screenfull/index.vue +65 -0
- package/src/components/screenfull/package.json +15 -0
- package/src/components/screenfull/readme.md +6 -0
- package/src/components/statisticalCount/index.vue +80 -0
- package/src/components/statisticalCount/readme.md +21 -0
- package/src/components/username/index.vue +79 -0
- package/src/components/username/readme.md +22 -0
- package/src/components/username//346/225/210/346/236/234/345/233/276.png +0 -0
- package/src/index.js +82 -0
- package/src/utils/index.js +32 -0
- package/src/xm_components/HeadSearch/hook/hookSearch.js +96 -0
- package/src/xm_components/HeadSearch/index.vue +206 -0
- package/src/xm_components/HeadSearch/readme.md +12 -0
- package/src/xm_components/HeadSearch//346/220/234/347/264/242/345/210/227/350/241/250.png +0 -0
- package/src/xm_components/Milestone/index.vue +212 -0
- package/src/xm_components/Milestone/readme.md +15 -0
- package/src/xm_components/readme.md +1 -0
- package/utils/coms/load.jsx +10 -0
- package/utils/func.js +32 -0
- package/utils/hookDialog.js +38 -0
- package/utils/hookPage.js +49 -0
- package/utils/index.js +5 -0
- package/utils/lib/console.js +39 -0
- package/utils/lib/debounce.js +19 -0
- package/utils/lib/deepextend.js +51 -0
- package/utils/lib/deepset.js +14 -0
- package/utils/lib/extend.js +28 -0
- package/utils/lib/index.js +13 -0
- package/utils/lib/json.js +90 -0
- package/utils/lib/mergeprops.js +62 -0
- package/utils/lib/mitt.js +43 -0
- package/utils/lib/modify.js +8 -0
- package/utils/lib/slot.js +19 -0
- package/utils/lib/toarray.js +5 -0
- package/utils/lib/tocase.js +11 -0
- package/utils/lib/todate.js +10 -0
- package/utils/lib/toline.js +10 -0
- package/utils/lib/tostring.js +7 -0
- package/utils/lib/type.js +45 -0
- package/utils/lib/unique.js +6 -0
- package/utils/message.js +166 -0
- package/utils/package.json +16 -0
- package/utils/type.js +45 -0
- package/vite.config.js +51 -0
|
@@ -0,0 +1,380 @@
|
|
|
1
|
+
import extend from '@bdsoft-element/utils/lib/extend';
|
|
2
|
+
import toCase from '@bdsoft-element/utils/lib/tocase';
|
|
3
|
+
import BaseParser from '../factory/parser';
|
|
4
|
+
import {$del} from '@bdsoft-element/utils/lib/modify';
|
|
5
|
+
import is, {hasProperty} from '@bdsoft-element/utils/lib/type';
|
|
6
|
+
import {condition, deepGet, invoke, convertFieldToConditions} from '../frame/util';
|
|
7
|
+
import {computed, nextTick, toRef, watch} from 'vue';
|
|
8
|
+
import {attrs} from '../frame/attrs';
|
|
9
|
+
import deepSet from '@bdsoft-element/utils/lib/deepset';
|
|
10
|
+
import toArray from '@bdsoft-element/utils/lib/toarray';
|
|
11
|
+
|
|
12
|
+
const noneKey = ['field', 'value', 'vm', 'template', 'name', 'config', 'control', 'inject', 'sync', 'payload', 'optionsTo', 'update', 'slotUpdate', 'computed', 'component', 'cache'];
|
|
13
|
+
const oldValueTag = Symbol('oldValue');
|
|
14
|
+
|
|
15
|
+
export default function useContext(Handler) {
|
|
16
|
+
extend(Handler.prototype, {
|
|
17
|
+
getCtx(id) {
|
|
18
|
+
return this.getFieldCtx(id) || this.getNameCtx(id)[0] || this.ctxs[id];
|
|
19
|
+
},
|
|
20
|
+
getCtxs(id) {
|
|
21
|
+
return this.fieldCtx[id] || this.nameCtx[id] || (this.ctxs[id] ? [this.ctxs[id]] : []);
|
|
22
|
+
},
|
|
23
|
+
setIdCtx(ctx, key, type) {
|
|
24
|
+
const field = `${type}Ctx`;
|
|
25
|
+
if (!this[field][key]) {
|
|
26
|
+
this[field][key] = [ctx];
|
|
27
|
+
} else {
|
|
28
|
+
this[field][key].push(ctx);
|
|
29
|
+
}
|
|
30
|
+
},
|
|
31
|
+
rmIdCtx(ctx, key, type) {
|
|
32
|
+
const field = `${type}Ctx`;
|
|
33
|
+
const lst = this[field][key];
|
|
34
|
+
if (!lst) return false;
|
|
35
|
+
const flag = lst.splice(lst.indexOf(ctx) >>> 0, 1).length > 0;
|
|
36
|
+
if (!lst.length) {
|
|
37
|
+
delete this[field][key];
|
|
38
|
+
}
|
|
39
|
+
return flag;
|
|
40
|
+
},
|
|
41
|
+
getFieldCtx(field) {
|
|
42
|
+
return (this.fieldCtx[field] || [])[0];
|
|
43
|
+
},
|
|
44
|
+
getNameCtx(name) {
|
|
45
|
+
return this.nameCtx[name] || [];
|
|
46
|
+
},
|
|
47
|
+
setCtx(ctx) {
|
|
48
|
+
let {id, field, name, rule} = ctx;
|
|
49
|
+
this.ctxs[id] = ctx;
|
|
50
|
+
name && this.setIdCtx(ctx, name, 'name');
|
|
51
|
+
if (!ctx.input) return;
|
|
52
|
+
this.setIdCtx(ctx, field, 'field');
|
|
53
|
+
this.setFormData(ctx, ctx.parser.toFormValue(rule.value, ctx));
|
|
54
|
+
if (this.isMounted && !this.reloading) {
|
|
55
|
+
this.vm.emit('change', ctx.field, rule.value, ctx.origin, this.api);
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
getParser(ctx) {
|
|
59
|
+
const list = this.fc.parsers;
|
|
60
|
+
const renderDriver = this.fc.renderDriver;
|
|
61
|
+
if (renderDriver) {
|
|
62
|
+
const list = renderDriver.parsers || {};
|
|
63
|
+
const parser = list[ctx.originType] || list[toCase(ctx.type)] || list[ctx.trueType];
|
|
64
|
+
if (parser) {
|
|
65
|
+
return parser;
|
|
66
|
+
}
|
|
67
|
+
}
|
|
68
|
+
return list[ctx.originType] || list[toCase(ctx.type)] || list[ctx.trueType] || BaseParser;
|
|
69
|
+
},
|
|
70
|
+
bindParser(ctx) {
|
|
71
|
+
ctx.setParser(this.getParser(ctx));
|
|
72
|
+
},
|
|
73
|
+
getType(alias) {
|
|
74
|
+
const map = this.fc.CreateNode.aliasMap;
|
|
75
|
+
const type = map[alias] || map[toCase(alias)] || alias;
|
|
76
|
+
return toCase(type);
|
|
77
|
+
},
|
|
78
|
+
noWatch(fn) {
|
|
79
|
+
if (!this.noWatchFn) {
|
|
80
|
+
this.noWatchFn = fn;
|
|
81
|
+
}
|
|
82
|
+
invoke(fn);
|
|
83
|
+
if (this.noWatchFn === fn) {
|
|
84
|
+
this.noWatchFn = null;
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
watchCtx(ctx) {
|
|
88
|
+
const all = attrs();
|
|
89
|
+
all.filter(k => k[0] !== '_' && k[0] !== '$' && noneKey.indexOf(k) === -1).forEach((key) => {
|
|
90
|
+
const ref = toRef(ctx.rule, key);
|
|
91
|
+
const flag = key === 'children';
|
|
92
|
+
ctx.refRule[key] = ref;
|
|
93
|
+
ctx.watch.push(watch(flag ? () => is.Function(ref.value) ? ref.value : [...(ref.value || [])] : () => ref.value, (_, o) => {
|
|
94
|
+
let n = ref.value;
|
|
95
|
+
if (this.isBreakWatch()) return;
|
|
96
|
+
if (flag && ctx.parser.loadChildren === false) {
|
|
97
|
+
this.$render.clearCache(ctx);
|
|
98
|
+
this.nextRefresh();
|
|
99
|
+
return;
|
|
100
|
+
}
|
|
101
|
+
this.watching = true;
|
|
102
|
+
nextTick(() => {
|
|
103
|
+
this.targetHook(ctx, 'watch', {key, oldValue: o, newValue: n});
|
|
104
|
+
});
|
|
105
|
+
if (key === 'hidden' && Boolean(n) !== Boolean(o)) {
|
|
106
|
+
this.$render.clearCacheAll();
|
|
107
|
+
nextTick(() => {
|
|
108
|
+
this.targetHook(ctx, 'hidden', {value: n});
|
|
109
|
+
});
|
|
110
|
+
}
|
|
111
|
+
if ((key === 'ignore' && ctx.input) || (key === 'hidden' && ctx.input && (ctx.rule.ignore === 'hidden' || this.options.ignoreHiddenFields))) {
|
|
112
|
+
this.syncForm();
|
|
113
|
+
} else if (key === 'link') {
|
|
114
|
+
ctx.link();
|
|
115
|
+
return;
|
|
116
|
+
} else if (['props', 'on', 'deep'].indexOf(key) > -1) {
|
|
117
|
+
this.parseInjectEvent(ctx.rule, n || {});
|
|
118
|
+
if (key === 'props' && ctx.input) {
|
|
119
|
+
this.setFormData(ctx, ctx.parser.toFormValue(ctx.rule.value, ctx));
|
|
120
|
+
}
|
|
121
|
+
} else if (key === 'emit') {
|
|
122
|
+
this.parseEmit(ctx);
|
|
123
|
+
} else if (['prefix', 'suffix'].indexOf(key) > -1)
|
|
124
|
+
n && this.loadFn(n, ctx.rule);
|
|
125
|
+
else if (key === 'type') {
|
|
126
|
+
ctx.updateType();
|
|
127
|
+
this.bindParser(ctx);
|
|
128
|
+
} else if (flag) {
|
|
129
|
+
if (is.Function(o)) {
|
|
130
|
+
o = ctx.getPending('children', []);
|
|
131
|
+
}
|
|
132
|
+
if (is.Function(n)) {
|
|
133
|
+
n = ctx.loadChildrenPending();
|
|
134
|
+
}
|
|
135
|
+
this.updateChildren(ctx, n, o);
|
|
136
|
+
}
|
|
137
|
+
this.$render.clearCache(ctx);
|
|
138
|
+
this.refresh();
|
|
139
|
+
this.watching = false;
|
|
140
|
+
}, {deep: !flag, sync: flag}));
|
|
141
|
+
});
|
|
142
|
+
ctx.refRule['__$title'] = computed(() => {
|
|
143
|
+
let title = (typeof ctx.rule.title === 'object' ? ctx.rule.title.title : ctx.rule.title) || '';
|
|
144
|
+
if (title) {
|
|
145
|
+
const match = title.match(/^\{\{\s*\$t\.(.+)\s*\}\}$/);
|
|
146
|
+
if (match) {
|
|
147
|
+
title = this.api.t(match[1]);
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
return title;
|
|
151
|
+
});
|
|
152
|
+
ctx.refRule['__$info'] = computed(() => {
|
|
153
|
+
let info = (typeof ctx.rule.info === 'object' ? ctx.rule.info.info : ctx.rule.info) || '';
|
|
154
|
+
if (info) {
|
|
155
|
+
const match = info.match(/^\{\{\s*\$t\.(.+)\s*\}\}$/);
|
|
156
|
+
if (match) {
|
|
157
|
+
info = this.api.t(match[1]);
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
return info;
|
|
161
|
+
});
|
|
162
|
+
ctx.refRule['__$validate'] = computed(() => {
|
|
163
|
+
return toArray(ctx.rule.validate).map(item => {
|
|
164
|
+
const temp = {...item};
|
|
165
|
+
if (temp.message) {
|
|
166
|
+
const match = temp.message.match(/^\{\{\s*\$t\.(.+)\s*\}\}$/);
|
|
167
|
+
if (match) {
|
|
168
|
+
temp.message = this.api.t(match[1], {title: ctx.refRule.__$title.value});
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
if (is.Function(temp.validator)) {
|
|
172
|
+
const that = ctx;
|
|
173
|
+
temp.validator = function (...args) {
|
|
174
|
+
return item.validator.call({
|
|
175
|
+
that: this,
|
|
176
|
+
id: that.id,
|
|
177
|
+
field: that.field,
|
|
178
|
+
rule: that.rule,
|
|
179
|
+
api: that.$handle.api,
|
|
180
|
+
}, ...args)
|
|
181
|
+
}
|
|
182
|
+
return temp;
|
|
183
|
+
}
|
|
184
|
+
return temp;
|
|
185
|
+
});
|
|
186
|
+
});
|
|
187
|
+
if (ctx.input) {
|
|
188
|
+
const val = toRef(ctx.rule, 'value');
|
|
189
|
+
ctx.watch.push(watch(() => val.value, () => {
|
|
190
|
+
let formValue = ctx.parser.toFormValue(val.value, ctx);
|
|
191
|
+
if (this.isChange(ctx, formValue)) {
|
|
192
|
+
this.setValue(ctx, val.value, formValue, true);
|
|
193
|
+
}
|
|
194
|
+
}));
|
|
195
|
+
}
|
|
196
|
+
this.bus.$once('load-end', () => {
|
|
197
|
+
let computedRule = ctx.rule.computed;
|
|
198
|
+
if (!computedRule) {
|
|
199
|
+
return;
|
|
200
|
+
}
|
|
201
|
+
if (typeof computedRule !== 'object') {
|
|
202
|
+
computedRule = {value: computedRule}
|
|
203
|
+
}
|
|
204
|
+
Object.keys(computedRule).forEach(k => {
|
|
205
|
+
let oldValue = undefined;
|
|
206
|
+
const computedValue = computed(() => {
|
|
207
|
+
const item = computedRule[k];
|
|
208
|
+
if (!item) return undefined;
|
|
209
|
+
const value = this.compute(ctx, item);
|
|
210
|
+
if (item.linkage && value === oldValueTag) {
|
|
211
|
+
return oldValue;
|
|
212
|
+
}
|
|
213
|
+
return value;
|
|
214
|
+
});
|
|
215
|
+
const callback = (n) => {
|
|
216
|
+
if (k === 'value') {
|
|
217
|
+
this.onInput(ctx, n);
|
|
218
|
+
} else if (k[0] === '$') {
|
|
219
|
+
this.api.setEffect(ctx.id, k, n);
|
|
220
|
+
} else {
|
|
221
|
+
deepSet(ctx.rule, k, n);
|
|
222
|
+
}
|
|
223
|
+
};
|
|
224
|
+
if (k === 'value' ? [undefined, null, ''].indexOf(ctx.rule.value) > -1 : computedValue.value !== deepGet(ctx.rule, k)) {
|
|
225
|
+
callback(computedValue.value);
|
|
226
|
+
}
|
|
227
|
+
ctx.watch.push(watch(computedValue, (n) => {
|
|
228
|
+
oldValue = n;
|
|
229
|
+
setTimeout(() => {
|
|
230
|
+
callback(n);
|
|
231
|
+
});
|
|
232
|
+
}));
|
|
233
|
+
});
|
|
234
|
+
|
|
235
|
+
});
|
|
236
|
+
this.watchEffect(ctx);
|
|
237
|
+
},
|
|
238
|
+
compute(ctx, item) {
|
|
239
|
+
let fn;
|
|
240
|
+
if (typeof item === 'object') {
|
|
241
|
+
const group = ctx.getParentGroup();
|
|
242
|
+
const checkCondition = (item) => {
|
|
243
|
+
item = Array.isArray(item) ? {mode: 'AND', group: item} : item;
|
|
244
|
+
if (!is.trueArray(item.group)) {
|
|
245
|
+
return true;
|
|
246
|
+
}
|
|
247
|
+
const or = item.mode === 'OR';
|
|
248
|
+
let valid = true;
|
|
249
|
+
for (let i = 0; i < item.group.length; i++) {
|
|
250
|
+
const one = item.group[i];
|
|
251
|
+
let flag;
|
|
252
|
+
let field = null;
|
|
253
|
+
if (one.variable) {
|
|
254
|
+
field = JSON.stringify(this.fc.getLoadData(one.variable) || '');
|
|
255
|
+
} else if (one.field) {
|
|
256
|
+
field = convertFieldToConditions(one.field || '');
|
|
257
|
+
} else {
|
|
258
|
+
return true;
|
|
259
|
+
}
|
|
260
|
+
let compare = one.compare;
|
|
261
|
+
if(compare) {
|
|
262
|
+
compare = convertFieldToConditions(compare || '');
|
|
263
|
+
}
|
|
264
|
+
if (one.mode) {
|
|
265
|
+
flag = checkCondition(one);
|
|
266
|
+
} else if (!condition[one.condition]) {
|
|
267
|
+
flag = false;
|
|
268
|
+
} else if (is.Function(one.handler)) {
|
|
269
|
+
flag = invoke(() => one.handler(this.api, ctx.rule));
|
|
270
|
+
} else {
|
|
271
|
+
flag = (new Function('$condition', '$val', '$form', '$group', '$rule', `with($form){with(this){with($group){ return $condition['${one.condition}'](${field}, ${compare ? compare : '$val'}); }}}`)).call(this.api.form, condition, one.value, this.api.top.form, group ? (this.subRuleData[group.id] || {}) : {}, ctx.rule);
|
|
272
|
+
}
|
|
273
|
+
if (or && flag) {
|
|
274
|
+
return true;
|
|
275
|
+
}
|
|
276
|
+
if (!or) {
|
|
277
|
+
valid = valid && flag;
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
return or ? false : valid;
|
|
281
|
+
}
|
|
282
|
+
let val = checkCondition(item);
|
|
283
|
+
val = item.invert === true ? !val : val;
|
|
284
|
+
if (item.linkage) {
|
|
285
|
+
return val ? invoke(() => this.computeValue(item.linkage, ctx, group), undefined) : oldValueTag;
|
|
286
|
+
}
|
|
287
|
+
return val;
|
|
288
|
+
} else if (is.Function(item)) {
|
|
289
|
+
fn = () => item(this.api.form, this.api);
|
|
290
|
+
} else {
|
|
291
|
+
const group = ctx.getParentGroup();
|
|
292
|
+
fn = () => this.computeValue(item, ctx, group);
|
|
293
|
+
}
|
|
294
|
+
return invoke(fn, undefined);
|
|
295
|
+
},
|
|
296
|
+
computeValue(str, ctx, group) {
|
|
297
|
+
const that = this;
|
|
298
|
+
const formulas = Object.keys(this.fc.formulas).reduce((obj, k) => {
|
|
299
|
+
obj[k] = function (...args) {
|
|
300
|
+
return that.fc.formulas[k].call({
|
|
301
|
+
that: this,
|
|
302
|
+
rule: ctx.rule,
|
|
303
|
+
api: that.api,
|
|
304
|
+
fc: that.fc
|
|
305
|
+
}, ...args);
|
|
306
|
+
}
|
|
307
|
+
return obj;
|
|
308
|
+
}, {})
|
|
309
|
+
return (new Function('$formulas', '$form', '$group', '$rule', '$api', `with($form){with(this){with($group){with($formulas){ return ${str} }}}}`)).call(this.api.form, formulas, this.api.top.form, group ? (this.subRuleData[group.id] || {}) : {}, ctx.rule, this.api);
|
|
310
|
+
},
|
|
311
|
+
updateChildren(ctx, n, o) {
|
|
312
|
+
this.deferSyncValue(() => {
|
|
313
|
+
o && o.forEach((child) => {
|
|
314
|
+
if ((n || []).indexOf(child) === -1 && child && !is.String(child) && child.__fc__ && child.__fc__.parent === ctx) {
|
|
315
|
+
this.rmCtx(child.__fc__);
|
|
316
|
+
}
|
|
317
|
+
});
|
|
318
|
+
if (is.trueArray(n)) {
|
|
319
|
+
this.loadChildren(n, ctx);
|
|
320
|
+
this.bus.$emit('update', this.api);
|
|
321
|
+
}
|
|
322
|
+
});
|
|
323
|
+
},
|
|
324
|
+
rmSub(sub) {
|
|
325
|
+
is.trueArray(sub) && sub.forEach(r => {
|
|
326
|
+
r && r.__fc__ && this.rmCtx(r.__fc__);
|
|
327
|
+
})
|
|
328
|
+
},
|
|
329
|
+
rmCtx(ctx) {
|
|
330
|
+
if (ctx.deleted) return;
|
|
331
|
+
const {id, field, input, name} = ctx;
|
|
332
|
+
|
|
333
|
+
$del(this.ctxs, id);
|
|
334
|
+
$del(this.formData, id);
|
|
335
|
+
$del(this.subForm, id);
|
|
336
|
+
$del(this.vm.setupState.ctxInject, id);
|
|
337
|
+
const group = ctx.getParentGroup();
|
|
338
|
+
if (group && this.subRuleData[group.id]) {
|
|
339
|
+
$del(this.subRuleData[group.id], field);
|
|
340
|
+
}
|
|
341
|
+
if (ctx.group) {
|
|
342
|
+
$del(this.subRuleData, id);
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
input && this.rmIdCtx(ctx, field, 'field');
|
|
346
|
+
name && this.rmIdCtx(ctx, name, 'name');
|
|
347
|
+
|
|
348
|
+
if (input && !hasProperty(this.fieldCtx, field)) {
|
|
349
|
+
$del(this.form, field);
|
|
350
|
+
}
|
|
351
|
+
|
|
352
|
+
this.deferSyncValue(() => {
|
|
353
|
+
if (!this.reloading) {
|
|
354
|
+
if (ctx.parser.loadChildren !== false) {
|
|
355
|
+
const children = ctx.getPending('children', ctx.rule.children);
|
|
356
|
+
if (is.trueArray(children)) {
|
|
357
|
+
children.forEach(h => h.__fc__ && this.rmCtx(h.__fc__));
|
|
358
|
+
}
|
|
359
|
+
}
|
|
360
|
+
if (ctx.root === this.rules) {
|
|
361
|
+
this.vm.setupState.renderRule();
|
|
362
|
+
}
|
|
363
|
+
}
|
|
364
|
+
}, input);
|
|
365
|
+
|
|
366
|
+
const index = this.sort.indexOf(id);
|
|
367
|
+
if (index > -1) {
|
|
368
|
+
this.sort.splice(index, 1);
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
this.$render.clearCache(ctx);
|
|
372
|
+
ctx.delete();
|
|
373
|
+
this.effect(ctx, 'deleted');
|
|
374
|
+
this.targetHook(ctx, 'deleted');
|
|
375
|
+
input && !this.fieldCtx[field] && this.vm.emit('remove-field', field, ctx.rule, this.api);
|
|
376
|
+
ctx.rule.__ctrl || this.vm.emit('remove-rule', ctx.rule, this.api);
|
|
377
|
+
return ctx;
|
|
378
|
+
},
|
|
379
|
+
})
|
|
380
|
+
}
|
|
@@ -0,0 +1,122 @@
|
|
|
1
|
+
import extend from '@bdsoft-element/utils/lib/extend';
|
|
2
|
+
import is, {hasProperty} from '@bdsoft-element/utils/lib/type';
|
|
3
|
+
import {mergeRule} from '../frame/util';
|
|
4
|
+
import {watch} from 'vue';
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
export default function useEffect(Handler) {
|
|
8
|
+
extend(Handler.prototype, {
|
|
9
|
+
useProvider() {
|
|
10
|
+
const ps = this.fc.providers;
|
|
11
|
+
Object.keys(ps).forEach(k => {
|
|
12
|
+
let prop = ps[k];
|
|
13
|
+
if (is.Function(prop)) {
|
|
14
|
+
prop = prop(this.fc);
|
|
15
|
+
}
|
|
16
|
+
prop._c = getComponent(prop);
|
|
17
|
+
this.onEffect(prop);
|
|
18
|
+
this.providers[k] = prop;
|
|
19
|
+
});
|
|
20
|
+
},
|
|
21
|
+
onEffect(provider) {
|
|
22
|
+
const used = [];
|
|
23
|
+
(provider._c || ['*']).forEach(name => {
|
|
24
|
+
const type = name === '*' ? '*' : this.getType(name);
|
|
25
|
+
if (used.indexOf(type) > -1) return;
|
|
26
|
+
used.push(type);
|
|
27
|
+
this.bus.$on(`p:${provider.name}:${type}:${provider.input ? 1 : 0}`, (event, args) => {
|
|
28
|
+
provider[event] && provider[event](...args);
|
|
29
|
+
});
|
|
30
|
+
});
|
|
31
|
+
provider._used = used;
|
|
32
|
+
},
|
|
33
|
+
watchEffect(ctx) {
|
|
34
|
+
let effect = {
|
|
35
|
+
required: () => {
|
|
36
|
+
return (hasProperty(ctx.rule, '$required') ? ctx.rule['$required'] : ctx.rule?.effect?.required) || false;
|
|
37
|
+
}
|
|
38
|
+
};
|
|
39
|
+
Object.keys(ctx.rule.effect || {}).forEach(k => {
|
|
40
|
+
effect[k] = () => ctx.rule.effect[k];
|
|
41
|
+
})
|
|
42
|
+
Object.keys(ctx.rule).forEach(k => {
|
|
43
|
+
if (k[0] === '$') {
|
|
44
|
+
effect[k.substr(1)] = () => ctx.rule[k];
|
|
45
|
+
}
|
|
46
|
+
})
|
|
47
|
+
Object.keys(effect).forEach(k => {
|
|
48
|
+
ctx.watch.push(watch(effect[k], (n) => {
|
|
49
|
+
this.effect(ctx, 'watch', {[k]: n});
|
|
50
|
+
}, {deep: true}));
|
|
51
|
+
});
|
|
52
|
+
},
|
|
53
|
+
ruleEffect(rule, event, append) {
|
|
54
|
+
this.emitEffect({
|
|
55
|
+
rule,
|
|
56
|
+
input: !!rule.field,
|
|
57
|
+
type: this.getType(rule.type)
|
|
58
|
+
}, event, append);
|
|
59
|
+
},
|
|
60
|
+
effect(ctx, event, custom) {
|
|
61
|
+
this.emitEffect({
|
|
62
|
+
rule: ctx.rule,
|
|
63
|
+
input: ctx.input,
|
|
64
|
+
type: ctx.trueType,
|
|
65
|
+
ctx,
|
|
66
|
+
custom
|
|
67
|
+
}, event);
|
|
68
|
+
},
|
|
69
|
+
getEffect(rule, name) {
|
|
70
|
+
if (hasProperty(rule, '$' + name)) {
|
|
71
|
+
return rule['$' + name];
|
|
72
|
+
}
|
|
73
|
+
if (hasProperty(rule, 'effect') && hasProperty(rule.effect, name))
|
|
74
|
+
return rule.effect[name];
|
|
75
|
+
return undefined;
|
|
76
|
+
},
|
|
77
|
+
emitEffect({ctx, rule, input, type, custom}, event, append) {
|
|
78
|
+
if (!type || ['fcFragment', 'fragment'].indexOf(type) > -1) return;
|
|
79
|
+
const effect = custom ? custom : (Object.keys(rule).reduce((i, k) => {
|
|
80
|
+
if (k[0] === '$') {
|
|
81
|
+
i[k.substr(1)] = rule[k];
|
|
82
|
+
}
|
|
83
|
+
return i;
|
|
84
|
+
}, {...rule.effect || {}}));
|
|
85
|
+
Object.keys(effect).forEach(attr => {
|
|
86
|
+
const p = this.providers[attr];
|
|
87
|
+
if (!p || (p.input && !input)) return;
|
|
88
|
+
let _type;
|
|
89
|
+
if (!p._c) {
|
|
90
|
+
_type = '*';
|
|
91
|
+
} else if (p._used.indexOf(type) > -1) {
|
|
92
|
+
_type = type;
|
|
93
|
+
} else {
|
|
94
|
+
return;
|
|
95
|
+
}
|
|
96
|
+
const data = {value: effect[attr], getValue: () => this.getEffect(rule, attr), ...(append || {})};
|
|
97
|
+
if (ctx) {
|
|
98
|
+
data.getProp = () => ctx.effectData(attr);
|
|
99
|
+
data.clearProp = () => ctx.clearEffectData(attr);
|
|
100
|
+
data.mergeProp = (prop) => mergeRule(data.getProp(), [prop]);
|
|
101
|
+
data.id = ctx.id;
|
|
102
|
+
}
|
|
103
|
+
this.bus.$emit(`p:${attr}:${_type}:${p.input ? 1 : 0}`, event, [data, rule, this.api]);
|
|
104
|
+
});
|
|
105
|
+
}
|
|
106
|
+
});
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
function unique(arr) {
|
|
110
|
+
return arr.filter(function (item, index, arr) {
|
|
111
|
+
return arr.indexOf(item, 0) === index;
|
|
112
|
+
});
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
function getComponent(p) {
|
|
116
|
+
const c = p.components;
|
|
117
|
+
if (Array.isArray(c)) {
|
|
118
|
+
const arr = unique(c.filter(v => v !== '*'));
|
|
119
|
+
return arr.length ? arr : false;
|
|
120
|
+
} else if (is.String(c)) return [c];
|
|
121
|
+
else return false;
|
|
122
|
+
}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import Api from '../frame/api';
|
|
2
|
+
import Render from '../render';
|
|
3
|
+
import extend from '@bdsoft-element/utils/lib/extend';
|
|
4
|
+
import {funcProxy, invoke} from '../frame/util';
|
|
5
|
+
import useInject from './inject';
|
|
6
|
+
import usePage from './page';
|
|
7
|
+
import useRender from './render';
|
|
8
|
+
import useLoader from './loader';
|
|
9
|
+
import useInput from './input';
|
|
10
|
+
import useContext from './context';
|
|
11
|
+
import useLifecycle from './lifecycle';
|
|
12
|
+
import useEffect from './effect';
|
|
13
|
+
import {reactive} from 'vue';
|
|
14
|
+
import is from '@bdsoft-element/utils/lib/type';
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
export default function Handler(fc) {
|
|
18
|
+
funcProxy(this, {
|
|
19
|
+
options() {
|
|
20
|
+
return fc.options.value || {};
|
|
21
|
+
},
|
|
22
|
+
bus() {
|
|
23
|
+
return fc.bus;
|
|
24
|
+
},
|
|
25
|
+
preview() {
|
|
26
|
+
return (fc.vm.props.preview != null ? fc.vm.props.preview : (fc.options.value.preview || false));
|
|
27
|
+
}
|
|
28
|
+
})
|
|
29
|
+
extend(this, {
|
|
30
|
+
fc,
|
|
31
|
+
vm: fc.vm,
|
|
32
|
+
watching: false,
|
|
33
|
+
loading: false,
|
|
34
|
+
reloading: false,
|
|
35
|
+
noWatchFn: null,
|
|
36
|
+
deferSyncFn: null,
|
|
37
|
+
isMounted: false,
|
|
38
|
+
formData: reactive({}),
|
|
39
|
+
subRuleData: reactive({}),
|
|
40
|
+
subForm: {},
|
|
41
|
+
form: reactive({}),
|
|
42
|
+
appendData: {},
|
|
43
|
+
ignoreFields: [],
|
|
44
|
+
providers: {},
|
|
45
|
+
cycleLoad: null,
|
|
46
|
+
loadedId: 1,
|
|
47
|
+
nextTick: null,
|
|
48
|
+
changeStatus: false,
|
|
49
|
+
pageEnd: true,
|
|
50
|
+
nextReload: () => {
|
|
51
|
+
this.lifecycle('reload');
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
|
|
55
|
+
this.initData(fc.rules);
|
|
56
|
+
|
|
57
|
+
this.$manager = new fc.manager(this);
|
|
58
|
+
this.$render = new Render(this);
|
|
59
|
+
this.api = fc.extendApiFn.reduce((api, fn) => {
|
|
60
|
+
const extendApi = invoke(() => fn(api, this));
|
|
61
|
+
if (extendApi && extendApi !== api) {
|
|
62
|
+
extend(api, extendApi);
|
|
63
|
+
}
|
|
64
|
+
return api;
|
|
65
|
+
}, Api(this));
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
extend(Handler.prototype, {
|
|
69
|
+
initData(rules) {
|
|
70
|
+
extend(this, {
|
|
71
|
+
ctxs: {},
|
|
72
|
+
fieldCtx: {},
|
|
73
|
+
nameCtx: {},
|
|
74
|
+
sort: [],
|
|
75
|
+
rules,
|
|
76
|
+
});
|
|
77
|
+
},
|
|
78
|
+
init() {
|
|
79
|
+
this.updateAppendData();
|
|
80
|
+
this.useProvider();
|
|
81
|
+
this.usePage();
|
|
82
|
+
this.loadRule();
|
|
83
|
+
this.$manager.__init();
|
|
84
|
+
this.lifecycle('created');
|
|
85
|
+
},
|
|
86
|
+
updateAppendData() {
|
|
87
|
+
this.appendData = {...(this.options.formData || {}), ...(this.fc.vm.props.modelValue || {}), ...this.appendData};
|
|
88
|
+
},
|
|
89
|
+
isBreakWatch() {
|
|
90
|
+
return this.loading || this.noWatchFn || this.reloading;
|
|
91
|
+
},
|
|
92
|
+
beforeFetch(opt) {
|
|
93
|
+
return new Promise((resolve) => {
|
|
94
|
+
const source = this.options.beforeFetch && invoke(() => this.options.beforeFetch(opt, {api: this.api}));
|
|
95
|
+
if (source && is.Function(source.then)) {
|
|
96
|
+
source.then(resolve);
|
|
97
|
+
} else {
|
|
98
|
+
resolve();
|
|
99
|
+
}
|
|
100
|
+
});
|
|
101
|
+
},
|
|
102
|
+
})
|
|
103
|
+
|
|
104
|
+
useInject(Handler);
|
|
105
|
+
usePage(Handler);
|
|
106
|
+
useRender(Handler);
|
|
107
|
+
useLoader(Handler);
|
|
108
|
+
useInput(Handler);
|
|
109
|
+
useContext(Handler);
|
|
110
|
+
useLifecycle(Handler);
|
|
111
|
+
useEffect(Handler);
|