The open and composable observability and data visualization platform. Visualize metrics, logs, and traces from multiple sources like Prometheus, Loki, Elasticsearch, InfluxDB, Postgres and many more.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
grafana/public/app/features/org/UserInviteForm.tsx

123 lines
3.4 KiB

import React from 'react';
import { locationUtil, SelectableValue } from '@grafana/data';
import { locationService } from '@grafana/runtime';
import {
Button,
LinkButton,
Input,
Switch,
RadioButtonGroup,
Form,
Field,
InputControl,
FieldSet,
Icon,
TextLink,
Tooltip,
Label,
Stack,
} from '@grafana/ui';
import { getConfig } from 'app/core/config';
import { OrgRole, useDispatch } from 'app/types';
import { addInvitee } from '../invites/state/actions';
const tooltipMessage = (
<>
You can now select the &quot;No basic role&quot; option and add permissions to your custom needs. You can find more
information in&nbsp;
<TextLink
href="https://grafana.com/docs/grafana/latest/administration/roles-and-permissions/#organization-roles"
variant="bodySmall"
external
>
our documentation
</TextLink>
.
</>
);
const roles: Array<SelectableValue<OrgRole>> = Object.values(OrgRole).map((r) => ({
label: r === OrgRole.None ? 'No basic role' : r,
value: r,
}));
export interface FormModel {
role: OrgRole;
name: string;
loginOrEmail?: string;
sendEmail: boolean;
email: string;
}
const defaultValues: FormModel = {
name: '',
email: '',
role: OrgRole.Editor,
sendEmail: true,
};
export const UserInviteForm = () => {
const dispatch = useDispatch();
const onSubmit = async (formData: FormModel) => {
await dispatch(addInvitee(formData)).unwrap();
locationService.push('/admin/users/');
};
return (
<Form defaultValues={defaultValues} onSubmit={onSubmit}>
{({ register, control, errors }) => {
return (
<>
<FieldSet>
<Field
invalid={!!errors.loginOrEmail}
error={!!errors.loginOrEmail ? 'Email or username is required' : undefined}
label="Email or username"
>
<Input {...register('loginOrEmail', { required: true })} placeholder="email@example.com" />
</Field>
<Field invalid={!!errors.name} label="Name">
<Input {...register('name')} placeholder="(optional)" />
</Field>
<Field
invalid={!!errors.role}
label={
<Label>
<Stack gap={0.5}>
<span>Role</span>
{tooltipMessage && (
<Tooltip placement="right-end" interactive={true} content={tooltipMessage}>
<Icon name="info-circle" size="xs" />
</Tooltip>
)}
</Stack>
</Label>
}
>
<InputControl
render={({ field: { ref, ...field } }) => <RadioButtonGroup {...field} options={roles} />}
control={control}
name="role"
/>
</Field>
<Field label="Send invite email">
<Switch id="send-email-switch" {...register('sendEmail')} />
</Field>
</FieldSet>
<Stack>
<Button type="submit">Submit</Button>
<LinkButton href={locationUtil.assureBaseUrl(getConfig().appSubUrl + '/admin/users')} variant="secondary">
Back
</LinkButton>
</Stack>
</>
);
}}
</Form>
);
};
export default UserInviteForm;