'use client'; import { Dropdown, Item, Form, FormRow, FormButtons, FormInput, TextField, SubmitButton, PasswordField, } from 'react-basics'; import { useApi, useMessages } from 'components/hooks'; import { ROLES } from 'lib/constants'; export function UserEditForm({ userId, data, onSave, }: { userId: string; data: object; 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: string) => { if (value === ROLES.user) { return formatMessage(labels.user); } if (value === ROLES.admin) { return formatMessage(labels.administrator); } if (value === ROLES.viewOnly) { return formatMessage(labels.viewOnly); } }; return (
{formatMessage(labels.viewOnly)} {formatMessage(labels.user)} {formatMessage(labels.administrator)} {formatMessage(labels.save)}
); } export default UserEditForm;