import { FormControl, IconButton, Link, ListItemIcon, Menu, MenuItem, Tooltip } from '@material-ui/core'; import { AccountCircle, ExitToAppOutlined, LockOpenOutlined, SettingsApplicationsOutlined } from '@material-ui/icons'; import React from "react"; import { FormattedMessage, useIntl } from "react-intl"; import { useMutation } from "react-query"; import Client, { ErrorInfo } from "../../../classes/client"; import { useSelector } from 'react-redux'; import { activeInstance, fetchAccount } from '../../../redux/clientSlice'; import BaseDialog from '../action-dispatcher/base-dialog'; import Input from '../../form/input'; const AccountMenu = () => { const [anchorEl, setAnchorEl] = React.useState(null); const open = Boolean(anchorEl); const [openRenameDialog, setOpenRenameDialog] = React.useState(false); const handleMenu = (event: React.MouseEvent) => { setAnchorEl(event.currentTarget); }; const handleClose = () => { setAnchorEl(null); }; const account = fetchAccount(); return ( `}> { handleClose(), setOpenRenameDialog(true) }}> {openRenameDialog && setOpenRenameDialog(false)} /> } ); } type ChangePasswordDialogProps = { onClose: () => void } type ChangePasswordModel = { password: string, retryPassword: string } const defaultModel: ChangePasswordModel = { password: '', retryPassword: '' }; const ChangePasswordDialog = ({ onClose }: ChangePasswordDialogProps) => { const client: Client = useSelector(activeInstance); const [model, setModel] = React.useState(defaultModel); const [error, setError] = React.useState(); const intl = useIntl(); const mutation = useMutation((model: ChangePasswordModel) => { return client.updateAccountPassword(model.password); }, { onSuccess: () => { onClose() }, onError: (error) => { setError(error); } } ); const handleOnClose = (): void => { onClose(); setModel(defaultModel); setError(undefined); }; const handleOnSubmit = (event: React.FormEvent): void => { event.preventDefault(); // Check password are equal ... if (model.password != model.retryPassword) { setError({ msg: intl.formatMessage({ id: 'changepwd.password-match', defaultMessage: 'Password do not match. Please, try again.' }) }); return; } mutation.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 ChangePasswordModel]: value }); } return (
); } export default AccountMenu;