index.tsx
6.87 KB
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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
import { RESPONSE_CODE } from '@/constants/enum';
import { getUserInfo } from '@/utils';
import { PlusOutlined } from '@ant-design/icons';
import { ActionType, ProTable } from '@ant-design/pro-components';
import { Button, Popconfirm, Tabs, message } from 'antd';
import { useMemo, useRef, useState } from 'react';
import {
postResearchGroupsAccessBlackList,
postResearchGroupsAccessDeleteBlackList,
postResearchGroupsAccessDeleteWhiteList,
postResearchGroupsAccessWhiteList,
} from '@/services';
import './index.css';
import './index.less';
import {
RESEARCH_GROUP_ACCESS_BLACKLIST_COLUMNS,
RESEARCH_GROUP_ACCESS_WHITELIST_COLUMNS,
} from './constant';
import AddModal, { AddModalRef } from './components/AddModal';
const ResearchGroupAccessPage = () => {
const whitelistActionRef = useRef<ActionType>();
const blacklistActionRef = useRef<ActionType>();
const [activeKey, setActiveKey] = useState<string>('1');
const addModalRef = useRef<AddModalRef>(null);
const reloadWhitelistTable = () => {
whitelistActionRef.current?.reload();
};
const reloadBlacklistTable = () => {
blacklistActionRef.current?.reload();
};
const handleDeleteWhitelist = async (id: number) => {
const res = await postResearchGroupsAccessDeleteWhiteList({ data: { id } });
if (res && res.result === RESPONSE_CODE.SUCCESS) {
message.success('删除成功');
reloadWhitelistTable();
} else {
message.error(res?.message || '删除失败');
}
};
const handleDeleteBlacklist = async (id: number) => {
const res = await postResearchGroupsAccessDeleteBlackList({ data: { id } });
if (res && res.result === RESPONSE_CODE.SUCCESS) {
message.success('删除成功');
reloadBlacklistTable();
} else {
message.error(res?.message || '删除失败');
}
};
const handleAddClick = () => {
const accessType = activeKey === '1' ? 'WHITELIST' : 'BLACKLIST';
const onSuccess =
activeKey === '1' ? reloadWhitelistTable : reloadBlacklistTable;
addModalRef.current?.show(accessType, onSuccess);
};
const WhitelistTab = () => {
// Check if the current user has permission to add/delete
const hasPermission = useMemo(() => {
const userInfo = getUserInfo();
return userInfo?.username === 'canrd' || userInfo?.username === 'D-Tina';
}, []);
return (
<ProTable
actionRef={whitelistActionRef}
rowKey="id"
search={{
labelWidth: 120,
defaultCollapsed: false,
}}
pagination={{
pageSize: 10,
}}
toolBarRender={() =>
hasPermission
? [
<Button key="add" type="primary" onClick={handleAddClick}>
<PlusOutlined /> 添加
</Button>,
]
: []
}
request={async (params) => {
const { current, pageSize, ...rest } = params;
const res = await postResearchGroupsAccessWhiteList({
data: {
current: current || 1,
pageSize: pageSize || 10,
...rest,
},
});
if (res && res.result === RESPONSE_CODE.SUCCESS) {
return {
data: res.data?.data || [],
success: true,
total: res.data?.total || 0,
};
}
return {
data: [],
success: false,
total: 0,
};
}}
columns={[
...RESEARCH_GROUP_ACCESS_WHITELIST_COLUMNS,
{
title: '操作',
dataIndex: 'option',
valueType: 'option',
render: (_, record) =>
hasPermission
? [
<Popconfirm
key="delete"
title="确定要删除吗?"
onConfirm={() => handleDeleteWhitelist(record.id)}
>
<a style={{ color: '#ff4d4f' }}>删除</a>
</Popconfirm>,
]
: [],
},
]}
/>
);
};
const BlacklistTab = () => {
// Check if the current user has permission to add/delete
const hasPermission = useMemo(() => {
const userInfo = getUserInfo();
return userInfo?.username === 'canrd' || userInfo?.username === 'D-Tina';
}, []);
return (
<ProTable
actionRef={blacklistActionRef}
rowKey="id"
search={{
labelWidth: 120,
defaultCollapsed: false,
}}
pagination={{
pageSize: 10,
}}
toolBarRender={() =>
hasPermission
? [
<Button key="add" type="primary" onClick={handleAddClick}>
<PlusOutlined /> 添加
</Button>,
]
: []
}
request={async (params) => {
const { current, pageSize, ...rest } = params;
const res = await postResearchGroupsAccessBlackList({
data: {
current: current || 1,
pageSize: pageSize || 10,
...rest,
},
});
if (res && res.result === RESPONSE_CODE.SUCCESS) {
return {
data: res.data?.data || [],
success: true,
total: res.data?.total || 0,
};
}
return {
data: [],
success: false,
total: 0,
};
}}
columns={[
...RESEARCH_GROUP_ACCESS_BLACKLIST_COLUMNS,
{
title: '操作',
dataIndex: 'option',
valueType: 'option',
render: (_, record) =>
hasPermission
? [
<Popconfirm
key="delete"
title="确定要删除吗?"
onConfirm={() => handleDeleteBlacklist(record.id)}
>
<a style={{ color: '#ff4d4f' }}>删除</a>
</Popconfirm>,
]
: [],
},
]}
/>
);
};
// 空函数保留作为回调,但不做任何操作
// eslint-disable-next-line @typescript-eslint/no-unused-vars
const setAddModalVisible = (_: boolean) => {
// 我们不再需要在父组件中跟踪模态框状态
};
return (
<div className="research-group-index">
<Tabs
defaultActiveKey="whitelist"
onChange={setActiveKey}
items={[
{
key: 'whitelist',
label: '课题组白名单',
children: <WhitelistTab />,
},
{
key: 'blacklist',
label: '课题组风险名单',
children: <BlacklistTab />,
},
]}
/>
<AddModal ref={addModalRef} setVisible={setAddModalVisible} />
</div>
);
};
export default ResearchGroupAccessPage;