import { useRef } from 'react'; import { Form, FormRow, FormInput, FormButtons, PasswordField, Button } from 'react-basics'; import { useApi, useMessages } from 'components/hooks'; export function PasswordEditForm({ onSave, onClose }) { const { formatMessage, labels, messages } = useMessages(); const { post, useMutation } = useApi(); const { mutate, error, isPending } = useMutation({ mutationFn: (data: any) => post('/me/password', data), }); const ref = useRef(null); const handleSubmit = async (data: any) => { mutate(data, { onSuccess: async () => { onSave(); onClose(); }, }); }; const samePassword = (value: string) => { if (value !== ref?.current?.getValues('newPassword')) { return formatMessage(messages.noMatchPassword); } return true; }; return (
); } export default PasswordEditForm;