@authing/react-ui-components 3.0.2-beta.5 → 3.1.1-rc.1
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/.vscode/settings.json +1 -1
- package/LICENSE +21 -0
- package/config/env.js +26 -24
- package/config/paths.js +3 -3
- package/config/webpack.config.js +29 -7
- package/lib/index.d.ts +211 -1252
- package/lib/index.min.css +1 -2
- package/lib/index.min.js +1 -1
- package/lib/index.min.js.LICENSE.txt +0 -32
- package/package.json +14 -20
- package/scripts/build.js +83 -79
- package/scripts/start.js +73 -69
- package/scripts/test.js +23 -19
- package/{components → src/common}/AuthingDropdown/index.tsx +1 -1
- package/{components → src/common}/AuthingDropdown/style.less +0 -0
- package/{components → src/common}/AuthingTabs/index.tsx +1 -1
- package/{components → src/common}/AuthingTabs/style.less +0 -0
- package/{components → src/common}/CopyAbleText/index.tsx +1 -1
- package/{components → src/common}/CopyAbleText/style.less +0 -0
- package/{components → src/common}/VerifyCodeInput/index.tsx +0 -0
- package/{components → src/common}/VerifyCodeInput/style.less +0 -0
- package/{components → src/components}/AuthingGuard/AppMFALayout/index.tsx +2 -2
- package/{components → src/components}/AuthingGuard/AppMFALayout/style.less +0 -0
- package/{components → src/components}/AuthingGuard/CompleteUserInfoLayout/index.tsx +1 -1
- package/{components → src/components}/AuthingGuard/CompleteUserInfoLayout/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/ADLoginForm/index.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/Agreements/index.tsx +1 -1
- package/{components → src/components}/AuthingGuard/Forms/Agreements/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/CompleteUserInfoForm/index.tsx +3 -3
- package/{components → src/components}/AuthingGuard/Forms/EmailMfaVerifyForm/CheckEmailForm.tsx +4 -2
- package/{components → src/components}/AuthingGuard/Forms/EmailMfaVerifyForm/VerifyCodeForm.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/EmailMfaVerifyForm/index.tsx +1 -1
- package/{components → src/components}/AuthingGuard/Forms/EmailMfaVerifyForm/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/EmailRegisterForm/index.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/EmailRegisterForm/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/LdapLoginForm/index.tsx +4 -9
- package/{components → src/components}/AuthingGuard/Forms/LdapLoginForm/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/LoginFormFooter/index.tsx +1 -1
- package/{components → src/components}/AuthingGuard/Forms/LoginFormFooter/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/MfaResetCodeForm/Step1.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/MfaResetCodeForm/Step2.tsx +1 -1
- package/{components → src/components}/AuthingGuard/Forms/MfaResetCodeForm/index.tsx +1 -1
- package/{components → src/components}/AuthingGuard/Forms/MfaResetCodeForm/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/MfaVerifyForm/index.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/MfaVerifyForm/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/PasswordLoginForm/index.tsx +3 -3
- package/{components → src/components}/AuthingGuard/Forms/PhoneCodeLoginForm/index.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/PhoneRegisterForm/index.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/QrCodeLoginForm/index.tsx +4 -2
- package/{components → src/components}/AuthingGuard/Forms/QrCodeLoginForm/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/RegisterFormFooter/index.tsx +1 -1
- package/{components → src/components}/AuthingGuard/Forms/RegisterFormFooter/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/ResetPwdForm/Footer.tsx +1 -1
- package/{components → src/components}/AuthingGuard/Forms/ResetPwdForm/Step1.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/ResetPwdForm/Step2.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/ResetPwdForm/Step3.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/ResetPwdForm/Step4.tsx +1 -1
- package/{components → src/components}/AuthingGuard/Forms/ResetPwdForm/index.tsx +1 -1
- package/{components → src/components}/AuthingGuard/Forms/ResetPwdForm/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/SendPhoneCode/SendCodeBtn.tsx +0 -0
- package/{components → src/components}/AuthingGuard/Forms/SendPhoneCode/index.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/SendPhoneCode/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/SmsMfaVerifyForm/CheckPhoneForm.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/SmsMfaVerifyForm/VerifyCodeForm.tsx +2 -2
- package/{components → src/components}/AuthingGuard/Forms/SmsMfaVerifyForm/index.tsx +1 -1
- package/{components → src/components}/AuthingGuard/Forms/SmsMfaVerifyForm/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/SocialAndIdpLogin/index.tsx +7 -7
- package/{components → src/components}/AuthingGuard/Forms/SocialAndIdpLogin/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Forms/UploadImage/index.tsx +1 -1
- package/{components → src/components}/AuthingGuard/Forms/index.ts +0 -0
- package/{components → src/components}/AuthingGuard/GuardLayout/index.tsx +17 -3
- package/{components → src/components}/AuthingGuard/GuardLayout/style.less +0 -0
- package/{components → src/components}/AuthingGuard/Header/index.tsx +6 -3
- package/{components → src/components}/AuthingGuard/Header/style.less +23 -11
- package/{components → src/components}/AuthingGuard/IconFont/iconfont.js +0 -0
- package/{components → src/components}/AuthingGuard/IconFont/index.tsx +1 -1
- package/{components → src/components}/AuthingGuard/IconFont/style.less +0 -0
- package/{components → src/components}/AuthingGuard/IconFont/svg.js +0 -0
- package/{components → src/components}/AuthingGuard/LoginLayout/index.tsx +69 -25
- package/{components → src/components}/AuthingGuard/LoginLayout/style.less +0 -0
- package/{components → src/components}/AuthingGuard/MfaLayout/Steps.ts +0 -0
- package/{components → src/components}/AuthingGuard/MfaLayout/index.tsx +1 -1
- package/{components → src/components}/AuthingGuard/MfaLayout/style.less +0 -0
- package/{components → src/components}/AuthingGuard/RegisterLayout/index.tsx +2 -2
- package/{components → src/components}/AuthingGuard/RegisterLayout/style.less +0 -0
- package/{components → src/components}/AuthingGuard/ResetPwdLayout/index.tsx +1 -1
- package/{components → src/components}/AuthingGuard/ToggleLang/index.tsx +2 -2
- package/{components → src/components}/AuthingGuard/api/appConfig.ts +22 -14
- package/{components/_utils → src/components/AuthingGuard/api}/http.ts +33 -30
- package/{components → src/components}/AuthingGuard/api/index.ts +0 -0
- package/{components → src/components}/AuthingGuard/api/sso.ts +1 -1
- package/{components → src/components}/AuthingGuard/api/userPoolConfig.ts +3 -2
- package/{components → src/components}/AuthingGuard/constants.ts +2 -2
- package/{components → src/components}/AuthingGuard/hooks/index.tsx +0 -0
- package/{components → src/components}/AuthingGuard/hooks/useScreenSize.tsx +0 -0
- package/{components → src/components}/AuthingGuard/index.tsx +11 -3
- package/{components/_utils → src/components/AuthingGuard}/locales/en/common.json +26 -70
- package/{components/_utils → src/components/AuthingGuard}/locales/en/index.ts +0 -0
- package/{components/_utils → src/components/AuthingGuard}/locales/en/login.json +19 -21
- package/{components/_utils → src/components/AuthingGuard}/locales/en/map.json +0 -0
- package/{components/_utils → src/components/AuthingGuard}/locales/en/user.json +3 -4
- package/{components/_utils → src/components/AuthingGuard}/locales/index.ts +2 -2
- package/{components/_utils → src/components/AuthingGuard}/locales/zh/common.json +9 -53
- package/{components/_utils → src/components/AuthingGuard}/locales/zh/index.ts +0 -0
- package/{components/_utils → src/components/AuthingGuard}/locales/zh/login.json +4 -6
- package/{components/_utils → src/components/AuthingGuard}/locales/zh/map.json +0 -0
- package/{components/_utils → src/components/AuthingGuard}/locales/zh/user.json +1 -3
- package/{components → src/components}/AuthingGuard/style.less +5 -0
- package/{components → src/components}/AuthingGuard/types/Forms.ts +2 -1
- package/{components → src/components}/AuthingGuard/types/GuardConfig.ts +5 -1
- package/{components → src/components}/AuthingGuard/types/GuardState.ts +1 -1
- package/{components → src/components}/AuthingGuard/types/Locales.ts +0 -0
- package/{components → src/components}/AuthingGuard/types/index.ts +0 -0
- package/src/components/index.ts +7 -0
- package/{components → src}/context/base.tsx +0 -0
- package/{components → src}/context/global/context.tsx +0 -0
- package/{components → src}/context/global/reducer.tsx +2 -2
- package/src/index.tsx +142 -0
- package/{logo.svg → src/logo.svg} +0 -0
- package/{react-app-env.d.ts → src/react-app-env.d.ts} +0 -0
- package/{reportWebVitals.ts → src/reportWebVitals.ts} +0 -0
- package/{setupTests.ts → src/setupTests.ts} +0 -0
- package/{components/_utils → src/utils}/clipboard.ts +1 -1
- package/{components/_utils → src/utils}/index.ts +3 -149
- package/{components/_utils → src/utils}/popupCenter.ts +0 -0
- package/tsconfig.json +2 -8
- package/build/asset-manifest.json +0 -26
- package/build/favicon.ico +0 -0
- package/build/index.html +0 -1
- package/build/logo192.png +0 -0
- package/build/logo512.png +0 -0
- package/build/manifest.json +0 -25
- package/build/robots.txt +0 -3
- package/build/static/css/2.51c07e65.chunk.css +0 -3
- package/build/static/css/2.51c07e65.chunk.css.map +0 -1
- package/build/static/css/main.779f221a.chunk.css +0 -2
- package/build/static/css/main.779f221a.chunk.css.map +0 -1
- package/build/static/js/2.bbae9fdb.chunk.js +0 -3
- package/build/static/js/2.bbae9fdb.chunk.js.LICENSE.txt +0 -102
- package/build/static/js/2.bbae9fdb.chunk.js.map +0 -1
- package/build/static/js/3.fd17f196.chunk.js +0 -2
- package/build/static/js/3.fd17f196.chunk.js.map +0 -1
- package/build/static/js/main.5f341531.chunk.js +0 -2
- package/build/static/js/main.5f341531.chunk.js.map +0 -1
- package/build/static/js/runtime-main.ef138021.js +0 -2
- package/build/static/js/runtime-main.ef138021.js.map +0 -1
- package/build/static/media/loading.4a67a5f3.svg +0 -29
- package/components/BindTotp/core/bindSuccess.tsx +0 -72
- package/components/BindTotp/core/securityCode.tsx +0 -108
- package/components/BindTotp/index.tsx +0 -134
- package/components/BindTotp/interface.ts +0 -30
- package/components/BindTotp/styles.less +0 -57
- package/components/ChangeLanguage/index.tsx +0 -35
- package/components/ChangePassword/core/firstLoginReset.tsx +0 -111
- package/components/ChangePassword/core/rotateReset.tsx +0 -114
- package/components/ChangePassword/index.tsx +0 -72
- package/components/CompleteInfo/core/completeInfo.tsx +0 -155
- package/components/CompleteInfo/index.tsx +0 -45
- package/components/CompleteInfo/interface.ts +0 -40
- package/components/CompleteInfo/styles.less +0 -7
- package/components/DownloadAuthenticator/index.tsx +0 -97
- package/components/DownloadAuthenticator/interface.ts +0 -22
- package/components/DownloadAuthenticator/styles.less +0 -52
- package/components/Error/index.tsx +0 -21
- package/components/Error/interface.ts +0 -9
- package/components/Error/styles.less +0 -12
- package/components/ForgetPassword/core/resetPassword.tsx +0 -162
- package/components/ForgetPassword/index.tsx +0 -78
- package/components/ForgetPassword/interface.ts +0 -32
- package/components/Guard/Guard.tsx +0 -295
- package/components/Guard/authClient.ts +0 -44
- package/components/Guard/config.ts +0 -19
- package/components/Guard/event.ts +0 -52
- package/components/Guard/index.tsx +0 -4
- package/components/Guard/module.ts +0 -20
- package/components/Guard/stateMachine.ts +0 -152
- package/components/Guard/styles.less +0 -461
- package/components/IconFont/iconfont.js +0 -74
- package/components/IconFont/index.tsx +0 -16
- package/components/IconFont/style.less +0 -6
- package/components/IconFont/svg.js +0 -2
- package/components/ImagePro/index.tsx +0 -53
- package/components/ImagePro/styles.less +0 -40
- package/components/InputNumber/index.tsx +0 -33
- package/components/Login/codemap.ts +0 -49
- package/components/Login/core/withAD.tsx +0 -9
- package/components/Login/core/withAppQrcode.tsx +0 -49
- package/components/Login/core/withLDAP.tsx +0 -146
- package/components/Login/core/withPassword/FormItemAccount.tsx +0 -42
- package/components/Login/core/withPassword/GraphicVerifyCode.tsx +0 -30
- package/components/Login/core/withPassword/InputAccount.tsx +0 -64
- package/components/Login/core/withPassword/index.tsx +0 -173
- package/components/Login/core/withPhonecode.tsx +0 -122
- package/components/Login/core/withWechatMiniQrcode.tsx +0 -60
- package/components/Login/core/withWechatmpQrcode.tsx +0 -53
- package/components/Login/index.tsx +0 -374
- package/components/Login/props.ts +0 -74
- package/components/Login/socialLogin/index.tsx +0 -407
- package/components/Login/socialLogin/style.less +0 -69
- package/components/Login/styles.less +0 -53
- package/components/MFA/VerifyCodeInput/VerifyCodeFormItem.tsx +0 -41
- package/components/MFA/VerifyCodeInput/index.tsx +0 -145
- package/components/MFA/VerifyCodeInput/style.less +0 -35
- package/components/MFA/codemap.ts +0 -24
- package/components/MFA/core/email.tsx +0 -203
- package/components/MFA/core/face.tsx +0 -297
- package/components/MFA/core/face_deps.tsx +0 -37
- package/components/MFA/core/sms.tsx +0 -203
- package/components/MFA/core/totp.tsx +0 -122
- package/components/MFA/index.tsx +0 -143
- package/components/MFA/mfaMethods/index.tsx +0 -88
- package/components/MFA/mfaMethods/style.less +0 -39
- package/components/MFA/props.ts +0 -51
- package/components/MFA/styles.less +0 -100
- package/components/NeedHelpView/core/describeQuestions.tsx +0 -245
- package/components/NeedHelpView/index.tsx +0 -47
- package/components/RecoveryCode/core/useCode.tsx +0 -71
- package/components/RecoveryCode/index.tsx +0 -27
- package/components/RecoveryCode/interface.ts +0 -31
- package/components/RecoveryCode/style.less +0 -13
- package/components/Register/codemap.ts +0 -12
- package/components/Register/components/Agreements/index.tsx +0 -81
- package/components/Register/components/Agreements/style.less +0 -44
- package/components/Register/core/WithEmail.tsx +0 -242
- package/components/Register/core/WithPhone.tsx +0 -184
- package/components/Register/index.tsx +0 -139
- package/components/Register/props.ts +0 -50
- package/components/SendCode/SendCodeBtn.tsx +0 -96
- package/components/SendCode/index.tsx +0 -94
- package/components/SendCode/style.less +0 -31
- package/components/ShieldSpin/index.tsx +0 -27
- package/components/ShieldSpin/loading.svg +0 -29
- package/components/SubmitButton/index.tsx +0 -50
- package/components/SubmitSuccess/index.tsx +0 -66
- package/components/SubmitSuccess/interface.ts +0 -17
- package/components/Type/index.ts +0 -52
- package/components/ValidatorRules/ValidatorFormItem.tsx +0 -139
- package/components/ValidatorRules/index.ts +0 -20
- package/components/_utils/GuardErrorCode.ts +0 -9
- package/components/_utils/config.ts +0 -116
- package/components/_utils/guradHttp.ts +0 -101
- package/components/_utils/hooks/index.ts +0 -64
- package/components/assets/images/error.png +0 -0
- package/components/context/module/context.tsx +0 -23
- package/components/index.ts +0 -12
- package/examples.tsx +0 -87
- package/index.js +0 -1
- package/lib/static/media/loading.4a67a5f3.svg +0 -29
- package/scripts/publish.js +0 -57
|
@@ -1,203 +0,0 @@
|
|
|
1
|
-
import { UserOutlined } from '@ant-design/icons'
|
|
2
|
-
import { message } from 'antd'
|
|
3
|
-
import { Form } from 'antd'
|
|
4
|
-
import { User } from 'authing-js-sdk'
|
|
5
|
-
import React, { useRef, useState } from 'react'
|
|
6
|
-
import { useTranslation } from 'react-i18next'
|
|
7
|
-
import { VerifyCodeInput } from '../VerifyCodeInput'
|
|
8
|
-
import { useAuthClient } from '../../Guard/authClient'
|
|
9
|
-
import { SendCodeBtn } from '../../SendCode/SendCodeBtn'
|
|
10
|
-
import SubmitButton from '../../SubmitButton'
|
|
11
|
-
import { ICheckProps, PhoneFormItem } from '../../ValidatorRules'
|
|
12
|
-
import { VerifyCodeFormItem } from '../VerifyCodeInput/VerifyCodeFormItem'
|
|
13
|
-
import { MFAConfig } from '../props'
|
|
14
|
-
import { InputNumber } from '../../InputNumber'
|
|
15
|
-
export interface BindMFASmsProps {
|
|
16
|
-
mfaToken: string
|
|
17
|
-
onBind: (phone: string) => void
|
|
18
|
-
config: any
|
|
19
|
-
}
|
|
20
|
-
|
|
21
|
-
export const BindMFASms: React.FC<BindMFASmsProps> = ({
|
|
22
|
-
mfaToken,
|
|
23
|
-
onBind,
|
|
24
|
-
config,
|
|
25
|
-
}) => {
|
|
26
|
-
const submitButtonRef = useRef<any>(null)
|
|
27
|
-
const { t } = useTranslation()
|
|
28
|
-
const [form] = Form.useForm()
|
|
29
|
-
|
|
30
|
-
const ref = useRef<ICheckProps>(null)
|
|
31
|
-
const onFinish = async ({ phone }: any) => {
|
|
32
|
-
submitButtonRef.current.onSpin(true)
|
|
33
|
-
await form.validateFields()
|
|
34
|
-
try {
|
|
35
|
-
onBind(phone)
|
|
36
|
-
} catch (e) {
|
|
37
|
-
// do nothing
|
|
38
|
-
submitButtonRef.current?.onError()
|
|
39
|
-
} finally {
|
|
40
|
-
submitButtonRef.current?.onSpin(false)
|
|
41
|
-
}
|
|
42
|
-
}
|
|
43
|
-
|
|
44
|
-
return (
|
|
45
|
-
<>
|
|
46
|
-
<h3 className="authing-g2-mfa-title">{t('common.bindPhone')}</h3>
|
|
47
|
-
<p className="authing-g2-mfa-tips">{t('login.bindPhoneInfo')}</p>
|
|
48
|
-
<Form
|
|
49
|
-
form={form}
|
|
50
|
-
onFinish={onFinish}
|
|
51
|
-
onFinishFailed={() => submitButtonRef.current.onError()}
|
|
52
|
-
onValuesChange={(values) => {
|
|
53
|
-
ref.current?.check(values)
|
|
54
|
-
}}
|
|
55
|
-
>
|
|
56
|
-
<PhoneFormItem
|
|
57
|
-
className="authing-g2-input-form"
|
|
58
|
-
name="phone"
|
|
59
|
-
userPoolId={config.__publicConfig__.userPoolId}
|
|
60
|
-
form={form}
|
|
61
|
-
ref={ref}
|
|
62
|
-
checkRepeat={true}
|
|
63
|
-
>
|
|
64
|
-
<InputNumber
|
|
65
|
-
className="authing-g2-input"
|
|
66
|
-
autoComplete="tel"
|
|
67
|
-
size="large"
|
|
68
|
-
placeholder={t('login.inputPhone')}
|
|
69
|
-
prefix={<UserOutlined style={{ color: '#878A95' }} />}
|
|
70
|
-
/>
|
|
71
|
-
</PhoneFormItem>
|
|
72
|
-
<SubmitButton text={t('common.sure')} ref={submitButtonRef} />
|
|
73
|
-
</Form>
|
|
74
|
-
</>
|
|
75
|
-
)
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
export interface VerifyMFASmsProps {
|
|
79
|
-
mfaToken: string
|
|
80
|
-
phone: string
|
|
81
|
-
onVerify: (code: number, data: any) => void
|
|
82
|
-
sendCodeRef: React.RefObject<HTMLButtonElement>
|
|
83
|
-
codeLength: number
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
export const VerifyMFASms: React.FC<VerifyMFASmsProps> = ({
|
|
87
|
-
mfaToken,
|
|
88
|
-
phone,
|
|
89
|
-
onVerify,
|
|
90
|
-
sendCodeRef,
|
|
91
|
-
codeLength = 4,
|
|
92
|
-
}) => {
|
|
93
|
-
const authClient = useAuthClient()
|
|
94
|
-
const submitButtonRef = useRef<any>(null)
|
|
95
|
-
const { t } = useTranslation()
|
|
96
|
-
const [form] = Form.useForm()
|
|
97
|
-
|
|
98
|
-
const [sent, setSent] = useState(false)
|
|
99
|
-
|
|
100
|
-
const onFinish = async (values: any) => {
|
|
101
|
-
submitButtonRef.current.onSpin(true)
|
|
102
|
-
const mfaCode = form.getFieldValue('mfaCode')
|
|
103
|
-
try {
|
|
104
|
-
const user: User = await authClient.mfa.verifyAppSmsMfa({
|
|
105
|
-
mfaToken,
|
|
106
|
-
phone: phone!,
|
|
107
|
-
code: mfaCode.join(''),
|
|
108
|
-
})
|
|
109
|
-
// TODO
|
|
110
|
-
onVerify(200, user)
|
|
111
|
-
} catch (e) {
|
|
112
|
-
const error = JSON.parse(e.message)
|
|
113
|
-
submitButtonRef.current.onError()
|
|
114
|
-
onVerify(error.code as number, error)
|
|
115
|
-
} finally {
|
|
116
|
-
submitButtonRef.current?.onSpin(false)
|
|
117
|
-
}
|
|
118
|
-
}
|
|
119
|
-
|
|
120
|
-
const sendVerifyCode = async () => {
|
|
121
|
-
try {
|
|
122
|
-
await authClient.sendSmsCode(phone!)
|
|
123
|
-
setSent(true)
|
|
124
|
-
return true
|
|
125
|
-
} catch (e) {
|
|
126
|
-
const errorMessage = JSON.parse(e.message)
|
|
127
|
-
message.error(errorMessage.message)
|
|
128
|
-
return false
|
|
129
|
-
}
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
return (
|
|
133
|
-
<>
|
|
134
|
-
<h3 className="authing-g2-mfa-title">{t('login.inputPhoneCode')}</h3>
|
|
135
|
-
<p className="authing-g2-mfa-tips">
|
|
136
|
-
{sent
|
|
137
|
-
? `${t('login.verifyCodeSended')} ${phone}`
|
|
138
|
-
: t('login.clickSent')}
|
|
139
|
-
</p>
|
|
140
|
-
<Form
|
|
141
|
-
form={form}
|
|
142
|
-
onFinish={onFinish}
|
|
143
|
-
onFinishFailed={() => submitButtonRef.current.onError()}
|
|
144
|
-
>
|
|
145
|
-
<VerifyCodeFormItem
|
|
146
|
-
codeLength={codeLength}
|
|
147
|
-
ruleKeyword={t('common.captchaCode')}
|
|
148
|
-
>
|
|
149
|
-
<VerifyCodeInput length={codeLength} />
|
|
150
|
-
</VerifyCodeFormItem>
|
|
151
|
-
|
|
152
|
-
<SendCodeBtn
|
|
153
|
-
btnRef={sendCodeRef}
|
|
154
|
-
beforeSend={() => sendVerifyCode()}
|
|
155
|
-
type="link"
|
|
156
|
-
/>
|
|
157
|
-
|
|
158
|
-
<SubmitButton
|
|
159
|
-
text={t('common.sure')}
|
|
160
|
-
ref={submitButtonRef}
|
|
161
|
-
className="g2-mfa-submit-button"
|
|
162
|
-
/>
|
|
163
|
-
</Form>
|
|
164
|
-
</>
|
|
165
|
-
)
|
|
166
|
-
}
|
|
167
|
-
|
|
168
|
-
export const MFASms: React.FC<{
|
|
169
|
-
mfaToken: string
|
|
170
|
-
phone?: string
|
|
171
|
-
mfaLogin: any
|
|
172
|
-
config: MFAConfig
|
|
173
|
-
}> = ({ phone: userPhone, mfaToken, mfaLogin, config }) => {
|
|
174
|
-
const [phone, setPhone] = useState(userPhone)
|
|
175
|
-
const sendCodeRef = useRef<HTMLButtonElement>(null)
|
|
176
|
-
|
|
177
|
-
const codeLength = config.__publicConfig__?.verifyCodeLength
|
|
178
|
-
|
|
179
|
-
return (
|
|
180
|
-
<>
|
|
181
|
-
{phone ? (
|
|
182
|
-
<VerifyMFASms
|
|
183
|
-
mfaToken={mfaToken}
|
|
184
|
-
phone={phone}
|
|
185
|
-
onVerify={(code, data) => {
|
|
186
|
-
mfaLogin(code, data)
|
|
187
|
-
}}
|
|
188
|
-
codeLength={codeLength ?? 4}
|
|
189
|
-
sendCodeRef={sendCodeRef}
|
|
190
|
-
/>
|
|
191
|
-
) : (
|
|
192
|
-
<BindMFASms
|
|
193
|
-
config={config}
|
|
194
|
-
mfaToken={mfaToken}
|
|
195
|
-
onBind={(phone: string) => {
|
|
196
|
-
setPhone(phone)
|
|
197
|
-
sendCodeRef.current?.click()
|
|
198
|
-
}}
|
|
199
|
-
/>
|
|
200
|
-
)}
|
|
201
|
-
</>
|
|
202
|
-
)
|
|
203
|
-
}
|
|
@@ -1,122 +0,0 @@
|
|
|
1
|
-
import { Form } from 'antd'
|
|
2
|
-
import React, { useRef } from 'react'
|
|
3
|
-
import { useTranslation } from 'react-i18next'
|
|
4
|
-
import { useAsyncFn } from 'react-use'
|
|
5
|
-
import { GuardModuleType } from '../../Guard/module'
|
|
6
|
-
import { useGuardHttp } from '../../_utils/guradHttp'
|
|
7
|
-
import { GuardMFAInitData, MFAConfig } from '../props'
|
|
8
|
-
import { message as Message } from 'antd'
|
|
9
|
-
import SubmitButton from '../../SubmitButton'
|
|
10
|
-
import { VerifyCodeFormItem } from '../VerifyCodeInput/VerifyCodeFormItem'
|
|
11
|
-
import { VerifyCodeInput } from '../VerifyCodeInput'
|
|
12
|
-
export interface BindMFATotpProps {
|
|
13
|
-
initData: GuardMFAInitData
|
|
14
|
-
changeModule: any
|
|
15
|
-
}
|
|
16
|
-
|
|
17
|
-
export const BindMFATotp: React.FC<BindMFATotpProps> = ({
|
|
18
|
-
changeModule,
|
|
19
|
-
initData,
|
|
20
|
-
}) => {
|
|
21
|
-
const { t } = useTranslation()
|
|
22
|
-
|
|
23
|
-
const next = () => changeModule(GuardModuleType.BIND_TOTP, initData)
|
|
24
|
-
return (
|
|
25
|
-
<>
|
|
26
|
-
<p className="authing-g2-mfa-title">{t('common.bindTotp')}</p>
|
|
27
|
-
<p className="authing-g2-mfa-tips">{t('common.otpText1')}</p>
|
|
28
|
-
<SubmitButton
|
|
29
|
-
text={t('common.sure')}
|
|
30
|
-
onClick={next}
|
|
31
|
-
className="g2-mfa-submit-button bind-totp"
|
|
32
|
-
/>
|
|
33
|
-
</>
|
|
34
|
-
)
|
|
35
|
-
}
|
|
36
|
-
|
|
37
|
-
export interface VerifyMFATotpProps {
|
|
38
|
-
mfaToken: string
|
|
39
|
-
mfaLogin: any
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
export const VerifyMFATotp: React.FC<VerifyMFATotpProps> = ({
|
|
43
|
-
mfaToken,
|
|
44
|
-
mfaLogin,
|
|
45
|
-
}) => {
|
|
46
|
-
const { t } = useTranslation()
|
|
47
|
-
const [form] = Form.useForm()
|
|
48
|
-
|
|
49
|
-
const submitButtonRef = useRef<any>(null)
|
|
50
|
-
|
|
51
|
-
const { post } = useGuardHttp()
|
|
52
|
-
|
|
53
|
-
const [, onFinish] = useAsyncFn(async () => {
|
|
54
|
-
submitButtonRef.current.onSpin(true)
|
|
55
|
-
|
|
56
|
-
const mfaCode = form.getFieldValue('mfaCode')
|
|
57
|
-
try {
|
|
58
|
-
const { code, data, message } = await post(
|
|
59
|
-
'/api/v2/mfa/totp/verify',
|
|
60
|
-
{
|
|
61
|
-
totp: mfaCode.join(''),
|
|
62
|
-
},
|
|
63
|
-
{
|
|
64
|
-
headers: {
|
|
65
|
-
authorization: mfaToken,
|
|
66
|
-
},
|
|
67
|
-
}
|
|
68
|
-
)
|
|
69
|
-
|
|
70
|
-
if (code !== 200) {
|
|
71
|
-
mfaLogin(200, message)
|
|
72
|
-
Message.error(message)
|
|
73
|
-
} else {
|
|
74
|
-
mfaLogin(200, data)
|
|
75
|
-
}
|
|
76
|
-
} finally {
|
|
77
|
-
submitButtonRef.current.onSpin(false)
|
|
78
|
-
}
|
|
79
|
-
}, [mfaToken])
|
|
80
|
-
|
|
81
|
-
return (
|
|
82
|
-
<>
|
|
83
|
-
<p className="authing-g2-mfa-title">{t('login.accPwdLoginVerify')}</p>
|
|
84
|
-
<p className="authing-g2-mfa-tips">{t('login.inputSixCode')}</p>
|
|
85
|
-
<Form
|
|
86
|
-
form={form}
|
|
87
|
-
onSubmitCapture={() => {}}
|
|
88
|
-
onFinish={onFinish}
|
|
89
|
-
onFinishFailed={() => submitButtonRef.current.onError()}
|
|
90
|
-
>
|
|
91
|
-
<VerifyCodeFormItem codeLength={6}>
|
|
92
|
-
<VerifyCodeInput length={6} showDivider={true} gutter={'10px'} />
|
|
93
|
-
</VerifyCodeFormItem>
|
|
94
|
-
|
|
95
|
-
<SubmitButton text={t('common.sure')} ref={submitButtonRef} />
|
|
96
|
-
</Form>
|
|
97
|
-
</>
|
|
98
|
-
)
|
|
99
|
-
}
|
|
100
|
-
|
|
101
|
-
export interface MFATotpProps {
|
|
102
|
-
changeModule: any
|
|
103
|
-
config: MFAConfig
|
|
104
|
-
initData: GuardMFAInitData
|
|
105
|
-
mfaLogin: any
|
|
106
|
-
}
|
|
107
|
-
|
|
108
|
-
export const MFATotp: React.FC<MFATotpProps> = ({
|
|
109
|
-
changeModule,
|
|
110
|
-
initData,
|
|
111
|
-
mfaLogin,
|
|
112
|
-
}) => {
|
|
113
|
-
return (
|
|
114
|
-
<>
|
|
115
|
-
{initData.totpMfaEnabled ? (
|
|
116
|
-
<VerifyMFATotp mfaToken={initData.mfaToken} mfaLogin={mfaLogin} />
|
|
117
|
-
) : (
|
|
118
|
-
<BindMFATotp initData={initData} changeModule={changeModule} />
|
|
119
|
-
)}
|
|
120
|
-
</>
|
|
121
|
-
)
|
|
122
|
-
}
|
package/components/MFA/index.tsx
DELETED
|
@@ -1,143 +0,0 @@
|
|
|
1
|
-
import React, { useState } from 'react'
|
|
2
|
-
import { useTranslation } from 'react-i18next'
|
|
3
|
-
import { GuardModuleType } from '../Guard/module'
|
|
4
|
-
import { IconFont } from '../IconFont'
|
|
5
|
-
import { MFAEmail } from './core/email'
|
|
6
|
-
import { MFASms } from './core/sms'
|
|
7
|
-
import { MFAFace } from './core/face'
|
|
8
|
-
import { MFATotp } from './core/totp'
|
|
9
|
-
import { MFAMethods } from './mfaMethods'
|
|
10
|
-
import { GuardMFAViewProps, MFAType } from './props'
|
|
11
|
-
import { useAuthClient } from '../Guard/authClient'
|
|
12
|
-
import { codeMap } from './codemap'
|
|
13
|
-
import './styles.less'
|
|
14
|
-
import { message } from 'antd'
|
|
15
|
-
const window: Window = require('global/window')
|
|
16
|
-
|
|
17
|
-
const ComponentsMapping: Record<MFAType, (props: any) => React.ReactNode> = {
|
|
18
|
-
[MFAType.EMAIL]: ({ config, initData, mfaLogin }) => (
|
|
19
|
-
<MFAEmail
|
|
20
|
-
config={config}
|
|
21
|
-
mfaToken={initData.mfaToken}
|
|
22
|
-
email={initData.email}
|
|
23
|
-
mfaLogin={mfaLogin}
|
|
24
|
-
/>
|
|
25
|
-
),
|
|
26
|
-
[MFAType.SMS]: ({ config, initData, mfaLogin }) => (
|
|
27
|
-
<MFASms
|
|
28
|
-
config={config}
|
|
29
|
-
mfaToken={initData.mfaToken}
|
|
30
|
-
phone={initData.phone}
|
|
31
|
-
mfaLogin={mfaLogin}
|
|
32
|
-
/>
|
|
33
|
-
),
|
|
34
|
-
[MFAType.TOTP]: ({ initData, config, changeModule, mfaLogin }) => (
|
|
35
|
-
<MFATotp
|
|
36
|
-
changeModule={changeModule}
|
|
37
|
-
config={config}
|
|
38
|
-
initData={initData}
|
|
39
|
-
mfaLogin={mfaLogin}
|
|
40
|
-
/>
|
|
41
|
-
),
|
|
42
|
-
[MFAType.FACE]: ({ config, initData, mfaLogin, setShowMethods }) => (
|
|
43
|
-
<MFAFace
|
|
44
|
-
config={config}
|
|
45
|
-
initData={initData}
|
|
46
|
-
mfaLogin={mfaLogin}
|
|
47
|
-
setShowMethods={setShowMethods}
|
|
48
|
-
/>
|
|
49
|
-
),
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
export const GuardMFAView: React.FC<GuardMFAViewProps> = ({
|
|
53
|
-
initData,
|
|
54
|
-
config,
|
|
55
|
-
__changeModule,
|
|
56
|
-
onLogin,
|
|
57
|
-
}) => {
|
|
58
|
-
const [currentMethod, setCurrentMethod] = useState(
|
|
59
|
-
initData.current ??
|
|
60
|
-
initData.applicationMfa?.sort((a, b) => a.sort - b.sort)[0].mfaPolicy
|
|
61
|
-
)
|
|
62
|
-
const [showMethods, setShowMethods] = useState(true)
|
|
63
|
-
const client = useAuthClient()
|
|
64
|
-
const { t } = useTranslation()
|
|
65
|
-
|
|
66
|
-
const onBack = () => window.history.back()
|
|
67
|
-
|
|
68
|
-
const __codePaser = (code: number) => {
|
|
69
|
-
const action = codeMap[code]
|
|
70
|
-
if (code === 200) {
|
|
71
|
-
return (data: any) => {
|
|
72
|
-
onLogin?.(data, client) // 登录成功
|
|
73
|
-
}
|
|
74
|
-
}
|
|
75
|
-
|
|
76
|
-
if (!action) {
|
|
77
|
-
return () => {
|
|
78
|
-
console.error('not catch code', code)
|
|
79
|
-
// props.onLoginError?.(data, client) // 未捕获 code
|
|
80
|
-
}
|
|
81
|
-
}
|
|
82
|
-
|
|
83
|
-
// 解析成功
|
|
84
|
-
if (action?.action === 'changeModule') {
|
|
85
|
-
let m = action.module ? action.module : GuardModuleType.ERROR
|
|
86
|
-
return (initData?: any) => __changeModule?.(m, initData)
|
|
87
|
-
}
|
|
88
|
-
if (action?.action === 'insideFix') {
|
|
89
|
-
return () => {}
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
if (action?.action === 'message') {
|
|
93
|
-
return (data: any) => {
|
|
94
|
-
message.error(data.message)
|
|
95
|
-
}
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
// 最终结果
|
|
99
|
-
return () => {
|
|
100
|
-
// props.onLoginError?.(data, client!) // 未捕获 code
|
|
101
|
-
console.error('last action at mfaview')
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
|
|
105
|
-
const mfaLogin = (code: any, data: any, message?: string) => {
|
|
106
|
-
const callback = __codePaser?.(code)
|
|
107
|
-
|
|
108
|
-
if (!data) {
|
|
109
|
-
data = {}
|
|
110
|
-
}
|
|
111
|
-
data.__message = message
|
|
112
|
-
callback?.(data)
|
|
113
|
-
}
|
|
114
|
-
|
|
115
|
-
return (
|
|
116
|
-
<div className="g2-view-container">
|
|
117
|
-
<div className="g2-view-back">
|
|
118
|
-
<span onClick={onBack}>
|
|
119
|
-
<IconFont type="authing-back" />
|
|
120
|
-
<span>{t('common.backLoginPage')}</span>
|
|
121
|
-
</span>
|
|
122
|
-
</div>
|
|
123
|
-
<div className="g2-mfa-content">
|
|
124
|
-
{ComponentsMapping[currentMethod]({
|
|
125
|
-
config: config,
|
|
126
|
-
initData: initData,
|
|
127
|
-
changeModule: __changeModule,
|
|
128
|
-
mfaLogin: mfaLogin,
|
|
129
|
-
setShowMethods: setShowMethods,
|
|
130
|
-
})}
|
|
131
|
-
</div>
|
|
132
|
-
{showMethods && (
|
|
133
|
-
<MFAMethods
|
|
134
|
-
applicationMfa={initData.applicationMfa}
|
|
135
|
-
method={currentMethod}
|
|
136
|
-
onChangeMethod={(type) => {
|
|
137
|
-
setCurrentMethod(type)
|
|
138
|
-
}}
|
|
139
|
-
/>
|
|
140
|
-
)}
|
|
141
|
-
</div>
|
|
142
|
-
)
|
|
143
|
-
}
|
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
import React, { useMemo, useState } from 'react'
|
|
2
|
-
import { useTranslation } from 'react-i18next'
|
|
3
|
-
import { Button } from 'antd'
|
|
4
|
-
import { IconFont } from '../../IconFont'
|
|
5
|
-
import { GuardMFAInitData, MFAType } from '../props'
|
|
6
|
-
import { i18n } from '../../_utils/locales'
|
|
7
|
-
import './style.less'
|
|
8
|
-
|
|
9
|
-
export interface MFAMethodsProps {
|
|
10
|
-
applicationMfa: GuardMFAInitData['applicationMfa']
|
|
11
|
-
method: MFAType
|
|
12
|
-
onChangeMethod: (type: MFAType) => void
|
|
13
|
-
}
|
|
14
|
-
|
|
15
|
-
const methodTitleMapping: Record<
|
|
16
|
-
MFAType,
|
|
17
|
-
{
|
|
18
|
-
title: () => string
|
|
19
|
-
icon: string
|
|
20
|
-
}
|
|
21
|
-
> = {
|
|
22
|
-
[MFAType.EMAIL]: {
|
|
23
|
-
title: () => i18n.t('common.EmailVerification'),
|
|
24
|
-
icon: 'authing-mail',
|
|
25
|
-
},
|
|
26
|
-
[MFAType.SMS]: {
|
|
27
|
-
title: () => i18n.t('common.SMS'),
|
|
28
|
-
icon: 'authing-phone',
|
|
29
|
-
},
|
|
30
|
-
[MFAType.TOTP]: {
|
|
31
|
-
title: () => i18n.t('common.OTPVerification'),
|
|
32
|
-
icon: 'authing-totp',
|
|
33
|
-
},
|
|
34
|
-
[MFAType.FACE]: {
|
|
35
|
-
title: () => i18n.t('common.faceVerification'),
|
|
36
|
-
icon: 'authing-face',
|
|
37
|
-
},
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
export const MFAMethods: React.FC<MFAMethodsProps> = ({
|
|
41
|
-
applicationMfa = [],
|
|
42
|
-
method,
|
|
43
|
-
onChangeMethod,
|
|
44
|
-
}) => {
|
|
45
|
-
const [currentMethod, setCurrentMethod] = useState(method)
|
|
46
|
-
const { t } = useTranslation()
|
|
47
|
-
|
|
48
|
-
const otherMethods = useMemo(
|
|
49
|
-
() =>
|
|
50
|
-
applicationMfa
|
|
51
|
-
.filter((item) => item.mfaPolicy !== currentMethod)
|
|
52
|
-
.sort((a, b) => a.sort - b.sort)
|
|
53
|
-
.map((item) => (
|
|
54
|
-
<Button
|
|
55
|
-
className="g2-guard-mfa-methods-btn"
|
|
56
|
-
onClick={(e) => {
|
|
57
|
-
onChangeMethod(item.mfaPolicy)
|
|
58
|
-
setCurrentMethod(item.mfaPolicy)
|
|
59
|
-
}}
|
|
60
|
-
key={item.mfaPolicy}
|
|
61
|
-
>
|
|
62
|
-
<IconFont type={methodTitleMapping[item.mfaPolicy].icon} />
|
|
63
|
-
{`${methodTitleMapping[item.mfaPolicy].title()}`}
|
|
64
|
-
</Button>
|
|
65
|
-
)),
|
|
66
|
-
[applicationMfa, currentMethod, onChangeMethod]
|
|
67
|
-
)
|
|
68
|
-
|
|
69
|
-
return (
|
|
70
|
-
<>
|
|
71
|
-
{otherMethods.length !== 0 && (
|
|
72
|
-
<>
|
|
73
|
-
<div
|
|
74
|
-
style={{
|
|
75
|
-
minHeight: 32,
|
|
76
|
-
}}
|
|
77
|
-
/>
|
|
78
|
-
<div className="g2-mfa-method">
|
|
79
|
-
<div className="g2-mfa-method-title">
|
|
80
|
-
{t('login.otherVerifyWay')}
|
|
81
|
-
</div>
|
|
82
|
-
{otherMethods}
|
|
83
|
-
</div>
|
|
84
|
-
</>
|
|
85
|
-
)}
|
|
86
|
-
</>
|
|
87
|
-
)
|
|
88
|
-
}
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
.g2-mfa-method {
|
|
2
|
-
padding: 0 38px;
|
|
3
|
-
}
|
|
4
|
-
|
|
5
|
-
.g2-mfa-method-title {
|
|
6
|
-
text-align: center;
|
|
7
|
-
font-size: 14px;
|
|
8
|
-
color: #c8c9cc;
|
|
9
|
-
margin-bottom: 8px;
|
|
10
|
-
width: 100%;
|
|
11
|
-
}
|
|
12
|
-
|
|
13
|
-
.g2-mfa-method-title::before,
|
|
14
|
-
.g2-mfa-method-title::after {
|
|
15
|
-
content: '——';
|
|
16
|
-
color: #eeeeee;
|
|
17
|
-
margin: 0 11px;
|
|
18
|
-
}
|
|
19
|
-
|
|
20
|
-
.g2-guard-mfa-methods-btn {
|
|
21
|
-
border: none !important;
|
|
22
|
-
background-color: #f5f6f7 !important;
|
|
23
|
-
border-radius: 4px !important;
|
|
24
|
-
color: #282d3c !important;
|
|
25
|
-
font-size: 14px !important;
|
|
26
|
-
height: 49px !important;
|
|
27
|
-
margin-top: 8px !important;
|
|
28
|
-
width: 100%;
|
|
29
|
-
|
|
30
|
-
justify-content: center;
|
|
31
|
-
align-items: center;
|
|
32
|
-
|
|
33
|
-
font-size: 14px;
|
|
34
|
-
|
|
35
|
-
.g2-icon {
|
|
36
|
-
font-size: 16px;
|
|
37
|
-
margin-right: 8px;
|
|
38
|
-
}
|
|
39
|
-
}
|
package/components/MFA/props.ts
DELETED
|
@@ -1,51 +0,0 @@
|
|
|
1
|
-
import { getDefaultG2Config, IG2Config, IG2Events, IG2FCProps } from '../Type'
|
|
2
|
-
import { AuthenticationClient, User } from '..'
|
|
3
|
-
|
|
4
|
-
export interface MFAConfig extends IG2Config {}
|
|
5
|
-
|
|
6
|
-
const defaultConfig: MFAConfig = {
|
|
7
|
-
...getDefaultG2Config(),
|
|
8
|
-
}
|
|
9
|
-
|
|
10
|
-
export const getDefaultMFAConfig = (): MFAConfig => ({
|
|
11
|
-
...getDefaultG2Config(),
|
|
12
|
-
...defaultConfig,
|
|
13
|
-
})
|
|
14
|
-
|
|
15
|
-
export interface MFAEvents extends IG2Events {
|
|
16
|
-
onLogin?: (user: User, authClient: AuthenticationClient) => void
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
export enum MFAType {
|
|
20
|
-
SMS = 'SMS',
|
|
21
|
-
EMAIL = 'EMAIL',
|
|
22
|
-
TOTP = 'OTP',
|
|
23
|
-
FACE = 'FACE',
|
|
24
|
-
}
|
|
25
|
-
|
|
26
|
-
export interface GuardMFAInitData {
|
|
27
|
-
mfaToken: string
|
|
28
|
-
applicationMfa: {
|
|
29
|
-
mfaPolicy: MFAType
|
|
30
|
-
sort: number
|
|
31
|
-
status: 0 | 1
|
|
32
|
-
}[]
|
|
33
|
-
faceMfaEnabled: boolean
|
|
34
|
-
totpMfaEnabled: boolean
|
|
35
|
-
email?: string
|
|
36
|
-
phone?: string
|
|
37
|
-
avatar?: string
|
|
38
|
-
nickme?: string
|
|
39
|
-
username?: string
|
|
40
|
-
current?: MFAType
|
|
41
|
-
}
|
|
42
|
-
|
|
43
|
-
export interface GuardMFAProps extends IG2FCProps, MFAEvents {
|
|
44
|
-
config: Partial<MFAConfig>
|
|
45
|
-
initData: GuardMFAInitData
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
export interface GuardMFAViewProps extends GuardMFAProps {
|
|
49
|
-
config: MFAConfig
|
|
50
|
-
initData: GuardMFAInitData
|
|
51
|
-
}
|