import React, { useEffect } from "react"; import { FormattedMessage, useIntl } from "react-intl"; import { useMutation, useQueryClient } from "react-query"; import Client, { ErrorInfo } from "../../../../classes/client"; import Input from "../../../form/input"; import BaseDialog from "../../action-dispatcher/base-dialog"; import { useSelector } from 'react-redux'; import { activeInstance, fetchAccount } from "../../../../redux/clientSlice"; import Alert from "@material-ui/lab/Alert"; import FormControl from "@material-ui/core/FormControl"; import FormControlLabel from "@material-ui/core/FormControlLabel"; import FormGroup from "@material-ui/core/FormGroup"; import Switch from "@material-ui/core/Switch"; type AccountInfoDialogProps = { onClose: () => void } type AccountInfoModel = { email: string, firstname: string, lastname: string } const defaultModel: AccountInfoModel = { firstname: '', lastname: '', email: '' }; const AccountInfoDialog = ({ onClose }: AccountInfoDialogProps) => { const client: Client = useSelector(activeInstance); const queryClient = useQueryClient(); const [remove, setRemove] = React.useState(false); const [model, setModel] = React.useState(defaultModel); const [error, setError] = React.useState(); const intl = useIntl(); const mutationChangeName = useMutation((model: AccountInfoModel) => { return client.updateAccountInfo(model.firstname, model.lastname); }, { onSuccess: () => { queryClient.invalidateQueries('account') onClose() }, onError: (error) => { setError(error); } } ); const mutationRemove = useMutation(() => { return client.deleteAccount(); }, { onSuccess: () => { window.location.href = '/c/logout' onClose() }, onError: (error) => { setError(error); } } ); const account = fetchAccount(); useEffect(() => { if (account) { setModel({ email: account?.email, lastname: account?.lastname, firstname: account?.firstname }); } }, [account?.email]) const handleOnClose = (): void => { onClose(); setModel(defaultModel); setError(undefined); }; const handleOnSubmit = (event: React.FormEvent): void => { event.preventDefault(); if (remove) { mutationRemove.mutate(); } else { mutationChangeName.mutate(model); } }; const handleOnChange = (event: React.ChangeEvent): void => { event.preventDefault(); const name = event.target.name; const value = event.target.value; setModel({ ...model, [name as keyof AccountInfoModel]: value }); } const handleOnRemoveChange = (event) => { setRemove(event.target.checked); }; return ( {remove && } } label="Delete Account" /> ); } export default AccountInfoDialog;