message-verify 1.0.1-beta.74 → 1.0.1-beta.8
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/.arcconfig +0 -1
- package/dist/compoments/button.js +2 -0
- package/dist/index.d.ts +2 -6
- package/dist/index.js +38 -67
- package/dist/locales/en.d.ts +0 -5
- package/dist/locales/en.js +1 -6
- package/dist/locales/id.d.ts +0 -5
- package/dist/locales/id.js +1 -6
- package/dist/locales/zh.d.ts +0 -5
- package/dist/locales/zh.js +1 -6
- package/dist/main.js +21 -10
- package/dist/relogin-modal.js +7 -7
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/utils/type.d.ts +4 -11
- package/dist/verify-modal.d.ts +2 -2
- package/dist/verify-modal.js +21 -40
- package/package.json +2 -3
- package/src/compoments/button.tsx +2 -0
- package/src/index.tsx +57 -81
- package/src/locales/en.ts +1 -6
- package/src/locales/id.ts +1 -6
- package/src/locales/zh.ts +1 -6
- package/src/main.tsx +23 -13
- package/src/{modal/relogin-modal.tsx → relogin-modal.tsx} +10 -11
- package/src/utils/type.ts +4 -9
- package/src/{modal/verify-modal.tsx → verify-modal.tsx} +33 -67
- package/dist/modal/relogin-modal.d.ts +0 -5
- package/dist/modal/relogin-modal.js +0 -24
- package/dist/modal/verify-modal.d.ts +0 -5
- package/dist/modal/verify-modal.js +0 -128
- package/dist/utils/eventEmitter.d.ts +0 -10
- package/dist/utils/eventEmitter.js +0 -28
- package/dist/utils/resource.d.ts +0 -2
- package/dist/utils/resource.js +0 -7
- package/src/utils/eventEmitter.ts +0 -33
- /package/src/{utils/resource.ts → resource.ts} +0 -0
package/src/index.tsx
CHANGED
@@ -1,96 +1,72 @@
|
|
1
1
|
import ReactDOM from 'react-dom/client'
|
2
|
-
import VerifyModal from './
|
2
|
+
import VerifyModal from './verify-modal.js'
|
3
3
|
import Fingerprint2 from 'fingerprintjs2';
|
4
|
-
import ReLoginModal from './
|
5
|
-
import {
|
6
|
-
import eventEmitter from './utils/eventEmitter.js';
|
4
|
+
import ReLoginModal from './relogin-modal.js';
|
5
|
+
import { ModalConfig, LoginModalConfig } from './utils/type.js';
|
7
6
|
|
8
|
-
let
|
9
|
-
let modalRoot: ReactDOM.Root | null = null
|
7
|
+
let cachedFingerprint: string | null = null;
|
10
8
|
export const initFingerprint = async (): Promise<string> => {
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
Fingerprint2.get(components => {
|
15
|
-
const includeKeys = ['userAgent', 'cpuClass', 'hardwareConcurrency', 'platform'];
|
16
|
-
console.log('components:', components);
|
17
|
-
const values = components
|
18
|
-
.filter(c => includeKeys.includes(c.key))
|
19
|
-
.map(c => c.value)
|
20
|
-
.join('###');
|
21
|
-
console.log('values:', values);
|
22
|
-
const fingerprint = Fingerprint2.x64hash128(values, 31);
|
23
|
-
console.log('fingerprint:', fingerprint);
|
24
|
-
resolve(fingerprint);
|
25
|
-
});
|
26
|
-
});
|
9
|
+
if (cachedFingerprint) {
|
10
|
+
// 已有缓存,直接返回 Promise
|
11
|
+
return Promise.resolve(cachedFingerprint);
|
27
12
|
}
|
28
|
-
|
13
|
+
// 首次异步获取并缓存
|
14
|
+
return new Promise((resolve) => {
|
15
|
+
Fingerprint2.get(function (components) {
|
16
|
+
console.log('components', components);
|
17
|
+
const includeKeys = ['userAgent', 'deviceMemory', 'cpuClass', 'hardwareConcurrency', 'platform'];
|
18
|
+
const values = components
|
19
|
+
.filter(component => includeKeys.includes(component.key))
|
20
|
+
.map(component => component.value)
|
21
|
+
.join('###');
|
22
|
+
const fingerprint = Fingerprint2.x64hash128(values, 31);
|
23
|
+
cachedFingerprint = fingerprint;
|
24
|
+
resolve(fingerprint);
|
25
|
+
});
|
26
|
+
});
|
29
27
|
};
|
30
28
|
|
31
|
-
|
32
|
-
if (modalRoot) {
|
33
|
-
modalRoot.unmount()
|
34
|
-
document.getElementById(modalId)?.remove()
|
35
|
-
modalRoot = null
|
36
|
-
}
|
37
|
-
}
|
29
|
+
let modalRoot: ReactDOM.Root | null = null
|
38
30
|
|
39
|
-
const
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
document.body.appendChild(container)
|
31
|
+
export const createMessageVerifyModal = (modalProps: ModalConfig) => {
|
32
|
+
const container = document.createElement('div')
|
33
|
+
container.id = 'antd-modal-container'
|
34
|
+
document.body.appendChild(container)
|
44
35
|
|
45
|
-
|
46
|
-
|
47
|
-
|
48
|
-
|
49
|
-
|
50
|
-
|
51
|
-
|
52
|
-
|
53
|
-
|
54
|
-
|
55
|
-
|
36
|
+
modalRoot = ReactDOM.createRoot(container)
|
37
|
+
modalRoot.render(
|
38
|
+
<VerifyModal
|
39
|
+
props={{
|
40
|
+
...modalProps,
|
41
|
+
onClose: () => {
|
42
|
+
modalProps.onClose?.()
|
43
|
+
destroyModal()
|
44
|
+
}
|
45
|
+
}}
|
46
|
+
/>
|
47
|
+
)
|
56
48
|
}
|
57
49
|
|
58
|
-
const createMessageVerifyModal = (modalProps: VerifyModalConfig) => {
|
59
|
-
const verifyModalId = 'verify-modal-container';
|
60
|
-
creatModal(modalProps, verifyModalId, VerifyModal);
|
61
|
-
}
|
62
50
|
// 新增 relogin 弹窗创建方法
|
63
51
|
export const createReLoginModal = (modalProps: LoginModalConfig) => {
|
64
|
-
|
65
|
-
|
52
|
+
const container = document.createElement('div')
|
53
|
+
container.id = 'antd-modal-container'
|
54
|
+
document.body.appendChild(container)
|
55
|
+
|
56
|
+
modalRoot = ReactDOM.createRoot(container)
|
57
|
+
modalRoot.render(
|
58
|
+
<ReLoginModal
|
59
|
+
props={{
|
60
|
+
...modalProps,
|
61
|
+
}}
|
62
|
+
/>
|
63
|
+
)
|
66
64
|
}
|
67
65
|
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
|
75
|
-
if (!verifyPromise.current) {
|
76
|
-
verifyPromise.current = new Promise((resolve, reject) => {
|
77
|
-
createMessageVerifyModal({
|
78
|
-
data,
|
79
|
-
config,
|
80
|
-
http,
|
81
|
-
apiResolve: resolve,
|
82
|
-
apiReject: reject,
|
83
|
-
apiPromiseToEmpty: toEmpty,
|
84
|
-
sendApi
|
85
|
-
} as VerifyModalConfig);
|
86
|
-
}).finally(toEmpty);
|
87
|
-
}
|
88
|
-
return verifyPromise.current;
|
89
|
-
},
|
90
|
-
getResponse: (response: any) => {
|
91
|
-
if (VerifyHandler._currentUrl === response?.config?.url) {
|
92
|
-
eventEmitter.emit('response', response?.data?.status?.code ?? -1);
|
93
|
-
}
|
94
|
-
return response;
|
95
|
-
}
|
96
|
-
};
|
66
|
+
const destroyModal = () => {
|
67
|
+
if (modalRoot) {
|
68
|
+
modalRoot.unmount()
|
69
|
+
document.getElementById('antd-modal-container')?.remove()
|
70
|
+
modalRoot = null
|
71
|
+
}
|
72
|
+
}
|
package/src/locales/en.ts
CHANGED
@@ -6,10 +6,5 @@ export default {
|
|
6
6
|
sendSuccess: 'Successfully sent',
|
7
7
|
sendFailed: 'Send failed',
|
8
8
|
reSend: 'Resend',
|
9
|
-
countDownSecound: '{countdown} seconds'
|
10
|
-
accountAlert: 'Account Security Alert',
|
11
|
-
alertContent: 'Changes have been detected in your login environment or network information.To ensure account security, please log in again to verify your identity.',
|
12
|
-
ok: 'OK',
|
13
|
-
chidoriOpenPro: 'Chidori has activated security protection for you',
|
14
|
-
verifyFail: 'Validation failed'
|
9
|
+
countDownSecound: '{countdown} seconds'
|
15
10
|
};
|
package/src/locales/id.ts
CHANGED
@@ -6,10 +6,5 @@ export default {
|
|
6
6
|
sendSuccess: 'Berhasil dikirim',
|
7
7
|
sendFailed: 'Gagal mengirim',
|
8
8
|
reSend: 'Kirim Ulang',
|
9
|
-
countDownSecound: '{countdown} detik'
|
10
|
-
accountAlert: 'Peringatan Keamanan Akun',
|
11
|
-
alertContent: 'Terdeteksi perubahan pada lingkungan login atau informasi jaringan Anda.Untuk menjaga keamanan akun, silakan login kembali untuk memverifikasi identitas Anda.',
|
12
|
-
ok: 'Baiklah',
|
13
|
-
chidoriOpenPro: 'chidori telah mengaktifkan keamanan untuk Anda',
|
14
|
-
verifyFail: 'Autentikasi gagal'
|
9
|
+
countDownSecound: '{countdown} detik'
|
15
10
|
};
|
package/src/locales/zh.ts
CHANGED
@@ -6,10 +6,5 @@ export default {
|
|
6
6
|
sendSuccess: '发送成功',
|
7
7
|
sendFailed: '发送失败',
|
8
8
|
reSend: '重新发送',
|
9
|
-
countDownSecound: '{countdown}秒'
|
10
|
-
accountAlert: '账号安全提醒',
|
11
|
-
alertContent: '检测到您的登录环境或网络信息有变动,为保障账户安全,请重新登录验证身份',
|
12
|
-
ok: '好的',
|
13
|
-
chidoriOpenPro: 'chidori已为您开启安全防护',
|
14
|
-
verifyFail: '验证失败'
|
9
|
+
countDownSecound: '{countdown}秒'
|
15
10
|
};
|
package/src/main.tsx
CHANGED
@@ -1,12 +1,11 @@
|
|
1
1
|
import { createRoot } from 'react-dom/client';
|
2
|
-
import { initFingerprint, createReLoginModal
|
2
|
+
import { createMessageVerifyModal, initFingerprint, createReLoginModal } from './index.js'; // 或 './index'
|
3
3
|
import { axios } from '@yqg/resource';
|
4
4
|
|
5
5
|
const data = "{\"mobile\":\"188****4035\",\"verifyCodeKey\":\"3f025b33-988e-47c0-950d-6beb776d043f\",\"needValid\":true,\"step\":2,\"message\":\"需要填写验证码\"}";
|
6
6
|
|
7
7
|
const fp = await initFingerprint();
|
8
|
-
|
9
|
-
console.log(fp, fp2);
|
8
|
+
console.log(fp);
|
10
9
|
|
11
10
|
const config = {
|
12
11
|
"transitional": {
|
@@ -14,6 +13,12 @@ const config = {
|
|
14
13
|
"forcedJSONParsing": true,
|
15
14
|
"clarifyTimeoutError": false
|
16
15
|
},
|
16
|
+
"transformRequest": [
|
17
|
+
null
|
18
|
+
],
|
19
|
+
"transformResponse": [
|
20
|
+
null
|
21
|
+
],
|
17
22
|
"timeout": 0,
|
18
23
|
"xsrfCookieName": "XSRF-TOKEN",
|
19
24
|
"xsrfHeaderName": "X-XSRF-TOKEN",
|
@@ -21,8 +26,10 @@ const config = {
|
|
21
26
|
"maxBodyLength": -1,
|
22
27
|
"headers": {
|
23
28
|
"Accept": "application/json, text/plain, */*",
|
24
|
-
"X-Device-Fingerprint": "
|
25
|
-
"Content-Type": "application/json"
|
29
|
+
"X-Device-Fingerprint": "185fcce88c629725321adf29daa5e444",
|
30
|
+
"Content-Type": "application/json",
|
31
|
+
"sms-code": "121212",
|
32
|
+
"sms-code-key": "212190c7-2f5e-4cc1-82ec-a242c2ab5425"
|
26
33
|
},
|
27
34
|
"url": "/classification/admin/level/edit",
|
28
35
|
"method": "post",
|
@@ -37,21 +44,24 @@ const config = {
|
|
37
44
|
"formInstance": {},
|
38
45
|
"data": "{\"id\":1,\"classificationName\":\"个人基本概况信息\",\"classificationLevel\":2}",
|
39
46
|
"baseURL": "http://localhost:62888"
|
40
|
-
}
|
41
|
-
|
42
|
-
const promise = {current: null};
|
47
|
+
};
|
43
48
|
createRoot(document.getElementById('root')!).render(
|
44
49
|
<>
|
45
|
-
<button onClick={() => {
|
46
|
-
|
47
|
-
|
48
|
-
|
50
|
+
<button onClick={() => createMessageVerifyModal({
|
51
|
+
data,
|
52
|
+
config,
|
53
|
+
response: {
|
54
|
+
config
|
55
|
+
},
|
56
|
+
lang: 'en',
|
57
|
+
http: axios,
|
58
|
+
})}>
|
59
|
+
Show verify Modal
|
49
60
|
</button>
|
50
61
|
<button onClick={() => createReLoginModal({
|
51
62
|
goLogin: () => {
|
52
63
|
console.log('goLogin');
|
53
64
|
},
|
54
|
-
lang: 'zh',
|
55
65
|
})}>
|
56
66
|
Show login Modal
|
57
67
|
</button>
|
@@ -1,23 +1,21 @@
|
|
1
1
|
import { useState } from 'react'
|
2
|
-
import { Modal, Button } from '
|
3
|
-
import { LoginModalConfig } from '
|
4
|
-
import t from '../utils/i18n.js'
|
2
|
+
import { Modal, Button } from './compoments/index.js'
|
3
|
+
import { LoginModalConfig } from './utils/type.js';
|
5
4
|
|
6
5
|
const ReLoginModal = ({ props }: { props: LoginModalConfig }) => {
|
7
|
-
const { goLogin
|
6
|
+
const { goLogin } = props || {};
|
8
7
|
const [visible, setVisible] = useState(true);
|
9
8
|
const onClose = () => {
|
10
9
|
setVisible(false);
|
11
10
|
goLogin();
|
12
|
-
destroyModal?.();
|
13
11
|
};
|
14
12
|
return (
|
15
13
|
<Modal visible={visible} onClose={onClose} width={420}>
|
16
14
|
<div style={{ fontWeight: 500, fontSize: 20, marginBottom: 24 }}>
|
17
|
-
|
15
|
+
账号安全提醒
|
18
16
|
</div>
|
19
17
|
<div style={{ color: '#222', fontSize: 16, marginBottom: 40, lineHeight: '24px' }}>
|
20
|
-
|
18
|
+
检测到您的登录环境或网络信息有变动,为保障账户安全,请重新登录验证身份
|
21
19
|
</div>
|
22
20
|
<div style={{ display: 'flex', justifyContent: 'center' }}>
|
23
21
|
<Button
|
@@ -25,15 +23,16 @@ const ReLoginModal = ({ props }: { props: LoginModalConfig }) => {
|
|
25
23
|
background: '#1677ff',
|
26
24
|
color: '#fff',
|
27
25
|
border: 'none',
|
28
|
-
width:
|
29
|
-
height:
|
30
|
-
fontSize:
|
26
|
+
width: 160,
|
27
|
+
height: 44,
|
28
|
+
fontSize: 18,
|
29
|
+
fontWeight: 500,
|
31
30
|
borderRadius: 8,
|
32
31
|
boxShadow: '0 2px 8px rgba(22,119,255,0.08)',
|
33
32
|
}}
|
34
33
|
onClick={onClose}
|
35
34
|
>
|
36
|
-
|
35
|
+
好的
|
37
36
|
</Button>
|
38
37
|
</div>
|
39
38
|
</Modal>
|
package/src/utils/type.ts
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
|
2
|
-
export type
|
2
|
+
export type ModalConfig = {
|
3
3
|
data: string;
|
4
4
|
onClose?: () => void
|
5
5
|
config: {
|
@@ -8,7 +8,7 @@ export type VerifyModalConfig = {
|
|
8
8
|
};
|
9
9
|
[key: string]: unknown;
|
10
10
|
};
|
11
|
-
lang
|
11
|
+
lang: 'zh' | 'en' | 'id';
|
12
12
|
http: {
|
13
13
|
(params: object): Promise<unknown>;
|
14
14
|
defaults: {
|
@@ -19,15 +19,10 @@ export type VerifyModalConfig = {
|
|
19
19
|
}
|
20
20
|
}
|
21
21
|
};
|
22
|
-
|
23
|
-
|
24
|
-
apiResolve?: any;
|
25
|
-
apiPromiseToEmpty?: () => void;
|
26
|
-
verifyPromise: {current: Promise<any> | null}
|
22
|
+
api?: string;
|
23
|
+
response: any;
|
27
24
|
}
|
28
25
|
|
29
26
|
export type LoginModalConfig = {
|
30
27
|
goLogin: () => void;
|
31
|
-
onClose?: () => void
|
32
|
-
lang?: 'zh' | 'en' | 'id';
|
33
28
|
}
|
@@ -1,23 +1,20 @@
|
|
1
|
-
import {
|
2
|
-
import { Modal, Input, Button, message } from '
|
3
|
-
import Api from '
|
4
|
-
import t from '
|
5
|
-
import {
|
1
|
+
import { useEffect, useState } from 'react'
|
2
|
+
import { Modal, Input, Button, message } from './compoments/index.js'
|
3
|
+
import Api from './resource.js'
|
4
|
+
import t from './utils/i18n.js'
|
5
|
+
import { ModalConfig } from './utils/type.js';
|
6
6
|
import { axios } from '@yqg/resource';
|
7
|
-
import eventEmitter from '../utils/eventEmitter.js';
|
8
7
|
|
9
|
-
const CreateMessageVerifyModal = ({ props }: { props:
|
8
|
+
const CreateMessageVerifyModal = ({ props }: { props: ModalConfig }) => {
|
10
9
|
const [visible, setVisible] = useState(true);
|
11
10
|
const [countdown, setCountdown] = useState(60);
|
12
11
|
const [otp, setOtp] = useState('');
|
13
12
|
const [captchaImage, setCaptchaImage] = useState<string>('');
|
14
13
|
const [captchCode, setCaptchCode] = useState<string>('');
|
15
14
|
const [captchaKey, setCaptchaKey] = useState<string>('');
|
16
|
-
const { data, http, lang,
|
15
|
+
const { data, http, lang, api='/admin/sms/send', response } = props || {};
|
17
16
|
const dataObj = JSON.parse(data || '{}');
|
18
17
|
const { mobile, verifyCodeKey } = dataObj || {};
|
19
|
-
const resolveRef = useRef<any>(null);
|
20
|
-
const rejectRef = useRef<any>(null);
|
21
18
|
|
22
19
|
const getKey = async () => {
|
23
20
|
try {
|
@@ -28,11 +25,10 @@ const CreateMessageVerifyModal = ({ props }: { props: VerifyModalConfig }) => {
|
|
28
25
|
const image = Api.getCaptchaImgUrl(key) as unknown;
|
29
26
|
setCaptchaImage(image as string);
|
30
27
|
}
|
31
|
-
} catch (err) {
|
32
|
-
|
33
|
-
|
34
|
-
|
35
|
-
: String(err);
|
28
|
+
} catch (err) {const msg =
|
29
|
+
typeof err === 'object' && err !== null && 'message' in err
|
30
|
+
? (err as {message: string}).message
|
31
|
+
: String(err);
|
36
32
|
message.error(msg as React.ReactNode);
|
37
33
|
}
|
38
34
|
}
|
@@ -52,41 +48,19 @@ const CreateMessageVerifyModal = ({ props }: { props: VerifyModalConfig }) => {
|
|
52
48
|
};
|
53
49
|
}, [visible, countdown]);
|
54
50
|
|
55
|
-
|
56
|
-
useEffect(() => {
|
57
|
-
const handler = (data: any) => {
|
58
|
-
// 这里处理收到的数据
|
59
|
-
console.log('收到 response 事件:', data);
|
60
|
-
if (data === 0) {
|
61
|
-
resolveRef.current({
|
62
|
-
code: data,
|
63
|
-
});
|
64
|
-
} else {
|
65
|
-
rejectRef.current({
|
66
|
-
code: data,
|
67
|
-
});
|
68
|
-
}
|
69
|
-
};
|
70
|
-
eventEmitter.on('response', handler);
|
71
|
-
return () => {
|
72
|
-
eventEmitter.off('response', handler);
|
73
|
-
};
|
74
|
-
}, []);
|
75
|
-
|
76
51
|
const handleResend = async () => {
|
77
52
|
const formData = new FormData();
|
78
53
|
formData.append('captchaKey', captchaKey);
|
79
54
|
formData.append('captcha', captchCode);
|
80
55
|
// 重新发送验证码
|
81
|
-
const res = await axios.post(
|
82
|
-
const { code } = res.data?.status || {};
|
56
|
+
const res = await axios.post(api, formData);
|
57
|
+
const { code, detail } = res.data?.status || {};
|
83
58
|
if (code !== 0) {
|
59
|
+
message.error(detail || t('sendFailed', lang));
|
84
60
|
return;
|
85
61
|
}
|
86
62
|
message.success(t('sendSuccess', lang));
|
87
|
-
// 重置倒计时、验证码
|
88
63
|
setCountdown(60);
|
89
|
-
setOtp('');
|
90
64
|
}
|
91
65
|
|
92
66
|
return (
|
@@ -95,8 +69,7 @@ const CreateMessageVerifyModal = ({ props }: { props: VerifyModalConfig }) => {
|
|
95
69
|
visible={visible}
|
96
70
|
onClose={() => {
|
97
71
|
setVisible(false);
|
98
|
-
|
99
|
-
onClose?.();
|
72
|
+
props.onClose?.();
|
100
73
|
}}
|
101
74
|
>
|
102
75
|
<div style={{ fontSize: 14, color: '#666' }}>{t('alreadySend', lang, { phone: mobile })}</div>
|
@@ -108,32 +81,26 @@ const CreateMessageVerifyModal = ({ props }: { props: VerifyModalConfig }) => {
|
|
108
81
|
onChange={async (val) => {
|
109
82
|
setOtp(val);
|
110
83
|
if (val.length === 6) {
|
111
|
-
|
112
|
-
|
113
|
-
|
114
|
-
|
115
|
-
http
|
116
|
-
|
117
|
-
|
118
|
-
|
119
|
-
'sms-code': val,
|
120
|
-
'sms-code-key': verifyCodeKey,
|
121
|
-
'Content-Type': config.headers['Content-Type'],
|
122
|
-
}
|
123
|
-
});
|
124
|
-
}) as any;
|
125
|
-
if (res?.code === 0 || res?.data?.status?.code === 0) {
|
126
|
-
apiResolve(res);
|
127
|
-
setVisible(false);
|
128
|
-
} else {
|
129
|
-
message.error(t('verifyFail', lang));
|
130
|
-
setOtp('');
|
84
|
+
const {data: {status: {code, detail} = {}}} = response || {};
|
85
|
+
http({
|
86
|
+
...response?.config,
|
87
|
+
headers: {
|
88
|
+
...http.defaults.headers.common,
|
89
|
+
'sms-code': val,
|
90
|
+
'sms-code-key': verifyCodeKey,
|
91
|
+
'Content-Type': response?.config.headers['Content-Type'],
|
131
92
|
}
|
132
|
-
}
|
133
|
-
|
134
|
-
|
135
|
-
|
93
|
+
}) as any;
|
94
|
+
console.log('=>response===>', response);
|
95
|
+
if(code !== 0) {
|
96
|
+
const detailObj = JSON.parse(detail || '{}');
|
97
|
+
message.error(detailObj?.message || t('verifyFailed', lang));
|
98
|
+
return;
|
99
|
+
} else {
|
100
|
+
message.success(t('verifySuccess', lang));
|
101
|
+
// setVisible(false);
|
136
102
|
}
|
103
|
+
setVisible(false);
|
137
104
|
}
|
138
105
|
}} />
|
139
106
|
<Button
|
@@ -157,7 +124,6 @@ const CreateMessageVerifyModal = ({ props }: { props: VerifyModalConfig }) => {
|
|
157
124
|
{captchaImage && <img src={captchaImage} alt={t('verifyCode', lang)} style={{ width: 100, height: 30, marginLeft: 8 }} onClick={getKey} />}
|
158
125
|
</div>}
|
159
126
|
{(countdown > 0 || captchCode) ? null : <div style={{ fontSize: 14, color: 'red' }}>{t('pleaseEnterAndSend', lang)}</div>}
|
160
|
-
<div style={{ fontSize: 14, color: '#666', marginTop: 12 }}>{t('chidoriOpenPro', lang)}</div>
|
161
127
|
</Modal>
|
162
128
|
);
|
163
129
|
};
|
@@ -1,24 +0,0 @@
|
|
1
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
2
|
-
import { useState } from 'react';
|
3
|
-
import { Modal, Button } from '../compoments/index.js';
|
4
|
-
import t from '../utils/i18n.js';
|
5
|
-
const ReLoginModal = ({ props }) => {
|
6
|
-
const { goLogin, lang, onClose: destroyModal } = props || {};
|
7
|
-
const [visible, setVisible] = useState(true);
|
8
|
-
const onClose = () => {
|
9
|
-
setVisible(false);
|
10
|
-
goLogin();
|
11
|
-
destroyModal?.();
|
12
|
-
};
|
13
|
-
return (_jsxs(Modal, { visible: visible, onClose: onClose, width: 420, children: [_jsx("div", { style: { fontWeight: 500, fontSize: 20, marginBottom: 24 }, children: t('accountAlert', lang) }), _jsx("div", { style: { color: '#222', fontSize: 16, marginBottom: 40, lineHeight: '24px' }, children: t('alertContent', lang) }), _jsx("div", { style: { display: 'flex', justifyContent: 'center' }, children: _jsx(Button, { style: {
|
14
|
-
background: '#1677ff',
|
15
|
-
color: '#fff',
|
16
|
-
border: 'none',
|
17
|
-
width: 80,
|
18
|
-
height: 36,
|
19
|
-
fontSize: 14,
|
20
|
-
borderRadius: 8,
|
21
|
-
boxShadow: '0 2px 8px rgba(22,119,255,0.08)',
|
22
|
-
}, onClick: onClose, children: t('ok', lang) }) })] }));
|
23
|
-
};
|
24
|
-
export default ReLoginModal;
|