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 = ({ navModel, updateLocation }) => { const onSubmit = useCallback(async (data: UserDTO) => { await createUser(data); updateLocation({ path: '/admin/users' }); }, []); return (

Add new user

{({ register, errors }) => { return ( <> value.trim() !== '' && value.length >= 4, })} /> ); }}
); }; const mapStateToProps = (state: StoreState) => ({ navModel: getNavModel(state.navIndex, 'global-users'), }); const mapDispatchToProps = { updateLocation, }; export default hot(module)(connect(mapStateToProps, mapDispatchToProps)(UserCreatePage));