2020-02-20 01:01:14 -06:00
|
|
|
import React, { FC } from 'react';
|
2020-04-14 11:52:56 -05:00
|
|
|
import {
|
|
|
|
HorizontalGroup,
|
|
|
|
Button,
|
|
|
|
LinkButton,
|
|
|
|
Input,
|
|
|
|
Switch,
|
|
|
|
RadioButtonGroup,
|
|
|
|
Form,
|
|
|
|
Field,
|
|
|
|
InputControl,
|
|
|
|
} from '@grafana/ui';
|
2020-02-20 01:01:14 -06:00
|
|
|
import { getConfig } from 'app/core/config';
|
|
|
|
import { OrgRole } from 'app/types';
|
|
|
|
import { getBackendSrv } from '@grafana/runtime';
|
|
|
|
import { updateLocation } from 'app/core/actions';
|
|
|
|
import { connect } from 'react-redux';
|
|
|
|
import { hot } from 'react-hot-loader';
|
|
|
|
import { appEvents } from 'app/core/core';
|
|
|
|
import { AppEvents } from '@grafana/data';
|
|
|
|
import { assureBaseUrl } from 'app/core/utils/location_util';
|
|
|
|
|
|
|
|
const roles = [
|
|
|
|
{ label: 'Viewer', value: OrgRole.Viewer },
|
|
|
|
{ label: 'Editor', value: OrgRole.Editor },
|
|
|
|
{ label: 'Admin', value: OrgRole.Admin },
|
|
|
|
];
|
|
|
|
|
|
|
|
interface FormModel {
|
|
|
|
role: OrgRole;
|
|
|
|
name: string;
|
|
|
|
loginOrEmail?: string;
|
|
|
|
sendEmail: boolean;
|
|
|
|
email: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
interface Props {
|
|
|
|
updateLocation: typeof updateLocation;
|
|
|
|
}
|
|
|
|
|
|
|
|
export const UserInviteForm: FC<Props> = ({ updateLocation }) => {
|
|
|
|
const onSubmit = async (formData: FormModel) => {
|
|
|
|
try {
|
|
|
|
await getBackendSrv().post('/api/org/invites', formData);
|
|
|
|
} catch (err) {
|
|
|
|
appEvents.emit(AppEvents.alertError, ['Failed to send invite', err.message]);
|
|
|
|
}
|
|
|
|
updateLocation({ path: 'org/users/' });
|
|
|
|
};
|
|
|
|
const defaultValues: FormModel = {
|
|
|
|
name: '',
|
|
|
|
email: '',
|
|
|
|
role: OrgRole.Editor,
|
|
|
|
sendEmail: true,
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
2020-04-14 11:52:56 -05:00
|
|
|
<Form defaultValues={defaultValues} onSubmit={onSubmit}>
|
2020-02-20 01:01:14 -06:00
|
|
|
{({ register, control, errors }) => {
|
|
|
|
return (
|
|
|
|
<>
|
2020-04-14 11:52:56 -05:00
|
|
|
<Field
|
2020-02-20 01:01:14 -06:00
|
|
|
invalid={!!errors.loginOrEmail}
|
|
|
|
error={!!errors.loginOrEmail && 'Email or Username is required'}
|
|
|
|
label="Email or Username"
|
|
|
|
>
|
2020-04-03 03:04:19 -05:00
|
|
|
<Input size="md" name="loginOrEmail" placeholder="email@example.com" ref={register({ required: true })} />
|
2020-04-14 11:52:56 -05:00
|
|
|
</Field>
|
|
|
|
<Field invalid={!!errors.name} label="Name">
|
2020-04-03 03:04:19 -05:00
|
|
|
<Input size="md" name="name" placeholder="(optional)" ref={register} />
|
2020-04-14 11:52:56 -05:00
|
|
|
</Field>
|
|
|
|
<Field invalid={!!errors.role} label="Role">
|
|
|
|
<InputControl as={RadioButtonGroup} control={control} options={roles} name="role" />
|
|
|
|
</Field>
|
|
|
|
<Field invalid={!!errors.sendEmail} label="Send invite email">
|
2020-04-08 03:17:19 -05:00
|
|
|
<Switch name="sendEmail" ref={register} />
|
2020-04-14 11:52:56 -05:00
|
|
|
</Field>
|
2020-02-20 01:01:14 -06:00
|
|
|
<HorizontalGroup>
|
2020-03-26 05:50:27 -05:00
|
|
|
<Button type="submit">Submit</Button>
|
|
|
|
<LinkButton href={assureBaseUrl(getConfig().appSubUrl + '/org/users')} variant="secondary">
|
2020-02-20 01:01:14 -06:00
|
|
|
Back
|
2020-03-26 05:50:27 -05:00
|
|
|
</LinkButton>
|
2020-02-20 01:01:14 -06:00
|
|
|
</HorizontalGroup>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}}
|
2020-04-14 11:52:56 -05:00
|
|
|
</Form>
|
2020-02-20 01:01:14 -06:00
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
const mapDispatchToProps = {
|
|
|
|
updateLocation,
|
|
|
|
};
|
|
|
|
|
|
|
|
export default hot(module)(connect(null, mapDispatchToProps)(UserInviteForm));
|