Files
grafana/public/app/features/admin/UserCreatePage.tsx
Ashley Harrison 47f8717149 React: Use new JSX transform (#88802)
* update eslint, tsconfig + esbuild to handle new jsx transform

* remove thing that breaks the new jsx transform

* remove react imports

* adjust grafana-icons build

* is this the correct syntax?

* try this

* well this was much easier than expected...

* change grafana-plugin-configs webpack config

* fixes

* fix lockfile

* fix 2 more violations

* use path.resolve instead of require.resolve

* remove react import

* fix react imports

* more fixes

* remove React import

* remove import React from docs

* remove another react import
2024-06-25 12:43:47 +01:00

80 lines
2.2 KiB
TypeScript

import { useCallback } from 'react';
import { useForm } from 'react-hook-form';
import { useHistory } from 'react-router-dom';
import { NavModelItem } from '@grafana/data';
import { getBackendSrv } from '@grafana/runtime';
import { Button, Input, Field } from '@grafana/ui';
import { Page } from 'app/core/components/Page/Page';
interface UserDTO {
name: string;
password: string;
email?: string;
login?: string;
}
const createUser = async (user: UserDTO) => getBackendSrv().post('/api/admin/users', user);
const pageNav: NavModelItem = {
icon: 'user',
id: 'user-new',
text: 'New user',
subTitle: 'Create a new Grafana user.',
};
const UserCreatePage = () => {
const history = useHistory();
const {
handleSubmit,
register,
formState: { errors },
} = useForm<UserDTO>({ mode: 'onBlur' });
const onSubmit = useCallback(
async (data: UserDTO) => {
const { id } = await createUser(data);
history.push(`/admin/users/edit/${id}`);
},
[history]
);
return (
<Page navId="global-users" pageNav={pageNav}>
<Page.Contents>
<form onSubmit={handleSubmit(onSubmit)} style={{ maxWidth: '600px' }}>
<Field label="Name" required invalid={!!errors.name} error={errors.name ? 'Name is required' : undefined}>
<Input id="name-input" {...register('name', { required: true })} />
</Field>
<Field label="Email">
<Input id="email-input" {...register('email')} />
</Field>
<Field label="Username">
<Input id="username-input" {...register('login')} />
</Field>
<Field
label="Password"
required
invalid={!!errors.password}
error={errors.password ? 'Password is required and must contain at least 4 characters' : undefined}
>
<Input
id="password-input"
{...register('password', {
validate: (value) => value.trim() !== '' && value.length >= 4,
})}
type="password"
/>
</Field>
<Button type="submit">Create user</Button>
</form>
</Page.Contents>
</Page>
);
};
export default UserCreatePage;