import { Dropdown, Item, Form, FormRow, FormButtons, FormInput, TextField, SubmitButton, PasswordField, } from 'react-basics'; import useApi from 'components/hooks/useApi'; import { ROLES } from 'lib/constants'; import useMessages from 'components/hooks/useMessages'; export function UserEditForm({ userId, data, onSave, }: { userId: string; data: any[]; onSave: (data: any) => void; }) { const { formatMessage, labels, messages } = useMessages(); const { post, useMutation } = useApi(); const { mutate, error } = useMutation({ mutationFn: ({ username, password, role, }: { username: string; password: string; role: string; }) => post(`/users/${userId}`, { username, password, role }), }); const handleSubmit = async (data: any) => { mutate(data, { onSuccess: async () => { onSave(data); }, }); }; const renderValue = value => { if (value === ROLES.user) { return formatMessage(labels.user); } if (value === ROLES.admin) { return formatMessage(labels.admin); } if (value === ROLES.viewOnly) { return formatMessage(labels.viewOnly); } }; return (
{formatMessage(labels.viewOnly)} {formatMessage(labels.user)} {formatMessage(labels.admin)} {formatMessage(labels.save)}
); } export default UserEditForm;