The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/public/app/features/admin/UserCreatePage.tsx

84 lines
2.4 KiB

import React, { useCallback } from 'react';
import { useHistory } from 'react-router-dom';
import { NavModelItem } from '@grafana/data';
import { getBackendSrv } from '@grafana/runtime';
import { Form, 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 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={onSubmit} validateOn="onBlur">
{({ register, errors }) => {
return (
<>
<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;