// Copyright 2021 The Casdoor Authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. import {Button, Col, Input, Modal, Row} from "antd"; import React from "react"; import i18next from "i18next"; import * as UserBackend from "../backend/UserBackend"; import {SafetyOutlined} from "@ant-design/icons"; import {authConfig} from "../auth/Auth"; import {CaptchaWidget} from "./CaptchaWidget"; const {Search} = Input; export const CountDownInput = (props) => { const {disabled, textBefore, onChange, onButtonClickArgs} = props; const [visible, setVisible] = React.useState(false); const [key, setKey] = React.useState(""); const [captchaImg, setCaptchaImg] = React.useState(""); const [checkType, setCheckType] = React.useState(""); const [checkId, setCheckId] = React.useState(""); const [buttonLeftTime, setButtonLeftTime] = React.useState(0); const [buttonLoading, setButtonLoading] = React.useState(false); const [buttonDisabled, setButtonDisabled] = React.useState(true); const [clientId, setClientId] = React.useState(""); const [subType, setSubType] = React.useState(""); const [clientId2, setClientId2] = React.useState(""); const [clientSecret2, setClientSecret2] = React.useState(""); const handleCountDown = (leftTime = 60) => { let leftTimeSecond = leftTime; setButtonLeftTime(leftTimeSecond); const countDown = () => { leftTimeSecond--; setButtonLeftTime(leftTimeSecond); if (leftTimeSecond === 0) { return; } setTimeout(countDown, 1000); }; setTimeout(countDown, 1000); }; const handleOk = () => { setVisible(false); setButtonLoading(true); UserBackend.sendCode(checkType, checkId, key, ...onButtonClickArgs).then(res => { setKey(""); setButtonLoading(false); if (res) { handleCountDown(60); } }); }; const handleCancel = () => { setVisible(false); setKey(""); }; const loadCaptcha = () => { UserBackend.getCaptcha("admin", authConfig.appName, false).then(res => { if (res.type === "none") { UserBackend.sendCode("none", "", "", ...onButtonClickArgs).then(res => { if (res) { handleCountDown(60); } }); } else if (res.type === "Default") { setCheckId(res.captchaId); setCaptchaImg(res.captchaImage); setCheckType("Default"); setVisible(true); } else { setCheckType(res.type); setClientId(res.clientId); setCheckId(res.clientSecret); setVisible(true); setSubType(res.subType); setClientId2(res.clientId2); setClientSecret2(res.clientSecret2); } }); }; const renderCaptcha = () => { return ( } placeholder={i18next.t("general:Captcha")} onPressEnter={handleOk} onChange={e => setKey(e.target.value)} /> ); }; const onSubmit = (token) => { setButtonDisabled(false); setKey(token); }; const renderCheck = () => { if (checkType === "Default") { return renderCaptcha(); } else { return ( ); } }; return ( } placeholder={i18next.t("code:Enter your code")} onChange={e => onChange(e.target.value)} enterButton={ } onSearch={loadCaptcha} /> { renderCheck() } ); };