2023-06-02 08:22:14 +00:00
|
|
|
|
import { Box, SxProps, Theme, Typography, useMediaQuery, useTheme } from "@mui/material";
|
2023-03-19 12:30:40 +00:00
|
|
|
|
import CustomButton from "@components/CustomButton";
|
|
|
|
|
import InputTextfield from "@components/InputTextfield";
|
|
|
|
|
import SectionWrapper from "@components/SectionWrapper";
|
2023-05-30 18:34:41 +00:00
|
|
|
|
import ComplexNavText from "@root/components/ComplexNavText";
|
2023-06-02 08:22:14 +00:00
|
|
|
|
import { openDocumentsDialog, sendUserData, setSettingsField, useUserStore } from "@root/stores/user";
|
|
|
|
|
import UnderlinedButtonWithIcon from "@root/components/UnderlinedButtonWithIcon";
|
|
|
|
|
import UploadIcon from "@root/components/icons/UploadIcon";
|
|
|
|
|
import DocumentsDialog from "./DocumentsDialog/DocumentsDialog";
|
|
|
|
|
import EyeIcon from "@root/components/icons/EyeIcon";
|
2023-06-16 19:04:59 +00:00
|
|
|
|
import { cardShadow } from "@root/utils/themes/shadow";
|
2023-06-24 18:17:43 +00:00
|
|
|
|
import { VerificationStatus } from "@root/model/account";
|
|
|
|
|
import { getMessageFromFetchError } from "@frontend/kitui";
|
|
|
|
|
import { enqueueSnackbar } from "notistack";
|
2023-03-18 15:52:18 +00:00
|
|
|
|
|
2023-03-19 11:26:09 +00:00
|
|
|
|
|
2023-06-24 12:03:12 +00:00
|
|
|
|
export default function AccountSettings() {
|
2023-05-30 18:34:41 +00:00
|
|
|
|
const theme = useTheme();
|
|
|
|
|
const upMd = useMediaQuery(theme.breakpoints.up("md"));
|
|
|
|
|
const upSm = useMediaQuery(theme.breakpoints.up("sm"));
|
2023-06-02 08:22:14 +00:00
|
|
|
|
const fields = useUserStore(state => state.settingsFields);
|
|
|
|
|
const verificationStatus = useUserStore(state => state.verificationStatus);
|
|
|
|
|
const verificationType = useUserStore(state => state.verificationType);
|
|
|
|
|
|
2023-05-30 18:34:41 +00:00
|
|
|
|
const textFieldProps = {
|
|
|
|
|
gap: upMd ? "16px" : "10px",
|
|
|
|
|
color: "#F2F3F7",
|
|
|
|
|
bold: true,
|
|
|
|
|
};
|
|
|
|
|
|
2023-06-24 18:17:43 +00:00
|
|
|
|
function handleSendDataClick() {
|
|
|
|
|
sendUserData().then(result => {
|
|
|
|
|
enqueueSnackbar("Информация обновлена");
|
|
|
|
|
}).catch(error => {
|
|
|
|
|
const message = getMessageFromFetchError(error);
|
|
|
|
|
if (message) enqueueSnackbar(message);
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2023-05-30 18:34:41 +00:00
|
|
|
|
return (
|
|
|
|
|
<SectionWrapper
|
|
|
|
|
maxWidth="lg"
|
2023-03-27 12:45:44 +00:00
|
|
|
|
sx={{
|
2023-05-30 18:34:41 +00:00
|
|
|
|
mt: "25px",
|
|
|
|
|
mb: "70px",
|
2023-03-27 12:45:44 +00:00
|
|
|
|
}}
|
2023-05-30 18:34:41 +00:00
|
|
|
|
>
|
2023-06-02 08:22:14 +00:00
|
|
|
|
<DocumentsDialog />
|
2023-05-30 18:34:41 +00:00
|
|
|
|
<ComplexNavText text1="Настройки аккаунта" />
|
|
|
|
|
<Typography variant="h4" mt="20px">Настройки аккаунта</Typography>
|
|
|
|
|
<Box sx={{
|
|
|
|
|
mt: "40px",
|
|
|
|
|
mb: "40px",
|
|
|
|
|
backgroundColor: "white",
|
2023-03-27 12:45:44 +00:00
|
|
|
|
display: "flex",
|
|
|
|
|
flexDirection: "column",
|
2023-05-30 18:34:41 +00:00
|
|
|
|
borderRadius: "12px",
|
|
|
|
|
p: "20px",
|
|
|
|
|
gap: "40px",
|
2023-06-16 19:04:59 +00:00
|
|
|
|
boxShadow: cardShadow,
|
2023-05-30 18:34:41 +00:00
|
|
|
|
}}>
|
|
|
|
|
<Box sx={{
|
|
|
|
|
display: "flex",
|
|
|
|
|
gap: "31px",
|
|
|
|
|
justifyContent: "space-between",
|
|
|
|
|
flexDirection: upMd ? "row" : "column",
|
|
|
|
|
}}>
|
|
|
|
|
<Box sx={{
|
|
|
|
|
display: "grid",
|
|
|
|
|
gridAutoFlow: upSm ? "column" : "row",
|
|
|
|
|
gridTemplateRows: "repeat(4, auto)",
|
|
|
|
|
rowGap: "15px",
|
|
|
|
|
columnGap: "31px",
|
|
|
|
|
flexGrow: 1,
|
|
|
|
|
}}>
|
|
|
|
|
<InputTextfield
|
|
|
|
|
TextfieldProps={{
|
|
|
|
|
placeholder: "Имя",
|
2023-06-24 18:17:43 +00:00
|
|
|
|
value: fields.firstname.value || "",
|
|
|
|
|
helperText: fields.firstname.touched && fields.firstname.error,
|
|
|
|
|
error: fields.firstname.touched && Boolean(fields.firstname.error),
|
2023-05-30 18:34:41 +00:00
|
|
|
|
}}
|
2023-06-24 18:17:43 +00:00
|
|
|
|
onChange={e => setSettingsField("firstname", e.target.value)}
|
|
|
|
|
id="firstname"
|
2023-05-30 18:34:41 +00:00
|
|
|
|
label="Имя"
|
|
|
|
|
{...textFieldProps}
|
|
|
|
|
/>
|
|
|
|
|
<InputTextfield
|
|
|
|
|
TextfieldProps={{
|
|
|
|
|
placeholder: "Фамилия",
|
2023-06-24 18:17:43 +00:00
|
|
|
|
value: fields.secondname.value || "",
|
|
|
|
|
helperText: fields.secondname.touched && fields.secondname.error,
|
|
|
|
|
error: fields.secondname.touched && Boolean(fields.secondname.error),
|
2023-05-30 18:34:41 +00:00
|
|
|
|
}}
|
2023-06-24 18:17:43 +00:00
|
|
|
|
onChange={e => setSettingsField("secondname", e.target.value)}
|
|
|
|
|
id="secondname"
|
2023-05-30 18:34:41 +00:00
|
|
|
|
label="Фамилия"
|
|
|
|
|
{...textFieldProps}
|
|
|
|
|
/>
|
|
|
|
|
<InputTextfield
|
|
|
|
|
TextfieldProps={{
|
|
|
|
|
placeholder: "Отчество",
|
2023-06-24 18:17:43 +00:00
|
|
|
|
value: fields.middlename.value || "",
|
|
|
|
|
helperText: fields.middlename.touched && fields.middlename.error,
|
|
|
|
|
error: fields.middlename.touched && Boolean(fields.middlename.error),
|
2023-05-30 18:34:41 +00:00
|
|
|
|
}}
|
2023-06-24 18:17:43 +00:00
|
|
|
|
onChange={e => setSettingsField("middlename", e.target.value)}
|
|
|
|
|
id="middlename"
|
2023-05-30 18:34:41 +00:00
|
|
|
|
label="Отчество"
|
|
|
|
|
{...textFieldProps}
|
|
|
|
|
/>
|
|
|
|
|
<InputTextfield
|
|
|
|
|
TextfieldProps={{
|
|
|
|
|
placeholder: "ООО Фирма",
|
2023-06-24 18:17:43 +00:00
|
|
|
|
value: fields.orgname.value || "",
|
|
|
|
|
helperText: fields.orgname.touched && fields.orgname.error,
|
|
|
|
|
error: fields.orgname.touched && Boolean(fields.orgname.error),
|
2023-05-30 18:34:41 +00:00
|
|
|
|
}}
|
2023-06-24 18:17:43 +00:00
|
|
|
|
onChange={e => setSettingsField("orgname", e.target.value)}
|
|
|
|
|
id="orgname"
|
2023-05-30 18:34:41 +00:00
|
|
|
|
label="Название компании"
|
|
|
|
|
{...textFieldProps}
|
|
|
|
|
/>
|
|
|
|
|
<InputTextfield
|
|
|
|
|
TextfieldProps={{
|
|
|
|
|
placeholder: "username@penahaub.com",
|
2023-06-24 18:17:43 +00:00
|
|
|
|
value: fields.email.value || "",
|
|
|
|
|
helperText: fields.email.touched && fields.email.error,
|
|
|
|
|
error: fields.email.touched && Boolean(fields.email.error),
|
2023-05-30 18:34:41 +00:00
|
|
|
|
}}
|
|
|
|
|
onChange={e => setSettingsField("email", e.target.value)}
|
|
|
|
|
id="email"
|
|
|
|
|
label="E-mail"
|
|
|
|
|
{...textFieldProps}
|
|
|
|
|
/>
|
|
|
|
|
<InputTextfield
|
|
|
|
|
TextfieldProps={{
|
|
|
|
|
placeholder: "+7 900 000 00 00",
|
2023-06-24 18:17:43 +00:00
|
|
|
|
value: fields.phoneNumber.value || "",
|
|
|
|
|
helperText: fields.phoneNumber.touched && fields.phoneNumber.error,
|
|
|
|
|
error: fields.phoneNumber.touched && Boolean(fields.phoneNumber.error),
|
2023-05-30 18:34:41 +00:00
|
|
|
|
}}
|
|
|
|
|
onChange={e => setSettingsField("phoneNumber", e.target.value)}
|
|
|
|
|
id="phoneNumber"
|
|
|
|
|
label="Телефон"
|
|
|
|
|
{...textFieldProps}
|
|
|
|
|
/>
|
|
|
|
|
<InputTextfield
|
|
|
|
|
TextfieldProps={{
|
|
|
|
|
placeholder: "Не менее 8 символов",
|
2023-06-24 18:17:43 +00:00
|
|
|
|
value: fields.password.value || "",
|
|
|
|
|
helperText: fields.password.touched && fields.password.error,
|
|
|
|
|
error: fields.password.touched && Boolean(fields.password.error),
|
2023-05-30 18:34:41 +00:00
|
|
|
|
type: "password",
|
|
|
|
|
}}
|
|
|
|
|
onChange={e => setSettingsField("password", e.target.value)}
|
|
|
|
|
id="password"
|
|
|
|
|
label="Пароль"
|
|
|
|
|
{...textFieldProps}
|
|
|
|
|
/>
|
|
|
|
|
</Box>
|
|
|
|
|
<Box sx={{
|
|
|
|
|
maxWidth: "246px",
|
|
|
|
|
}}>
|
|
|
|
|
<Typography variant="p1">Статус</Typography>
|
|
|
|
|
<VerificationIndicator
|
2023-06-02 08:22:14 +00:00
|
|
|
|
verificationStatus={verificationStatus}
|
2023-05-30 18:34:41 +00:00
|
|
|
|
sx={{ mt: "16px" }}
|
|
|
|
|
/>
|
2023-06-02 08:22:14 +00:00
|
|
|
|
{verificationStatus === "notVerificated" &&
|
|
|
|
|
<>
|
|
|
|
|
<UnderlinedButtonWithIcon
|
|
|
|
|
icon={<UploadIcon />}
|
|
|
|
|
sx={{ mt: "55px" }}
|
|
|
|
|
ButtonProps={{
|
|
|
|
|
onClick: () => openDocumentsDialog("juridical"),
|
|
|
|
|
}}
|
|
|
|
|
>Загрузить документы для юр лиц</UnderlinedButtonWithIcon>
|
|
|
|
|
<UnderlinedButtonWithIcon
|
|
|
|
|
icon={<UploadIcon />}
|
|
|
|
|
sx={{ mt: "15px" }}
|
|
|
|
|
ButtonProps={{
|
|
|
|
|
onClick: () => openDocumentsDialog("nko"),
|
|
|
|
|
}}
|
|
|
|
|
>Загрузить документы для НКО</UnderlinedButtonWithIcon>
|
|
|
|
|
</>
|
|
|
|
|
}
|
|
|
|
|
{verificationStatus === "verificated" &&
|
|
|
|
|
<UnderlinedButtonWithIcon
|
|
|
|
|
icon={<EyeIcon />}
|
|
|
|
|
sx={{ mt: "55px" }}
|
|
|
|
|
ButtonProps={{
|
|
|
|
|
onClick: () => openDocumentsDialog(verificationType),
|
2023-05-30 18:34:41 +00:00
|
|
|
|
}}
|
2023-06-02 08:22:14 +00:00
|
|
|
|
>Посмотреть свою верификацию</UnderlinedButtonWithIcon>
|
|
|
|
|
}
|
2023-05-30 18:34:41 +00:00
|
|
|
|
</Box>
|
|
|
|
|
</Box>
|
|
|
|
|
<CustomButton
|
2023-06-24 18:17:43 +00:00
|
|
|
|
onClick={handleSendDataClick}
|
2023-05-30 18:34:41 +00:00
|
|
|
|
variant="contained"
|
2023-06-24 18:17:43 +00:00
|
|
|
|
disabled={fields.hasError}
|
2023-05-30 18:34:41 +00:00
|
|
|
|
sx={{
|
|
|
|
|
width: "180px",
|
|
|
|
|
height: "44px",
|
|
|
|
|
alignSelf: "end",
|
|
|
|
|
backgroundColor: theme.palette.brightPurple.main,
|
|
|
|
|
textColor: "white",
|
|
|
|
|
}}
|
2023-03-18 15:52:18 +00:00
|
|
|
|
>
|
2023-06-02 08:22:14 +00:00
|
|
|
|
Сохранить
|
2023-05-30 18:34:41 +00:00
|
|
|
|
</CustomButton>
|
2023-03-27 12:45:44 +00:00
|
|
|
|
</Box>
|
2023-05-30 18:34:41 +00:00
|
|
|
|
</SectionWrapper>
|
|
|
|
|
);
|
2023-03-19 11:26:09 +00:00
|
|
|
|
}
|
2023-05-30 18:34:41 +00:00
|
|
|
|
|
|
|
|
|
const verificationStatusData: Record<VerificationStatus, { text: string; color: string; }> = {
|
|
|
|
|
"verificated": {
|
|
|
|
|
text: "Верификация пройдена",
|
|
|
|
|
color: "#0D9F00",
|
|
|
|
|
},
|
|
|
|
|
"waiting": {
|
|
|
|
|
text: "В ожидании верификации",
|
|
|
|
|
color: "#F18956",
|
|
|
|
|
},
|
|
|
|
|
"notVerificated": {
|
|
|
|
|
text: "Не верифицирован",
|
|
|
|
|
color: "#E02C2C",
|
|
|
|
|
},
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
function VerificationIndicator({ verificationStatus, sx }: {
|
|
|
|
|
verificationStatus: VerificationStatus;
|
|
|
|
|
sx?: SxProps<Theme>;
|
|
|
|
|
}) {
|
|
|
|
|
return (
|
|
|
|
|
<Box sx={{
|
|
|
|
|
py: "14px",
|
|
|
|
|
px: "8.5px",
|
|
|
|
|
borderWidth: "1px",
|
|
|
|
|
borderStyle: "solid",
|
|
|
|
|
color: verificationStatusData[verificationStatus].color,
|
|
|
|
|
borderColor: verificationStatusData[verificationStatus].color,
|
|
|
|
|
borderRadius: "8px",
|
|
|
|
|
textAlign: "center",
|
|
|
|
|
...sx,
|
|
|
|
|
}}>
|
|
|
|
|
<Typography lineHeight="100%">{verificationStatusData[verificationStatus].text}</Typography>
|
|
|
|
|
</Box>
|
|
|
|
|
);
|
|
|
|
|
}
|