183 lines
5.2 KiB
TypeScript
183 lines
5.2 KiB
TypeScript
import {
|
|
Box,
|
|
Typography,
|
|
TextField,
|
|
Button,
|
|
IconButton,
|
|
InputAdornment,
|
|
CircularProgress,
|
|
} from '@mui/material';
|
|
import { Edit2, TickCircle } from 'iconsax-react';
|
|
import { CountDownTimer } from '@/components/CountDownTimer';
|
|
import { CountryCodeSelector } from '../../CountryCodeSelector';
|
|
import { Icon } from '@rkheftan/harmony-ui';
|
|
import { type PhoneEditFormProps } from '@/features/profile/types/settingsType';
|
|
import { useRef } from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
|
|
export default function PhoneEditForm({
|
|
phoneNumber,
|
|
setPhoneNumber,
|
|
countryCode,
|
|
setCountryCode,
|
|
verificationCode,
|
|
setVerificationCode,
|
|
isVerified,
|
|
isVerifying,
|
|
isSendingCode,
|
|
buttonState,
|
|
setButtonState,
|
|
handleSendCode,
|
|
handleVerifyClick,
|
|
handleBlur,
|
|
phones,
|
|
phoneNumberError,
|
|
verificationCodeError,
|
|
}: PhoneEditFormProps) {
|
|
const { t } = useTranslation('setting');
|
|
|
|
const textFieldRef = useRef<HTMLDivElement>(null);
|
|
const inputRef = useRef<HTMLInputElement>(null);
|
|
|
|
return (
|
|
<Box sx={{ px: { sm: 4, xs: 2 }, my: 4 }}>
|
|
<Box sx={{ mb: 4 }}>
|
|
<Typography variant="h6">{t('settingForm.editPhoneNumber')}</Typography>
|
|
<Typography variant="body2" color="text.secondary">
|
|
{t('settingForm.phoneNumberText')}({phones.map((p) => p.withCode)})
|
|
{t('settingForm.verb')}
|
|
</Typography>
|
|
</Box>
|
|
<Box
|
|
sx={{
|
|
display: 'flex',
|
|
gap: 2,
|
|
alignItems: 'center',
|
|
flexDirection: { xs: 'column', sm: 'row' },
|
|
}}
|
|
>
|
|
<TextField
|
|
fullWidth
|
|
name="phoneNumber"
|
|
label={t('settingForm.newPhoneNumber')}
|
|
type="tel"
|
|
value={phoneNumber}
|
|
ref={textFieldRef}
|
|
inputRef={inputRef}
|
|
onBlur={() => handleBlur('phoneNumber')}
|
|
error={!!phoneNumberError}
|
|
helperText={phoneNumberError}
|
|
onChange={(e) => setPhoneNumber(e.target.value)}
|
|
placeholder="09123456789"
|
|
InputProps={{
|
|
endAdornment:
|
|
buttonState === 'counting' ? (
|
|
<InputAdornment position="end">
|
|
<IconButton
|
|
size="small"
|
|
onClick={() => {
|
|
setButtonState('default');
|
|
setPhoneNumber('');
|
|
setVerificationCode('');
|
|
}}
|
|
edge="end"
|
|
>
|
|
<Icon
|
|
Component={Edit2}
|
|
color="primary.main"
|
|
variant="Bold"
|
|
/>
|
|
</IconButton>
|
|
</InputAdornment>
|
|
) : (
|
|
<CountryCodeSelector
|
|
value={countryCode}
|
|
onChange={setCountryCode}
|
|
show={true}
|
|
menuAnchor={textFieldRef.current}
|
|
onCloseFocusRef={inputRef}
|
|
/>
|
|
),
|
|
}}
|
|
/>
|
|
|
|
{isVerified ? (
|
|
<Box
|
|
sx={{
|
|
display: 'flex',
|
|
alignItems: 'center',
|
|
gap: 1,
|
|
color: 'success.main',
|
|
}}
|
|
>
|
|
<Icon Component={TickCircle} />
|
|
<Typography>{t('settingForm.successButton')}</Typography>
|
|
</Box>
|
|
) : (
|
|
<Button
|
|
variant="text"
|
|
loading={isSendingCode}
|
|
onClick={handleSendCode}
|
|
sx={{
|
|
color: 'primary.main',
|
|
width: { xs: '100%', sm: 208 },
|
|
}}
|
|
>
|
|
{buttonState === 'counting' ? (
|
|
<CountDownTimer
|
|
initialSeconds={60}
|
|
onComplete={() => setButtonState('default')}
|
|
/>
|
|
) : (
|
|
t('settingForm.verificationCodeButton')
|
|
)}
|
|
</Button>
|
|
)}
|
|
</Box>
|
|
{/* buttonState === 'counting' && !isVerified && */}
|
|
{buttonState === 'counting' && !isVerified && (
|
|
<Box
|
|
sx={{
|
|
display: 'flex',
|
|
gap: 2,
|
|
alignItems: 'center',
|
|
flexDirection: { xs: 'column', sm: 'row' },
|
|
mb: 1,
|
|
}}
|
|
>
|
|
<TextField
|
|
fullWidth
|
|
name="verificationCode"
|
|
label={t('settingForm.verificationCode')}
|
|
type="tel"
|
|
value={verificationCode}
|
|
error={!!verificationCodeError}
|
|
helperText={verificationCodeError}
|
|
onBlur={() => handleBlur('verificationCode')}
|
|
onChange={(e) =>
|
|
setVerificationCode(e.target.value.replace(/\D/g, ''))
|
|
}
|
|
placeholder={t('settingForm.verificationCode')}
|
|
/>
|
|
|
|
<Button
|
|
variant="contained"
|
|
onClick={handleVerifyClick}
|
|
disabled={isVerifying || verificationCode.length === 0}
|
|
sx={{
|
|
bgcolor: 'primary.main',
|
|
width: { xs: '100%', sm: 200 },
|
|
}}
|
|
>
|
|
{isVerifying ? (
|
|
<CircularProgress size={20} />
|
|
) : (
|
|
t('settingForm.checkCode')
|
|
)}
|
|
</Button>
|
|
</Box>
|
|
)}
|
|
</Box>
|
|
);
|
|
}
|