add GlobalHead.jsx and NetworkComponent.jsx
and useNetwork.jsx and fixed bugs
This commit is contained in:
@@ -16,7 +16,6 @@ import ImageResizer from "@/core/components/ImageConvertor";
|
||||
const DashboardEditProfile = () => {
|
||||
const t = useTranslations();
|
||||
const {user, token, getUser, changeUser} = useUser();
|
||||
console.log(user);
|
||||
const {directionApp} = useDirection();
|
||||
|
||||
const editAvatar = async (avatar) => {
|
||||
@@ -42,51 +41,7 @@ const DashboardEditProfile = () => {
|
||||
}
|
||||
};
|
||||
const handleSubmit = (values, {setSubmitting}) => {
|
||||
// const formData = new FormData();
|
||||
// formData.append("email", values.expert_email);
|
||||
// if (values.change_avatar !== false) {
|
||||
// editAvatar(values.expert_avatar)
|
||||
// .then(() => {
|
||||
// return axios.post(UPDATE_PROFILE, formData, {
|
||||
// headers: {
|
||||
// authorization: `Bearer ${token}`,
|
||||
// "Content-Type": "multipart/form-data",
|
||||
// },
|
||||
// });
|
||||
// })
|
||||
// .then((response) => {
|
||||
// Notifications( t, response);
|
||||
// getUser((data) => {
|
||||
// changeUser(data);
|
||||
// });
|
||||
// })
|
||||
// .catch((error) => {
|
||||
// Notifications( t, error.response);
|
||||
// })
|
||||
// .finally(() => {
|
||||
// setSubmitting(false);
|
||||
// });
|
||||
// } else {
|
||||
// axios
|
||||
// .post(UPDATE_PROFILE, formData, {
|
||||
// headers: {
|
||||
// authorization: `Bearer ${token}`,
|
||||
// "Content-Type": "multipart/form-data",
|
||||
// },
|
||||
// })
|
||||
// .then((response) => {
|
||||
// Notifications( t, response);
|
||||
// getUser((data) => {
|
||||
// changeUser(data);
|
||||
// });
|
||||
// })
|
||||
// .catch((error) => {
|
||||
// Notifications( t, error.response);
|
||||
// })
|
||||
// .finally(() => {
|
||||
// setSubmitting(false);
|
||||
// });
|
||||
// }
|
||||
|
||||
};
|
||||
const initialValues = {
|
||||
expert_avatar: null,
|
||||
@@ -96,17 +51,7 @@ const DashboardEditProfile = () => {
|
||||
province_name: user.province_name,
|
||||
position: user.position,
|
||||
};
|
||||
const validationSchema = Yup.object().shape({
|
||||
// username: Yup.string().required(t("UpdateProfile.error_message_required")),
|
||||
// name: Yup.string().required(t("UpdateProfile.error_message_required")),
|
||||
// email: Yup.string()
|
||||
// .email(t("UpdateProfile.error_invalid_email"))
|
||||
// .required(t("UpdateProfile.error_message_required")),
|
||||
// province_name: Yup.string().required(
|
||||
// t("UpdateProfile.error_message_required")
|
||||
// ),
|
||||
// position: Yup.string().required(t("UpdateProfile.error_message_required")),
|
||||
});
|
||||
const validationSchema = Yup.object().shape({});
|
||||
|
||||
return (
|
||||
<DashboardLayouts>
|
||||
@@ -264,19 +209,6 @@ const DashboardEditProfile = () => {
|
||||
/>
|
||||
</Grid>
|
||||
</Grid>
|
||||
{/* <Button
|
||||
type="submit"
|
||||
fullWidth
|
||||
variant="contained"
|
||||
color="primary"
|
||||
size="large"
|
||||
disabled={props.isSubmitting}
|
||||
display="none"
|
||||
>
|
||||
{props.isSubmitting
|
||||
? t("SubmitButton.button_while_submit")
|
||||
: t("SubmitButton.button_submit")}
|
||||
</Button> */}
|
||||
</Stack>
|
||||
</Paper>
|
||||
</StyledForm>
|
||||
|
||||
Reference in New Issue
Block a user