2020-01-22 08:26:03 -06:00
|
|
|
import React, { useCallback } from 'react';
|
|
|
|
import { hot } from 'react-hot-loader';
|
|
|
|
import { connect } from 'react-redux';
|
2020-04-14 11:52:56 -05:00
|
|
|
import { Form, Button, Input, Field } from '@grafana/ui';
|
2020-01-22 08:26:03 -06:00
|
|
|
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>
|
2020-04-14 11:52:56 -05:00
|
|
|
<Form onSubmit={onSubmit} validateOn="onBlur">
|
2020-01-22 08:26:03 -06:00
|
|
|
{({ register, errors }) => {
|
|
|
|
return (
|
|
|
|
<>
|
Chore: Fix all Typescript strict null errors (#26204)
* 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>
2020-07-10 05:46:59 -05:00
|
|
|
<Field
|
|
|
|
label="Name"
|
|
|
|
required
|
|
|
|
invalid={!!errors.name}
|
|
|
|
error={errors.name ? 'Name is required' : undefined}
|
|
|
|
>
|
2020-04-21 03:42:57 -05:00
|
|
|
<Input name="name" ref={register({ required: true })} />
|
2020-04-14 11:52:56 -05:00
|
|
|
</Field>
|
2020-01-22 08:26:03 -06:00
|
|
|
|
2020-04-14 11:52:56 -05:00
|
|
|
<Field label="E-mail">
|
2020-04-21 03:42:57 -05:00
|
|
|
<Input name="email" ref={register} />
|
2020-04-14 11:52:56 -05:00
|
|
|
</Field>
|
2020-01-22 08:26:03 -06:00
|
|
|
|
2020-04-14 11:52:56 -05:00
|
|
|
<Field label="Username">
|
2020-04-21 03:42:57 -05:00
|
|
|
<Input name="login" ref={register} />
|
2020-04-14 11:52:56 -05:00
|
|
|
</Field>
|
|
|
|
<Field
|
2020-01-22 08:26:03 -06:00
|
|
|
label="Password"
|
|
|
|
required
|
|
|
|
invalid={!!errors.password}
|
Chore: Fix all Typescript strict null errors (#26204)
* 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>
2020-07-10 05:46:59 -05:00
|
|
|
error={errors.password ? 'Password is required and must contain at least 4 characters' : undefined}
|
2020-01-22 08:26:03 -06:00
|
|
|
>
|
2020-04-03 03:04:19 -05:00
|
|
|
<Input
|
2020-01-22 08:26:03 -06:00
|
|
|
type="password"
|
|
|
|
name="password"
|
|
|
|
ref={register({
|
2021-01-20 00:59:48 -06:00
|
|
|
validate: (value) => value.trim() !== '' && value.length >= 4,
|
2020-01-22 08:26:03 -06:00
|
|
|
})}
|
|
|
|
/>
|
2020-04-14 11:52:56 -05:00
|
|
|
</Field>
|
2020-03-26 05:50:27 -05:00
|
|
|
<Button type="submit">Create user</Button>
|
2020-01-22 08:26:03 -06:00
|
|
|
</>
|
|
|
|
);
|
|
|
|
}}
|
2020-04-14 11:52:56 -05:00
|
|
|
</Form>
|
2020-01-22 08:26:03 -06:00
|
|
|
</Page.Contents>
|
|
|
|
</Page>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
const mapStateToProps = (state: StoreState) => ({
|
|
|
|
navModel: getNavModel(state.navIndex, 'global-users'),
|
|
|
|
});
|
|
|
|
|
|
|
|
const mapDispatchToProps = {
|
|
|
|
updateLocation,
|
|
|
|
};
|
|
|
|
export default hot(module)(connect(mapStateToProps, mapDispatchToProps)(UserCreatePage));
|