mirror of
https://github.com/grafana/grafana.git
synced 2025-02-13 00:55:47 -06:00
* Chore: Fix typescript strict null errors * Added new limit * Fixed ts issue * fixed tests * trying to fix type inference * Fixing more ts errors * Revert tsconfig option * Fix * Fixed code * More fixes * fix tests * Updated snapshot * Chore: More ts strict null fixes * More fixes in some really messed up azure config components * More fixes, current count: 441 * 419 * More fixes * Fixed invalid initial state in explore * Fixing tests * Fixed tests * Explore fix * More fixes * Progress * Sub 300 * Now at 218 * Progress * Update * Progress * Updated tests * at 159 * fixed tests * Progress * YAy blow 100! at 94 * 10,9,8,7,6,5,4,3,2,1... lift off * Fixed tests * Fixed more type errors Co-authored-by: Ryan McKinley <ryantxu@gmail.com>
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));
|