-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
27d9f08
commit 08f2d08
Showing
2 changed files
with
188 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
import React, { useState, useEffect } from "react"; | ||
import { sendSMSAPI, checkSMSAPI } from '@/apis/sms'; | ||
import Container from '@/styles/PhoneCheck'; | ||
|
||
|
||
interface PhoneCheckProps { | ||
setCheck : (value: boolean) => void; | ||
tel : string; | ||
setTel : (value : string) => void; | ||
} | ||
|
||
const PhoneCheck : React.FC<PhoneCheckProps> = ({setCheck, tel, setTel}) => { | ||
const [certifyNum, setCertifyNum] = useState(''); | ||
const [token, setToken] = useState(''); | ||
|
||
const [time, setTime] = useState(5 * 60); // 초 단위 | ||
|
||
const [isCheck, SetIsCheck] = useState(false); | ||
const [isSend, setIsSend] = useState(false); | ||
const [isCertify, setIsCertify] = useState(false); | ||
const [isTel, setIsTel] = useState(false); | ||
const [isTimer, setIsTimer] = useState(false); | ||
const [isSuccess, setIsSuccess] = useState(false); | ||
|
||
useEffect(() => { | ||
if (isTimer) { | ||
const intervalId = setInterval(() => { | ||
setTime(prevTime => { | ||
if (prevTime <= 1) { | ||
clearInterval(intervalId); | ||
setIsTimer(false); | ||
return 0; | ||
} else { | ||
return prevTime - 1; | ||
} | ||
}); | ||
}, 1000); | ||
|
||
return () => clearInterval(intervalId); | ||
} | ||
}, [isTimer]); | ||
|
||
const onChangeCertifyInput = (e : React.ChangeEvent<HTMLInputElement>) => { | ||
const certifyRegex = /^\d{7}$/; | ||
setCertifyNum(e.target.value); | ||
if(certifyRegex.test(e.target.value)){ | ||
setIsCertify(true); | ||
} else { | ||
setIsCertify(false); | ||
} | ||
} | ||
const onChangeTel = (e: React.ChangeEvent<HTMLInputElement>) => { | ||
const telRegex = /^01(?:0|1|[6-9])(?:\d{3}|\d{4})\d{4}$/; | ||
const telCurrent = e.target.value; | ||
setTel(telCurrent); | ||
|
||
if (!telRegex.test(telCurrent)) { | ||
setIsTel(false); | ||
} else { | ||
setIsTel(true); | ||
} | ||
} | ||
|
||
const handleCheckCertify = async () => { | ||
setIsTimer(false); | ||
SetIsCheck(true); | ||
const response = (await checkSMSAPI({ | ||
verification_code : Number(certifyNum), | ||
}, token)) | ||
if(response.data.success){ | ||
setIsSuccess(true); | ||
setCheck(true); | ||
} else { | ||
setIsSuccess(false); | ||
} | ||
} | ||
|
||
const handleCertifyNum = async () => { | ||
setIsSend(true) | ||
setIsTimer(true); | ||
if(isSend){ | ||
SetIsCheck(false); | ||
setTime(10); | ||
} | ||
const response = (await sendSMSAPI({ | ||
phone_number : tel | ||
})) | ||
|
||
if(response.data.success){ | ||
setToken(response.data.result.token); | ||
} | ||
} | ||
|
||
const minutes = Math.floor(time / 60); // 분 | ||
const seconds = time % 60; | ||
|
||
return( | ||
<Container> | ||
<div className="label">전화번호</div> | ||
<div className="inputwrap"> | ||
<input | ||
type="text" | ||
id="tel" | ||
name="tel" | ||
value={tel} | ||
placeholder="휴대폰 번호 입력 (-제외)" | ||
onChange={onChangeTel} | ||
style={{width : '326px'}} | ||
readOnly={isSuccess} | ||
/> | ||
<button onClick = {handleCertifyNum} disabled = {!isTel || isSuccess}>{isSend? '인증번호 재전송':'인증번호 전송'}</button> | ||
</div> | ||
{isSend ? <div className="inputwrap"> | ||
<input | ||
type='text' | ||
id='certify' | ||
value={certifyNum} | ||
placeholder='인증번호 입력' | ||
onChange={(e) => onChangeCertifyInput(e)} | ||
style={{width : '326px'}} | ||
readOnly={isSuccess}/> | ||
<button onClick = {handleCheckCertify} disabled = {time <= 0 || !isCertify || isSuccess}>인증번호 확인</button> | ||
</div>: ''} | ||
{isSend && (isCheck === false) && <span className="msg">인증번호가 발송되었어요 (유효시간 {minutes}:{seconds})</span>} | ||
{isCheck === true && <span className="msg" style={{color : isSuccess ? '#3681FE' : '#FF3A4A'}}>{isSuccess ? '인증되었습니다' : '인증번호를 다시 확인해주세요'}</span>} | ||
</Container> | ||
); | ||
} | ||
|
||
export default PhoneCheck; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
import styled from "styled-components"; | ||
import theme from "./theme"; | ||
|
||
const Cotainer = styled.div` | ||
width : 494px; | ||
display : flex; | ||
flex-direction : column; | ||
gap : 5px; | ||
& div.label { | ||
color : ${theme.color.gray400}; | ||
${theme.typography.Body1}; | ||
} | ||
& input { | ||
width : 326px; | ||
height : 56px; | ||
padding: 0px 0px 0px 20px; | ||
border : 1.5px solid ${theme.color.gray200}; | ||
border-radius : 12px; | ||
outline : none; | ||
color : ${theme.color.gray500}; | ||
${theme.typography.Body1}; | ||
&:focus { | ||
border: 1.5px solid ${theme.color.gray500}; | ||
}; | ||
&:hover { | ||
border: 1.5px solid ${theme.color.gray500}; | ||
} | ||
&::placeholder { | ||
color : ${theme.color.gray300}; | ||
} | ||
} | ||
& button { | ||
width : 160px; | ||
height : 56px; | ||
background-color : ${theme.color.green400}; | ||
color : ${theme.color.gray500}; | ||
border : none; | ||
border-radius : 12px; | ||
${theme.typography.Body1}; | ||
&:disabled { | ||
background-color : ${theme.color.gray100}; | ||
color : ${theme.color.gray300}; | ||
} | ||
} | ||
& div.inputwrap { | ||
display : flex; | ||
gap : 10px; | ||
} | ||
& span.msg { | ||
margin-left : 10px; | ||
${theme.typography.Body3}; | ||
color : ${theme.color.red}; | ||
} | ||
`; | ||
|
||
|
||
|
||
export default Cotainer; |