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
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
import React, { useEffect, useState } from 'react';
import {
Card,
Button,
Table,
Space,
Modal,
Popconfirm,
notification,
Spin,
} from 'antd';
import PageContainer from '@/components/BasePageContainer';
import styles from './ManagementDataBase.less';
import {
tableCheck,
updateDateBase,
databaseStandardGetLog,
} from '@/services/database/api';
const ManagementDataBase = () => {
const [autoCheckList, setAutoCheckList] = useState([]); // 自动列表
const [checkList, setCheckList] = useState([]); // 手动列表
const [logList, setLogList] = useState([]); // 日志列表
const [checkFlag, setCheckFlag] = useState(1);
const [upFlag, setUpFlag] = useState(1); //
const [checkLoading, setCheckLoading] = useState(false); // 按钮loading
const [logLoading, setLogLoading] = useState(false);
const [modalVisible, setModalVisible] = useState(false); // 弹窗
const [content, setContent] = useState(null);
// 检查数据库表
useEffect(() => {
setCheckLoading(true);
tableCheck({
_version: 9999,
_dc: new Date().getTime(),
})
.then(res => {
setCheckLoading(false);
console.log(res);
if (res.sucess) {
const { list, messageList } = res;
// 自动检测列表
let arr = list.map((item, index) => {
item.key = index;
return item;
});
// 手动检查列表
let arr2 = messageList.map((item, index) => {
item.key = index;
return item;
});
console.log(arr);
setAutoCheckList(arr);
setCheckList(arr2);
}
})
.catch(err => {
setCheckLoading(false);
console.error(err);
});
}, [checkFlag]);
// 获取数据库升级记录
useEffect(() => {
setLogLoading(true);
databaseStandardGetLog({
_version: 9999,
_dc: new Date().getTime(),
})
.then(res => {
setLogLoading(false);
if (res) {
let arr = [];
res.map((item, index) => {
item.key = index;
arr.push(item);
});
setLogList(res);
}
})
.catch(err => {
setLogLoading(false);
console.error(err);
});
}, [upFlag]);
// 检查功能
const handleCheck = () => {
setCheckFlag(checkFlag + 1);
};
// 升级功能
const handleUpdate = () => {
setCheckLoading(true);
updateDateBase({
_version: 9999,
_dc: Date.now(),
})
.then(res => {
setCheckLoading(false);
setCheckFlag(checkFlag + 1);
setUpFlag(upFlag + 1);
if (res.success) {
notification.success({
message: '通知',
duration: 3,
description: res.message,
});
} else {
notification.error({
message: '通知',
duration: 15,
description: res.message,
});
}
})
.catch(err => {
setCheckLoading(false);
console.error(err);
});
};
const handleLog = text => {
console.log(text);
let arr = [];
arr.push(
text.split(/(\r\n)|(\n)/).map((item, index) => <p key={index}>{item}</p>),
);
setModalVisible(true);
// setContent(text);
setContent(arr);
};
const autoCheckColumns = [
{
title: '表名称',
dataIndex: 'tableName',
key: 'tableName',
width: 200,
ellipsis: true,
},
{
title: '类型',
dataIndex: 'type',
key: 'type',
width: 180,
ellipsis: true,
},
{
title: '差异比较',
dataIndex: 'message',
key: 'message',
},
];
const checkColumns = [
{
title: '表名称',
dataIndex: 'tableName',
key: 'tableName',
width: 200,
ellipsis: true,
},
{
title: '差异比较',
dataIndex: 'message',
key: 'message',
ellipsis: true,
},
];
const logColumns = [
{
title: '登录名',
dataIndex: 'updateBy',
key: 'updateBy',
width: 200,
ellipsis: true,
},
{
title: '数据库名称',
dataIndex: 'name',
key: 'name',
width: 200,
ellipsis: true,
},
{
title: '解决方案',
dataIndex: 'solutionName',
key: 'solutionName',
width: 200,
ellipsis: true,
},
{
title: '数据库版本',
dataIndex: 'version',
key: 'version',
width: 200,
ellipsis: true,
},
{
title: '升级时间',
dataIndex: 'updateTime',
key: 'updateTime',
width: 200,
ellipsis: true,
},
{
title: '版本日志',
dataIndex: 'despersion',
key: 'despersion',
render: text => (
<Button
size="small"
onClick={() => {
handleLog(text);
}}
>
日志
</Button>
),
},
{
title: '升级内容',
dataIndex: 'content',
key: 'content',
ellipsis: true,
render: text => (
<Button
size="small"
type="primary"
onClick={() => {
handleLog(text);
}}
>
升级内容
</Button>
),
},
];
return (
<>
<PageContainer>
<Card>
<div className={styles.tableTitle}>表结构自动化修复</div>
<Spin tip="loading..." spinning={checkLoading}>
<Table
className={styles.mgTop20}
columns={autoCheckColumns}
dataSource={autoCheckList}
bordered
size="small"
/>
<div className={styles.btnBox}>
<Space>
<Button type="primary" onClick={handleCheck}>
检查
</Button>
<Popconfirm
title="
是否升级当前连接数据库?"
okText="确认"
cancelText="取消"
onConfirm={() => {
handleUpdate();
}}
>
<Button danger type="primary">
升级
</Button>
</Popconfirm>
</Space>
</div>
</Spin>
</Card>
<Card className={styles.mgTop20}>
<div className={styles.tableTitle}>数据库升级记录</div>
<Table
className={styles.mgTop20}
columns={logColumns}
dataSource={logList}
bordered
loading={logLoading}
size="small"
/>
</Card>
<Card className={styles.mgTop20}>
<div className={styles.tableTitle}>
表字段手动修复
(字段长度不统一,请手动修改差异,数据可能会截断,请谨慎操作)
</div>
<Table
className={styles.mgTop20}
columns={checkColumns}
dataSource={checkList}
bordered
loading={checkLoading}
size="small"
/>
</Card>
</PageContainer>
<Modal
title="详细信息"
visible={modalVisible}
keyboard={false}
maskClosable
onOk={() => setModalVisible(false)}
onCancel={() => setModalVisible(false)}
width="1000px"
bodyStyle={{
minHeight: '100px',
maxHeight: '600px',
overflowY: 'scroll',
}}
style={{ top: '40px' }}
footer={[
<Button type="primary" onClick={() => setModalVisible(false)}>
关闭窗口
</Button>,
]}
>
{content}
</Modal>
</>
);
};
export default ManagementDataBase;