1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
import { IPSSearchBar } from '@ibiz/dynamic-model-api';
import { MobSearchBarControlInterface } from 'ibiz-core';
import { AppMobSearchBarService } from '../ctrl-service/app-mob-searchbar-service';
import { MDControlBase } from './md-control-base';
/**
* 搜索栏部件
*
* @export
* @class MobSearchBarControlBase
* @extends {MDControlBase}
* @implements {MobSearchBarControlInterface}
*/
export class MobSearchBarControlBase extends MDControlBase implements MobSearchBarControlInterface {
/**
* 搜索栏部件实例对象
*
* @type {IBizSearchBarModel}
* @memberof SearchBarControlBase
*/
public declare controlInstance: IPSSearchBar;
/**
* 视图是否是代理模式
*
* @type {boolean}
* @memberof SearchBarControlBase
*/
viewIsProxyMode: boolean = false;
/**
* 快速分组项(TODO 后续删除)
*
* @protected
* @type {any[]}
* @memberof SearchBarControlBase
*/
protected quickGroupItems: any[] = [];
/**
* 查询参数(视图为代理模式时使用)
*
* @protected
* @type {*}
* @memberof SearchBarControlBase
*/
protected queryParams: any = {};
/**
* 监听静态参数变化
*
* @param {*} newVal
* @param {*} oldVal
* @memberof AppControlBase
*/
public onStaticPropsChange(newVal: any, oldVal: any) {
this.viewIsProxyMode = newVal.viewIsProxyMode ? true : false;
super.onStaticPropsChange(newVal, oldVal);
}
/**
* 监听动态参数变化
*
* @param {*} newVal
* @param {*} oldVal
* @memberof AppControlBase
*/
public onDynamicPropsChange(newVal: any, oldVal: any) {
super.onDynamicPropsChange(newVal, oldVal);
}
/**
* 部件创建完毕
*
* @memberof SearchFormControlBase
*/
public ctrlInit(): void {
super.ctrlInit();
}
/**
* 部件模型数据初始化
*
* @memberof SearchBarControlBase
*/
public async ctrlModelInit() {
await super.ctrlModelInit();
this.service = new AppMobSearchBarService();
if (this.viewIsProxyMode) {
await this.loadQuickGroupItem();
}
}
/**
* 获取单项数据
*
* @return {*}
* @memberof MobSearchBarControlBase
*/
public getData() {
let data: any = {};
if (this.viewIsProxyMode) {
Object.assign(data, this.queryParams);
}
return data;
}
/**
* 加载快速分组项
*
* @protected
* @memberof SearchBarControlBase
*/
protected async loadQuickGroupItem() {
// TODO 待补充搜索栏快速分组代码表模型(补充后此逻辑删除)
this.quickGroupItems = [];
(this.controlInstance.getPSSearchBarGroups?.() || []).forEach((item: any) => {
this.quickGroupItems.push({
label: item.caption,
value: item.name,
data: item.data ? JSON.parse(item.data) : {},
id: item.name
});
});
}
}