@ebuilding/biz-comm 2.0.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/LICENSE +0 -0
- package/README.md +0 -0
- package/components/filter/index.d.ts +1 -0
- package/components/filter/src/compare-filter/index.d.ts +44 -0
- package/components/filter/src/default/index.d.ts +41 -0
- package/components/filter/src/index.module.d.ts +8 -0
- package/components/filter/src/public_api.d.ts +3 -0
- package/components/lookup/index.d.ts +1 -0
- package/components/lookup/src/default/index.d.ts +28 -0
- package/components/lookup/src/index.module.d.ts +8 -0
- package/components/lookup/src/public_api.d.ts +2 -0
- package/fesm2022/components.filter.mjs +411 -0
- package/fesm2022/components.filter.mjs.map +1 -0
- package/fesm2022/components.lookup.mjs +161 -0
- package/fesm2022/components.lookup.mjs.map +1 -0
- package/fesm2022/ebuilding-biz-comm.mjs +7 -0
- package/fesm2022/ebuilding-biz-comm.mjs.map +1 -0
- package/fesm2022/other.card.mjs +419 -0
- package/fesm2022/other.card.mjs.map +1 -0
- package/fesm2022/other.control.mjs +176 -0
- package/fesm2022/other.control.mjs.map +1 -0
- package/fesm2022/other.dict.mjs +1181 -0
- package/fesm2022/other.dict.mjs.map +1 -0
- package/fesm2022/other.formula.mjs +558 -0
- package/fesm2022/other.formula.mjs.map +1 -0
- package/fesm2022/other.rule.mjs +735 -0
- package/fesm2022/other.rule.mjs.map +1 -0
- package/fesm2022/other.source.args.mjs +290 -0
- package/fesm2022/other.source.args.mjs.map +1 -0
- package/fesm2022/other.source.field-map.mjs +245 -0
- package/fesm2022/other.source.field-map.mjs.map +1 -0
- package/fesm2022/other.source.filter.mjs +295 -0
- package/fesm2022/other.source.filter.mjs.map +1 -0
- package/fesm2022/other.source.group.mjs +219 -0
- package/fesm2022/other.source.group.mjs.map +1 -0
- package/fesm2022/other.source.mjs +1485 -0
- package/fesm2022/other.source.mjs.map +1 -0
- package/fesm2022/other.source.order.mjs +243 -0
- package/fesm2022/other.source.order.mjs.map +1 -0
- package/fesm2022/other.source.table.mjs +326 -0
- package/fesm2022/other.source.table.mjs.map +1 -0
- package/fesm2022/other.tree.mjs +441 -0
- package/fesm2022/other.tree.mjs.map +1 -0
- package/fesm2022/type.formula.mjs +133 -0
- package/fesm2022/type.formula.mjs.map +1 -0
- package/fesm2022/type.lookup.mjs +256 -0
- package/fesm2022/type.lookup.mjs.map +1 -0
- package/fesm2022/type.mjs +674 -0
- package/fesm2022/type.mjs.map +1 -0
- package/fesm2022/type.tree.mjs +225 -0
- package/fesm2022/type.tree.mjs.map +1 -0
- package/index.d.ts +2 -0
- package/other/card/index.d.ts +1 -0
- package/other/card/src/card-user/index.d.ts +31 -0
- package/other/card/src/card.service.d.ts +28 -0
- package/other/card/src/components/emp/index.d.ts +13 -0
- package/other/card/src/default/index.d.ts +48 -0
- package/other/card/src/index.module.d.ts +9 -0
- package/other/card/src/public_api.d.ts +3 -0
- package/other/control/index.d.ts +1 -0
- package/other/control/src/dict/index.d.ts +26 -0
- package/other/control/src/index.module.d.ts +7 -0
- package/other/control/src/public_api.d.ts +2 -0
- package/other/dict/index.d.ts +1 -0
- package/other/dict/src/field/index.d.ts +45 -0
- package/other/dict/src/field-info/index.d.ts +38 -0
- package/other/dict/src/field-read/index.d.ts +26 -0
- package/other/dict/src/index.module.d.ts +9 -0
- package/other/dict/src/public_api.d.ts +4 -0
- package/other/formula/index.d.ts +1 -0
- package/other/formula/src/default/index.d.ts +33 -0
- package/other/formula/src/form-item/index.d.ts +32 -0
- package/other/formula/src/form-setting/index.d.ts +32 -0
- package/other/formula/src/formula.service.d.ts +20 -0
- package/other/formula/src/index.module.d.ts +10 -0
- package/other/formula/src/public_api.d.ts +5 -0
- package/other/formula/src/rule-event/index.d.ts +23 -0
- package/other/rule/index.d.ts +1 -0
- package/other/rule/src/index.module.d.ts +16 -0
- package/other/rule/src/main/index.component.d.ts +34 -0
- package/other/rule/src/public_api.d.ts +2 -0
- package/other/rule/src/rule-change/index.component.d.ts +9 -0
- package/other/rule/src/rule-change-boolean/index.component.d.ts +13 -0
- package/other/rule/src/rule-change-date/index.component.d.ts +13 -0
- package/other/rule/src/rule-change-item/index.component.d.ts +13 -0
- package/other/rule/src/rule-change-number/index.component.d.ts +13 -0
- package/other/rule/src/rule-change-ref/index.component.d.ts +19 -0
- package/other/rule/src/rule-change-text/index.component.d.ts +13 -0
- package/other/rule/src/rule-change-upload/index.component.d.ts +11 -0
- package/other/rule/src/rule-fixed/index.component.d.ts +13 -0
- package/other/rule/src/service/config.service.d.ts +43 -0
- package/other/rule/src/service/rule.service.d.ts +11 -0
- package/other/source/args/index.d.ts +1 -0
- package/other/source/args/src/basic.d.ts +49 -0
- package/other/source/args/src/default/index.d.ts +24 -0
- package/other/source/args/src/index.module.d.ts +7 -0
- package/other/source/args/src/public_api.d.ts +2 -0
- package/other/source/field-map/index.d.ts +1 -0
- package/other/source/field-map/src/basic.d.ts +39 -0
- package/other/source/field-map/src/default/index.d.ts +26 -0
- package/other/source/field-map/src/index.module.d.ts +7 -0
- package/other/source/field-map/src/public_api.d.ts +2 -0
- package/other/source/filter/index.d.ts +1 -0
- package/other/source/filter/src/basic.d.ts +45 -0
- package/other/source/filter/src/default/index.d.ts +26 -0
- package/other/source/filter/src/index.module.d.ts +8 -0
- package/other/source/filter/src/public_api.d.ts +3 -0
- package/other/source/filter/src/second/index.d.ts +30 -0
- package/other/source/group/index.d.ts +1 -0
- package/other/source/group/src/basic.d.ts +32 -0
- package/other/source/group/src/default/index.d.ts +26 -0
- package/other/source/group/src/index.module.d.ts +7 -0
- package/other/source/group/src/public_api.d.ts +2 -0
- package/other/source/index.d.ts +6 -0
- package/other/source/order/index.d.ts +1 -0
- package/other/source/order/src/basic.d.ts +39 -0
- package/other/source/order/src/default/index.d.ts +26 -0
- package/other/source/order/src/index.module.d.ts +7 -0
- package/other/source/order/src/public_api.d.ts +2 -0
- package/other/source/table/index.d.ts +1 -0
- package/other/source/table/src/basic.d.ts +62 -0
- package/other/source/table/src/default/index.d.ts +26 -0
- package/other/source/table/src/index.module.d.ts +7 -0
- package/other/source/table/src/public_api.d.ts +2 -0
- package/other/tree/index.d.ts +1 -0
- package/other/tree/src/components/form/index.d.ts +17 -0
- package/other/tree/src/components/tree/index.d.ts +19 -0
- package/other/tree/src/default/index.d.ts +18 -0
- package/other/tree/src/index.module.d.ts +9 -0
- package/other/tree/src/public_api.d.ts +4 -0
- package/other/tree/src/treeService.d.ts +59 -0
- package/package.json +96 -0
- package/type/formula/index.d.ts +1 -0
- package/type/formula/src/default/index.d.ts +19 -0
- package/type/formula/src/index.module.d.ts +8 -0
- package/type/formula/src/public_api.d.ts +2 -0
- package/type/index.d.ts +1 -0
- package/type/index.module.d.ts +11 -0
- package/type/lookup/index.d.ts +1 -0
- package/type/lookup/src/default/index.d.ts +31 -0
- package/type/lookup/src/index.module.d.ts +8 -0
- package/type/lookup/src/public_api.d.ts +2 -0
- package/type/tree/index.d.ts +1 -0
- package/type/tree/src/default/index.d.ts +31 -0
- package/type/tree/src/index.module.d.ts +8 -0
- package/type/tree/src/public_api.d.ts +2 -0
|
@@ -0,0 +1,219 @@
|
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { EventEmitter, Output, Input, Directive, Component, NgModule } from '@angular/core';
|
|
3
|
+
import * as i4 from '@angular/common';
|
|
4
|
+
import { CommonModule } from '@angular/common';
|
|
5
|
+
import * as i5 from '@angular/forms';
|
|
6
|
+
import { FormGroup, FormsModule, ReactiveFormsModule } from '@angular/forms';
|
|
7
|
+
import * as i6 from '@kre-form/core';
|
|
8
|
+
import { FormlyModule } from '@kre-form/core';
|
|
9
|
+
import * as i7 from 'ng-zorro-antd/spin';
|
|
10
|
+
import { NzSpinModule } from 'ng-zorro-antd/spin';
|
|
11
|
+
import * as i8 from 'ng-zorro-antd/empty';
|
|
12
|
+
import { NzEmptyModule } from 'ng-zorro-antd/empty';
|
|
13
|
+
import * as i9 from 'ng-zorro-antd/button';
|
|
14
|
+
import { NzButtonModule } from 'ng-zorro-antd/button';
|
|
15
|
+
import { ModuleAPI } from '@ebuilding/base/shared.var/shared.constant';
|
|
16
|
+
import { zip } from 'rxjs';
|
|
17
|
+
import * as i1 from '@delon/theme';
|
|
18
|
+
import * as i2 from 'ng-zorro-antd/message';
|
|
19
|
+
import * as i3 from '@ebuilding/base/components/drawer';
|
|
20
|
+
import * as i10 from 'ng-zorro-antd/core/transition-patch';
|
|
21
|
+
import * as i11 from 'ng-zorro-antd/core/wave';
|
|
22
|
+
|
|
23
|
+
class BasicService {
|
|
24
|
+
http;
|
|
25
|
+
msgSrv;
|
|
26
|
+
_config = null;
|
|
27
|
+
loading = false;
|
|
28
|
+
form = new FormGroup({});
|
|
29
|
+
model = {};
|
|
30
|
+
options = {};
|
|
31
|
+
fields = [];
|
|
32
|
+
tableFieldData = [];
|
|
33
|
+
set config(value) {
|
|
34
|
+
this._config = value;
|
|
35
|
+
this.getPageData();
|
|
36
|
+
}
|
|
37
|
+
get config() {
|
|
38
|
+
return this._config;
|
|
39
|
+
}
|
|
40
|
+
btnCloseEvent = new EventEmitter();
|
|
41
|
+
btnSaveEvent = new EventEmitter();
|
|
42
|
+
constructor(http, msgSrv) {
|
|
43
|
+
this.http = http;
|
|
44
|
+
this.msgSrv = msgSrv;
|
|
45
|
+
}
|
|
46
|
+
getPageData() {
|
|
47
|
+
new Promise((resolve) => {
|
|
48
|
+
zip(this.http.post(`${ModuleAPI.paas}/apaas/table/field/listBySource`, {
|
|
49
|
+
sourceId: this.config.sourceId,
|
|
50
|
+
sourceType: this.config.sourceType
|
|
51
|
+
}), this.http.post(`${ModuleAPI.paas}/apaas/source/group/getDataInfo`, {
|
|
52
|
+
sourceId: this.config.sourceId,
|
|
53
|
+
sourceType: this.config.sourceType
|
|
54
|
+
})).subscribe(([a, b]) => {
|
|
55
|
+
if (a.success && a.result && Array.isArray(a.result)) {
|
|
56
|
+
this.tableFieldData = a.result.map((item) => {
|
|
57
|
+
return {
|
|
58
|
+
value: item.id,
|
|
59
|
+
label: item.tableName + ' - ' + item.name,
|
|
60
|
+
};
|
|
61
|
+
});
|
|
62
|
+
}
|
|
63
|
+
if (b.success && b.result) {
|
|
64
|
+
let arr = [];
|
|
65
|
+
b.result.forEach((item) => {
|
|
66
|
+
arr.push({ fieldId: item?.fieldId });
|
|
67
|
+
});
|
|
68
|
+
this.model['listGroup'] = arr;
|
|
69
|
+
}
|
|
70
|
+
this.getFieldConfig();
|
|
71
|
+
this.loading = false;
|
|
72
|
+
}, () => { }, () => {
|
|
73
|
+
resolve();
|
|
74
|
+
});
|
|
75
|
+
});
|
|
76
|
+
}
|
|
77
|
+
getFieldConfig() {
|
|
78
|
+
let config = [
|
|
79
|
+
{
|
|
80
|
+
type: 'repeat',
|
|
81
|
+
key: 'listGroup',
|
|
82
|
+
props: {},
|
|
83
|
+
fieldArray: {
|
|
84
|
+
fieldGroup: [
|
|
85
|
+
{
|
|
86
|
+
type: 'select',
|
|
87
|
+
key: 'fieldId',
|
|
88
|
+
props: {
|
|
89
|
+
label: '表字段',
|
|
90
|
+
required: true,
|
|
91
|
+
options: this.tableFieldData,
|
|
92
|
+
},
|
|
93
|
+
},
|
|
94
|
+
],
|
|
95
|
+
},
|
|
96
|
+
},
|
|
97
|
+
];
|
|
98
|
+
this.fields = config;
|
|
99
|
+
}
|
|
100
|
+
btnSave() {
|
|
101
|
+
let arr = [];
|
|
102
|
+
if (this.model && this.model.listGroup && Array.isArray(this.model.listGroup)) {
|
|
103
|
+
this.model.listGroup.forEach((item) => {
|
|
104
|
+
if (item?.fieldId) {
|
|
105
|
+
arr.push(item.fieldId);
|
|
106
|
+
}
|
|
107
|
+
});
|
|
108
|
+
}
|
|
109
|
+
this.loading = true;
|
|
110
|
+
this.http.post(`${ModuleAPI.paas}/apaas/source/group/saveData`, {
|
|
111
|
+
sourceId: this.config.sourceId,
|
|
112
|
+
sourceType: this.config.sourceType,
|
|
113
|
+
listField: arr
|
|
114
|
+
}).subscribe((res) => {
|
|
115
|
+
if (res.success) {
|
|
116
|
+
this.msgSrv.success('保存成功!');
|
|
117
|
+
this.btnSaveAfter(this.model);
|
|
118
|
+
}
|
|
119
|
+
this.loading = false;
|
|
120
|
+
}, () => {
|
|
121
|
+
this.loading = false;
|
|
122
|
+
});
|
|
123
|
+
}
|
|
124
|
+
/**
|
|
125
|
+
* 取消-关闭
|
|
126
|
+
*/
|
|
127
|
+
btnClose() {
|
|
128
|
+
this.btnCloseEvent.emit({
|
|
129
|
+
type: "close",
|
|
130
|
+
data: null
|
|
131
|
+
});
|
|
132
|
+
}
|
|
133
|
+
btnSaveAfter(e) {
|
|
134
|
+
this.btnSaveEvent.emit({
|
|
135
|
+
type: "save",
|
|
136
|
+
data: e
|
|
137
|
+
});
|
|
138
|
+
}
|
|
139
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: BasicService, deps: [{ token: i1._HttpClient }, { token: i2.NzMessageService }], target: i0.ɵɵFactoryTarget.Directive });
|
|
140
|
+
static ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.15", type: BasicService, isStandalone: true, inputs: { config: "config" }, outputs: { btnCloseEvent: "btnCloseEvent", btnSaveEvent: "btnSaveEvent" }, ngImport: i0 });
|
|
141
|
+
}
|
|
142
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: BasicService, decorators: [{
|
|
143
|
+
type: Directive
|
|
144
|
+
}], ctorParameters: () => [{ type: i1._HttpClient }, { type: i2.NzMessageService }], propDecorators: { config: [{
|
|
145
|
+
type: Input
|
|
146
|
+
}], btnCloseEvent: [{
|
|
147
|
+
type: Output
|
|
148
|
+
}], btnSaveEvent: [{
|
|
149
|
+
type: Output
|
|
150
|
+
}] } });
|
|
151
|
+
|
|
152
|
+
class SourceGroupMainComponent extends BasicService {
|
|
153
|
+
http;
|
|
154
|
+
msgSrv;
|
|
155
|
+
drawerRef;
|
|
156
|
+
constructor(http, msgSrv, drawerRef) {
|
|
157
|
+
super(http, msgSrv);
|
|
158
|
+
this.http = http;
|
|
159
|
+
this.msgSrv = msgSrv;
|
|
160
|
+
this.drawerRef = drawerRef;
|
|
161
|
+
}
|
|
162
|
+
ngOnInit() { }
|
|
163
|
+
ngOnDestroy() { }
|
|
164
|
+
ngOnChanges(changes) { }
|
|
165
|
+
/**
|
|
166
|
+
* 保存
|
|
167
|
+
* @param e
|
|
168
|
+
*/
|
|
169
|
+
btnSaveAfter(e) {
|
|
170
|
+
this.drawerRef.close({
|
|
171
|
+
type: 'save',
|
|
172
|
+
data: e,
|
|
173
|
+
});
|
|
174
|
+
}
|
|
175
|
+
/**
|
|
176
|
+
* 取消
|
|
177
|
+
*/
|
|
178
|
+
btnClose() {
|
|
179
|
+
this.drawerRef.close({
|
|
180
|
+
type: 'close',
|
|
181
|
+
data: null,
|
|
182
|
+
});
|
|
183
|
+
}
|
|
184
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SourceGroupMainComponent, deps: [{ token: i1._HttpClient }, { token: i2.NzMessageService }, { token: i3.NzDrawerRef }], target: i0.ɵɵFactoryTarget.Component });
|
|
185
|
+
static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.15", type: SourceGroupMainComponent, isStandalone: true, selector: "source-group", usesInheritance: true, usesOnChanges: true, ngImport: i0, template: "<form [formGroup]=\"form\" (ngSubmit)=\"btnSave()\" #defaultForm>\r\n <nz-spin [nzSpinning]=\"loading\" nzTip=\"\u62FC\u547D\u52A0\u8F7D\u4E2D...\" class=\"deon-list-spin\">\r\n <div class=\"deon-from\">\r\n <ng-container *ngIf=\"fields && fields.length > 0; else emptyPage\">\r\n <formly-form [model]=\"model\" [fields]=\"fields\" [options]=\"options\" [form]=\"form\"> </formly-form>\r\n </ng-container>\r\n <ng-template #emptyPage>\r\n <nz-empty *ngIf=\"loading !== true\"></nz-empty>\r\n </ng-template>\r\n </div>\r\n <div class=\"deon-button\">\r\n <button nz-button nzType=\"default\" (click)=\"btnClose()\" type=\"button\"><i nz-icon nzType=\"close\"></i>\u53D6\u6D88</button>\r\n <button nz-button nzType=\"primary\" id=\"SAVE\"><i nz-icon nzType=\"save\"></i>\u4FDD\u5B58</button>\r\n </div>\r\n </nz-spin>\r\n</form>", styles: [":host ::ng-deep{display:flex;flex:1;flex-direction:column;width:100%;height:100%}:host ::ng-deep .deon-from{padding:5px 20px 15px!important}:host ::ng-deep form{flex:1;overflow:auto}:host ::ng-deep form .apiurl .ant-input{max-width:100%!important}:host ::ng-deep form .panel-group .ant-input{max-width:95%!important}:host ::ng-deep form .panel-group .ant-select{max-width:95%!important}\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "directive", type: i4.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i5.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i5.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i5.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "ngmodule", type: FormlyModule }, { kind: "component", type: i6.FormlyForm, selector: "formly-form", inputs: ["form", "model", "fields", "options"], outputs: ["modelChange"] }, { kind: "ngmodule", type: NzSpinModule }, { kind: "component", type: i7.NzSpinComponent, selector: "nz-spin", inputs: ["nzIndicator", "nzSize", "nzTip", "nzDelay", "nzSimple", "nzSpinning"], exportAs: ["nzSpin"] }, { kind: "ngmodule", type: NzEmptyModule }, { kind: "component", type: i8.NzEmptyComponent, selector: "nz-empty", inputs: ["nzNotFoundImage", "nzNotFoundContent", "nzNotFoundFooter"], exportAs: ["nzEmpty"] }, { kind: "ngmodule", type: NzButtonModule }, { kind: "component", type: i9.NzButtonComponent, selector: "button[nz-button], a[nz-button]", inputs: ["nzBlock", "nzGhost", "nzSearch", "nzLoading", "nzDanger", "disabled", "tabIndex", "nzType", "nzShape", "nzSize"], exportAs: ["nzButton"] }, { kind: "directive", type: i10.ɵNzTransitionPatchDirective, selector: "[nz-button], nz-button-group, [nz-icon], nz-icon, [nz-menu-item], [nz-submenu], nz-select-top-control, nz-select-placeholder, nz-input-group", inputs: ["hidden"] }, { kind: "directive", type: i11.NzWaveDirective, selector: "[nz-wave],button[nz-button]:not([nzType=\"link\"]):not([nzType=\"text\"])", inputs: ["nzWaveExtraNode"], exportAs: ["nzWave"] }] });
|
|
186
|
+
}
|
|
187
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SourceGroupMainComponent, decorators: [{
|
|
188
|
+
type: Component,
|
|
189
|
+
args: [{ selector: 'source-group', imports: [
|
|
190
|
+
CommonModule,
|
|
191
|
+
FormsModule,
|
|
192
|
+
ReactiveFormsModule,
|
|
193
|
+
FormlyModule,
|
|
194
|
+
NzSpinModule,
|
|
195
|
+
NzEmptyModule,
|
|
196
|
+
NzButtonModule
|
|
197
|
+
], template: "<form [formGroup]=\"form\" (ngSubmit)=\"btnSave()\" #defaultForm>\r\n <nz-spin [nzSpinning]=\"loading\" nzTip=\"\u62FC\u547D\u52A0\u8F7D\u4E2D...\" class=\"deon-list-spin\">\r\n <div class=\"deon-from\">\r\n <ng-container *ngIf=\"fields && fields.length > 0; else emptyPage\">\r\n <formly-form [model]=\"model\" [fields]=\"fields\" [options]=\"options\" [form]=\"form\"> </formly-form>\r\n </ng-container>\r\n <ng-template #emptyPage>\r\n <nz-empty *ngIf=\"loading !== true\"></nz-empty>\r\n </ng-template>\r\n </div>\r\n <div class=\"deon-button\">\r\n <button nz-button nzType=\"default\" (click)=\"btnClose()\" type=\"button\"><i nz-icon nzType=\"close\"></i>\u53D6\u6D88</button>\r\n <button nz-button nzType=\"primary\" id=\"SAVE\"><i nz-icon nzType=\"save\"></i>\u4FDD\u5B58</button>\r\n </div>\r\n </nz-spin>\r\n</form>", styles: [":host ::ng-deep{display:flex;flex:1;flex-direction:column;width:100%;height:100%}:host ::ng-deep .deon-from{padding:5px 20px 15px!important}:host ::ng-deep form{flex:1;overflow:auto}:host ::ng-deep form .apiurl .ant-input{max-width:100%!important}:host ::ng-deep form .panel-group .ant-input{max-width:95%!important}:host ::ng-deep form .panel-group .ant-select{max-width:95%!important}\n"] }]
|
|
198
|
+
}], ctorParameters: () => [{ type: i1._HttpClient }, { type: i2.NzMessageService }, { type: i3.NzDrawerRef }] });
|
|
199
|
+
|
|
200
|
+
const components = [SourceGroupMainComponent];
|
|
201
|
+
class SourceGroupModule {
|
|
202
|
+
static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SourceGroupModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
203
|
+
static ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.15", ngImport: i0, type: SourceGroupModule, imports: [SourceGroupMainComponent], exports: [SourceGroupMainComponent] });
|
|
204
|
+
static ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SourceGroupModule, imports: [components] });
|
|
205
|
+
}
|
|
206
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SourceGroupModule, decorators: [{
|
|
207
|
+
type: NgModule,
|
|
208
|
+
args: [{
|
|
209
|
+
imports: [...components],
|
|
210
|
+
exports: [...components]
|
|
211
|
+
}]
|
|
212
|
+
}] });
|
|
213
|
+
|
|
214
|
+
/**
|
|
215
|
+
* Generated bundle index. Do not edit.
|
|
216
|
+
*/
|
|
217
|
+
|
|
218
|
+
export { SourceGroupMainComponent, SourceGroupModule };
|
|
219
|
+
//# sourceMappingURL=other.source.group.mjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"other.source.group.mjs","sources":["../../../../packages/biz-comm/other/source/group/src/basic.ts","../../../../packages/biz-comm/other/source/group/src/default/index.ts","../../../../packages/biz-comm/other/source/group/src/default/index.html","../../../../packages/biz-comm/other/source/group/src/index.module.ts","../../../../packages/biz-comm/other/source/group/other.source.group.ts"],"sourcesContent":["\r\nimport { Directive, Input, Output, EventEmitter } from '@angular/core';\r\nimport { FormGroup } from '@angular/forms';\r\nimport { _HttpClient } from '@delon/theme';\r\nimport { FormlyFormOptions, FormlyFieldConfig } from '@kre-form/core';\r\nimport { NzMessageService } from 'ng-zorro-antd/message';\r\nimport { ModuleAPI } from '@ebuilding/base/shared.var/shared.constant';\r\nimport { zip, of } from 'rxjs';\r\n\r\n@Directive()\r\nexport abstract class BasicService {\r\n _config: any = null;\r\n loading: boolean = false;\r\n form = new FormGroup({});\r\n model: any = {};\r\n options: FormlyFormOptions = {};\r\n fields: FormlyFieldConfig[] = [];\r\n tableFieldData: any[] = [];\r\n\r\n @Input()\r\n set config(value: any) {\r\n this._config = value;\r\n this.getPageData();\r\n }\r\n get config() {\r\n return this._config;\r\n }\r\n\r\n @Output() btnCloseEvent: EventEmitter<any> = new EventEmitter();\r\n\r\n @Output() btnSaveEvent: EventEmitter<any> = new EventEmitter();\r\n\r\n constructor(\r\n public http: _HttpClient, public msgSrv: NzMessageService\r\n ) {\r\n\r\n }\r\n\r\n getPageData() {\r\n new Promise((resolve: any) => {\r\n zip(\r\n this.http.post(`${ModuleAPI.paas}/apaas/table/field/listBySource`, {\r\n sourceId: this.config.sourceId,\r\n sourceType: this.config.sourceType\r\n }),\r\n this.http.post(`${ModuleAPI.paas}/apaas/source/group/getDataInfo`, {\r\n sourceId: this.config.sourceId,\r\n sourceType: this.config.sourceType\r\n }),\r\n ).subscribe(\r\n ([a, b]) => {\r\n if (a.success && a.result!! && Array.isArray(a.result)) {\r\n this.tableFieldData = a.result.map((item: any) => {\r\n return {\r\n value: item.id,\r\n label: item.tableName + ' - ' + item.name,\r\n };\r\n });\r\n }\r\n if (b.success && b.result!!) {\r\n let arr: any = [];\r\n b.result.forEach((item: any) => {\r\n arr.push({ fieldId: item?.fieldId });\r\n });\r\n this.model['listGroup'] = arr;\r\n }\r\n\r\n this.getFieldConfig();\r\n this.loading = false;\r\n },\r\n () => { },\r\n () => {\r\n resolve();\r\n },\r\n );\r\n });\r\n }\r\n\r\n getFieldConfig() {\r\n let config: FormlyFieldConfig[] = [\r\n {\r\n type: 'repeat',\r\n key: 'listGroup',\r\n props: {\r\n },\r\n fieldArray: {\r\n fieldGroup: [\r\n {\r\n type: 'select',\r\n key: 'fieldId',\r\n props: {\r\n label: '表字段',\r\n required: true,\r\n options: this.tableFieldData,\r\n },\r\n },\r\n ],\r\n },\r\n },\r\n ];\r\n this.fields = config;\r\n }\r\n\r\n btnSave() {\r\n let arr: any[] = [];\r\n if (this.model!! && this.model.listGroup!! && Array.isArray(this.model.listGroup)) {\r\n this.model.listGroup.forEach((item: any) => {\r\n if (item?.fieldId!!) {\r\n arr.push(item.fieldId);\r\n }\r\n });\r\n }\r\n\r\n this.loading = true;\r\n this.http.post(`${ModuleAPI.paas}/apaas/source/group/saveData`, {\r\n sourceId: this.config.sourceId,\r\n sourceType: this.config.sourceType,\r\n listField: arr\r\n }).subscribe(\r\n (res: any) => {\r\n if (res.success) {\r\n this.msgSrv.success('保存成功!');\r\n this.btnSaveAfter(this.model);\r\n }\r\n this.loading = false;\r\n },\r\n () => {\r\n this.loading = false;\r\n },\r\n );\r\n }\r\n\r\n\r\n /**\r\n * 取消-关闭\r\n */\r\n btnClose() {\r\n this.btnCloseEvent.emit({\r\n type: \"close\",\r\n data: null\r\n });\r\n }\r\n\r\n btnSaveAfter(e: any) {\r\n this.btnSaveEvent.emit({\r\n type: \"save\",\r\n data: e\r\n });\r\n }\r\n\r\n}\r\n","import { Component, SimpleChanges } from '@angular/core';\r\nimport { CommonModule } from \"@angular/common\";\r\nimport { FormsModule, ReactiveFormsModule } from \"@angular/forms\";\r\nimport { _HttpClient } from '@delon/theme';\r\nimport { FormlyModule } from '@kre-form/core';\r\nimport { NzSpinModule } from 'ng-zorro-antd/spin';\r\nimport { NzEmptyModule } from 'ng-zorro-antd/empty';\r\nimport { NzButtonModule } from 'ng-zorro-antd/button';\r\nimport { NzMessageService } from 'ng-zorro-antd/message';\r\n\r\nimport { NzDrawerRef } from '@ebuilding/base/components/drawer';\r\n\r\nimport { BasicService } from \"../basic\";\r\n\r\n@Component({\r\n selector: 'source-group',\r\n templateUrl: './index.html',\r\n styleUrls: ['./index.less'],\r\n imports: [\r\n CommonModule,\r\n FormsModule,\r\n ReactiveFormsModule,\r\n FormlyModule,\r\n NzSpinModule,\r\n NzEmptyModule,\r\n NzButtonModule\r\n ]\r\n})\r\nexport class SourceGroupMainComponent extends BasicService {\r\n\r\n constructor(\r\n public override http: _HttpClient,\r\n public override msgSrv: NzMessageService,\r\n public drawerRef: NzDrawerRef<any>\r\n ) {\r\n super(http, msgSrv);\r\n }\r\n\r\n ngOnInit(): void { }\r\n\r\n ngOnDestroy() { }\r\n\r\n ngOnChanges(changes: SimpleChanges): void { }\r\n\r\n\r\n /**\r\n * 保存\r\n * @param e \r\n */\r\n override btnSaveAfter(e: any) {\r\n this.drawerRef.close({\r\n type: 'save',\r\n data: e,\r\n });\r\n }\r\n\r\n /**\r\n * 取消\r\n */\r\n override btnClose() {\r\n this.drawerRef.close({\r\n type: 'close',\r\n data: null,\r\n });\r\n }\r\n\r\n} ","<form [formGroup]=\"form\" (ngSubmit)=\"btnSave()\" #defaultForm>\r\n <nz-spin [nzSpinning]=\"loading\" nzTip=\"拼命加载中...\" class=\"deon-list-spin\">\r\n <div class=\"deon-from\">\r\n <ng-container *ngIf=\"fields && fields.length > 0; else emptyPage\">\r\n <formly-form [model]=\"model\" [fields]=\"fields\" [options]=\"options\" [form]=\"form\"> </formly-form>\r\n </ng-container>\r\n <ng-template #emptyPage>\r\n <nz-empty *ngIf=\"loading !== true\"></nz-empty>\r\n </ng-template>\r\n </div>\r\n <div class=\"deon-button\">\r\n <button nz-button nzType=\"default\" (click)=\"btnClose()\" type=\"button\"><i nz-icon nzType=\"close\"></i>取消</button>\r\n <button nz-button nzType=\"primary\" id=\"SAVE\"><i nz-icon nzType=\"save\"></i>保存</button>\r\n </div>\r\n </nz-spin>\r\n</form>","import { NgModule } from '@angular/core';\r\nimport { SourceGroupMainComponent } from './default/index';\r\n\r\nconst components: any[] = [SourceGroupMainComponent];\r\n\r\n@NgModule({\r\n imports: [...components],\r\n exports: [...components]\r\n})\r\nexport class SourceGroupModule { }\r\n","/**\n * Generated bundle index. Do not edit.\n */\n\nexport * from './index';\n"],"names":[],"mappings":"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"}
|