mirror of
https://github.com/grafana/grafana.git
synced 2025-01-16 03:32:37 -06:00
1d689888b0
* Updated package json but not updated source files * Update eslint plugin * updated files
87 lines
2.7 KiB
TypeScript
87 lines
2.7 KiB
TypeScript
import React, { useCallback } from 'react';
|
|
import { hot } from 'react-hot-loader';
|
|
import { connect } from 'react-redux';
|
|
import { Form, Button, Input, Field } from '@grafana/ui';
|
|
import { NavModel } from '@grafana/data';
|
|
import { getBackendSrv } from '@grafana/runtime';
|
|
import { StoreState } from '../../types';
|
|
import { getNavModel } from '../../core/selectors/navModel';
|
|
import Page from 'app/core/components/Page/Page';
|
|
import { updateLocation } from 'app/core/actions';
|
|
|
|
interface UserCreatePageProps {
|
|
navModel: NavModel;
|
|
updateLocation: typeof updateLocation;
|
|
}
|
|
interface UserDTO {
|
|
name: string;
|
|
password: string;
|
|
email?: string;
|
|
login?: string;
|
|
}
|
|
|
|
const createUser = async (user: UserDTO) => getBackendSrv().post('/api/admin/users', user);
|
|
|
|
const UserCreatePage: React.FC<UserCreatePageProps> = ({ navModel, updateLocation }) => {
|
|
const onSubmit = useCallback(async (data: UserDTO) => {
|
|
await createUser(data);
|
|
updateLocation({ path: '/admin/users' });
|
|
}, []);
|
|
|
|
return (
|
|
<Page navModel={navModel}>
|
|
<Page.Contents>
|
|
<h1>Add new user</h1>
|
|
<Form onSubmit={onSubmit} validateOn="onBlur">
|
|
{({ register, errors }) => {
|
|
return (
|
|
<>
|
|
<Field
|
|
label="Name"
|
|
required
|
|
invalid={!!errors.name}
|
|
error={errors.name ? 'Name is required' : undefined}
|
|
>
|
|
<Input name="name" ref={register({ required: true })} />
|
|
</Field>
|
|
|
|
<Field label="E-mail">
|
|
<Input name="email" ref={register} />
|
|
</Field>
|
|
|
|
<Field label="Username">
|
|
<Input name="login" ref={register} />
|
|
</Field>
|
|
<Field
|
|
label="Password"
|
|
required
|
|
invalid={!!errors.password}
|
|
error={errors.password ? 'Password is required and must contain at least 4 characters' : undefined}
|
|
>
|
|
<Input
|
|
type="password"
|
|
name="password"
|
|
ref={register({
|
|
validate: (value) => value.trim() !== '' && value.length >= 4,
|
|
})}
|
|
/>
|
|
</Field>
|
|
<Button type="submit">Create user</Button>
|
|
</>
|
|
);
|
|
}}
|
|
</Form>
|
|
</Page.Contents>
|
|
</Page>
|
|
);
|
|
};
|
|
|
|
const mapStateToProps = (state: StoreState) => ({
|
|
navModel: getNavModel(state.navIndex, 'global-users'),
|
|
});
|
|
|
|
const mapDispatchToProps = {
|
|
updateLocation,
|
|
};
|
|
export default hot(module)(connect(mapStateToProps, mapDispatchToProps)(UserCreatePage));
|