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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
import React, { useContext } from 'react';
import './index.less';
import { Avatar, ConfigProvider, Form, Input, message, Modal, Popover, Spin, Upload } from 'antd';
import { withRouter } from 'react-router';
import { request } from '@wisdom-utils/utils';
import { FormattedMessage, useIntl } from '@wisdom-utils/components/lib/AppLayout/locales/localeExports';
import globalHeader from '@wisdom-utils/components/lib/AppLayout/locales/zh-CN/globalHeader';
import { appService } from '@wisdom-utils/components/lib/AppLayout/notifier/api';
import { API } from '@wisdom-utils/components/lib/AppLayout/notifier/api/service/user';
// eslint-disable-next-line import/named
const GlobalContext = React.createContext(ConfigProvider.ConfigContext);
const formItemLayout = {
labelCol: {
xs: { span: 4 },
sm: { span: 4 },
},
};
/* eslint-disable */
const getIOT = () =>
window.globalConfig.loginTemplate === 'Dark - IOTMultiLogin.html' ||
window.globalConfig.loginTemplate === '新春 - 智联.html';
class AvatarDropdown extends React.Component {
/* eslint-disable no-unused-vars */
constructor(props) {
super(props);
let {
currentUser = {
avatar: this.transformAvatarImage(),
name:
(props.config && props.config.userInfo && props.config.userInfo.fullName) || 'Serati Ma',
},
} = this.props;
this.state = {
currentUser: currentUser,
visible: false,
popVisible: false,
path: null,
version: null,
action: API.UPLOAD_FILE_URL,
};
}
loginout = (event) => {
// eslint-disable-next-line no-undef
this.props.logout();
if (
window.globalConfig.style === 'ios' &&
window.globalConfig.loginTemplate === 'IOSCloud.html'
) {
window.location.href = `${window.location.origin}/#login`;
return false;
}
// console.log(this.props)
// this.props.history.push('/login')
// window.location.reload();
//
};
getRoles = () => {
const roles = this.props.config.userInfo.roles || [];
const ret = [];
roles.forEach((item) => {
ret.push(item.name);
});
return ret.join(',');
};
showModal = (event) => {
event.stopPropagation();
this.setState({
visible: true,
});
};
handleOk = (event, form) => {
event.stopPropagation();
form
.validateFields()
.then((res) => {
const params = getIOT()
? {
newPassword: res.newPwd,
phone: window.globalConfig.userInfo.Phone,
}
: {
password: res.oldPwd,
newpassword: res.newPwd,
token: window.globalConfig.token,
};
appService
.changePassword(params)
.then((res) => {
if (res.success) {
//message.success(useIntl().formatMessage({id: 'component.account.password.update.success'}));
message.success(globalHeader['component.account.password.update.success']);
setTimeout(() => {
this.setState({
visible: false,
});
}, 300);
} else {
message.error(
useIntl().formatMessage({ id: 'component.account.oldpassword.errorMessage' }),
);
}
})
.catch((error) => {
message.error(
useIntl().formatMessage({ id: 'component.account.password.update.fail' }),
);
});
})
.catch((error) => {
console.log(error);
});
};
handleCancel = (event, form) => {
event.stopPropagation();
form.resetFields();
this.setState({
visible: false,
});
};
transformAvatarImage() {
const { userInfo } = this.props.config;
const defaultImage = `${window.location.origin}/civweb4/assets/images/icon/熊猫新2.png`;
let image = defaultImage;
if (userInfo && userInfo.UserImge && userInfo.UserImge.indexOf('个人信息') > -1) {
image = `/cityinterface/rest/services/filedownload.svc/download/${userInfo.UserImge}`;
} else if (
userInfo.UserImge &&
userInfo.UserImge !== '' &&
userInfo.UserImge !== 'default_user.png'
) {
image = userInfo.UserImge;
} else if (userInfo.WxImage && userInfo.WxImage !== '') {
image = userInfo.WxImage;
}
return image;
}
beforeUpload(file) {
const isJpgOrPng = file.type === 'image/jpeg' || file.type === 'image/png';
if (!isJpgOrPng) {
message.error('You can only upload JPG/PNG file!');
}
const isLt2M = file.size / 1024 / 1024 < 2;
if (!isLt2M) {
message.error('Image must smaller than 2MB!');
}
const path = new Date().getTime();
this.setState({
path: path,
action: this.state.action.replace('{path}', path).replace('{filename}', file.name),
});
return isJpgOrPng && isLt2M;
}
handleChange(data) {
console.log(data);
}
componentDidMount() {
appService
.getVersion({
ignoreSite: true,
})
.then((res) => {
if (res.success) {
this.setState({
version: res.message,
});
}
})
.catch((error) => {
message.error(useIntl().formatMessage({ id: 'component.getVersion.errorMessage' }));
});
}
customRequest = ({
action,
data,
file,
filename,
headers,
onError,
onProgress,
onSuccess,
withCredentials,
}) => {
const formData = new FormData();
if (data) {
Object.keys(data).forEach((key) => {
formData.append(key, data[key]);
});
}
formData.append('filedata', file);
request(action, {
withCredentials,
headers: {
...headers,
Accept: '*/*',
'civ-site': '',
},
method: 'post',
data: formData,
ignoreSite: true,
onUploadProgress: ({ total, loaded }) => {
onProgress({ percent: Math.round((loaded / total) * 100).toFixed(2) }, file);
},
})
.then((res) => {
onSuccess(res, file);
})
.catch(onError);
return {
abort() {
console.log('upload progress is aborted.');
},
};
};
render() {
const self = this;
const { props } = this;
const { userInfo } = props.config;
const site =
props.config &&
props.config.userInfo &&
props.config.userInfo.site &&
userInfo.site !== '' &&
props.config.client !== 'oms'
? userInfo.site
: '';
// const { getPrefixCls } = useContext(ConfigProvider.ConfigContext);
// const prefixCls = getPrefixCls();
const uploadProps = {
action: this.state.action,
onStart(file) {
console.log('onStart', file, file.name);
},
onSuccess(res, file) {
if (res.success) {
const avatarPath = '/个人信息/' + self.state.path + '/' + file.name;
const params = {
userID: props.config.get('userInfo.OID'),
loginName: props.config.get('userInfo.loginName'),
userName: props.config.get('userInfo.fullName'),
_version: self.state.version,
mark: props.config.get('userInfo.Mark'),
phone: props.config.get('userInfo.Phone'),
email: props.config.get('userInfo.Email'),
userImage: decodeURIComponent(avatarPath),
WXid: props.config.get('userInfo.WXid'),
};
appService
.updateAvatar(params)
.then((res) => {
if (res.success) {
// message.success(useIntl().formatMessage({id: 'component.avatar.update.success'}));
message.success(globalHeader['component.avatar.update.success']);
self.setState({
currentUser: {
name: self.state.currentUser.name,
avatar: `${API.AVATAR_FILE_URL}${avatarPath}`,
action: API.UPLOAD_FILE_URL,
},
});
}
})
.catch((e) => {
message.error(useIntl().formatMessage({ id: 'component.avatar.update.fail' }));
});
} else {
message.error(res.message);
}
},
onError(err) {
console.log('onError', err);
},
onProgress({ percent }, file) {
console.log('onProgress', `${percent}%`, file.name);
},
customRequest: this.customRequest.bind(this),
beforeUpload: this.beforeUpload.bind(this),
onChange: this.handleChange.bind(this),
};
const currentUser = this.state.currentUser;
const menuHeaderDropdown = (prefixCls) => (
<div className={`${prefixCls}-userWrapper-userInfo`}>
<div className={`${prefixCls}-userWrapper-userInfo-header`} style={{background:'#00b278'}}>
<Upload
className="avatar-uploader"
{...uploadProps}
maxCount={1}
itemRender={() => <></>}
>
<div
className={`${prefixCls}-userWrapper-userInfo-header-avatar`}
style={{ backgroundImage: `url(${currentUser.avatar})` }}
/>
</Upload>
<div className={`${prefixCls}-userWrapper-userInfo-header-name`}>{userInfo.fullName}</div>
</div>
<div className={`${prefixCls}-userWrapper-userInfo-body`}>
<div className={`${prefixCls}-userWrapper-userInfo-body-item`}>
<ul>
<li>
<span />
<span className={`${prefixCls}-userWrapper-userInfo-body-item-label`}>
<FormattedMessage id="component.avatar.account" />:
</span>
<span className={`${prefixCls}-userWrapper-userInfo-body-item-value`}>
{userInfo.loginName}
</span>
</li>
<li>
<span />
<span className={`${prefixCls}-userWrapper-userInfo-body-item-label`}>
<FormattedMessage id="component.avatar.name" />:
</span>
<span className={`${prefixCls}-userWrapper-userInfo-body-item-value`}>
{userInfo.fullName}
</span>
</li>
<li>
<span />
<span className={`${prefixCls}-userWrapper-userInfo-body-item-label`}>
<FormattedMessage id="component.avatar.depart" />:
</span>
<span className={`${prefixCls}-userWrapper-userInfo-body-item-value`}>
{userInfo && userInfo.depart && userInfo.depart.name}
</span>
</li>
<li>
<span />
<span className={`${prefixCls}-userWrapper-userInfo-body-item-label`}>
<FormattedMessage id="component.avatar.role" />:
</span>
<span className={`${prefixCls}-userWrapper-userInfo-body-item-value`}>
{this.getRoles()}
</span>
</li>
{site ? (
<li>
<span />
<span className={`${prefixCls}-userWrapper-userInfo-body-item-label`}>
<FormattedMessage id="component.siteCode" />:
</span>
<span className={`${prefixCls}-userWrapper-userInfo-body-item-value`}>
{userInfo.site}
</span>
</li>
) : null}
</ul>
</div>
<div className={`${prefixCls}-userWrapper-userInfo-body-exit`}>
{userInfo && userInfo.site === '' && (
<a onClick={(event) => this.showModal(event)}>
<FormattedMessage id="component.password.update" />
</a>
)}
<a onClick={this.loginout}>
<FormattedMessage id="component.exit.login" />
</a>
</div>
</div>
</div>
);
return currentUser && currentUser.name ? (
<GlobalContext.Consumer>
{(value) => {
const { getPrefixCls } = value._currentValue;
const prefixCls = getPrefixCls();
return (
<>
<Popover
overlayClassName={`${prefixCls}-userWrapper`}
placement="bottom"
trigger="click"
content={
props.config && props.config.userInfo ? menuHeaderDropdown(prefixCls) : null
}
>
<span
className={`${prefixCls}-action ${prefixCls}-account`}
ref={(r) => (this.avatarRef = r)}
>
<Avatar
size="small"
className={`${prefixCls}-account-avatar`}
src={currentUser.avatar}
alt="avatar"
/>
{/* <span className={`${styles.name} anticon`}>{currentUser.name}</span> */}
</span>
</Popover>
<Modal
title="修改密码"
centered
width="480px"
visible={this.state.visible}
wrapClassName={`${prefixCls}-updatePassword`}
cancelText="取消"
okText="确定"
onOk={(event) => this.handleOk(event, this.form)}
onCancel={(event) => this.handleCancel(event, this.form)}
zIndex={2000}
>
<Form labelAlign="right" {...formItemLayout} ref={(f) => (this.form = f)}>
{!getIOT() && (
<Form.Item
name="oldPwd"
label="原密码"
rules={[
{
required: true,
message: '请输入原始密码',
},
]}
hasFeedback
>
<Input.Password />
</Form.Item>
)}
<Form.Item
name="newPwd"
label="新密码"
rules={[
{
required: true,
message: '请输入新密码',
},
{
pattern: /^(?![0-9]+$)(?![a-zA-Z]+$)[a-zA-Z0-9!@#$%^&*_]{8,16}$/,
message: '密码字符长度为8-16个字符',
},
]}
hasFeedback
>
<Input.Password />
</Form.Item>
<Form.Item
name="confirmPwd"
label="确认密码"
dependencies={['newPwd']}
hasFeedback
rules={[
{
required: true,
message: '请输入确认密码',
},
({ getFieldValue }) => ({
validator(rule, value) {
if (!value || getFieldValue('newPwd') === value) {
return Promise.resolve();
}
return Promise.reject('确认密码与新密码输入不一致');
},
}),
]}
>
<Input.Password />
</Form.Item>
</Form>
</Modal>
</>
);
}}
</GlobalContext.Consumer>
) : (
<GlobalContext.Consumer>
{(value) => {
const { getPrefixCls } = value._currentValue;
const prefixCls = getPrefixCls();
return (
<span className={`${prefixCls}-action ${prefixCls}-account`}>
<Spin
size="small"
style={{
marginLeft: 8,
marginRight: 8,
}}
/>
</span>
);
}}
</GlobalContext.Consumer>
);
}
}
export default withRouter(AvatarDropdown);