import React, { FC, useState } from 'react'; import { useAsync } from 'react-use'; import { getBackendSrv } from '@grafana/runtime'; import { Button, Field, Form, Input } from '@grafana/ui'; import Page from 'app/core/components/Page/Page'; import { getConfig } from 'app/core/config'; import { contextSrv } from 'app/core/core'; import { GrafanaRouteComponentProps } from 'app/core/navigation/types'; interface FormModel { email: string; name?: string; username: string; password?: string; } const navModel = { main: { icon: 'grafana', text: 'Invite', subTitle: 'Register your Grafana account', breadcrumbs: [{ title: 'Login', url: 'login' }], }, node: { text: '', }, }; export interface Props extends GrafanaRouteComponentProps<{ code: string }> {} export const SignupInvitedPage: FC = ({ match }) => { const code = match.params.code; const [initFormModel, setInitFormModel] = useState(); const [greeting, setGreeting] = useState(); const [invitedBy, setInvitedBy] = useState(); useAsync(async () => { const invite = await getBackendSrv().get(`/api/user/invite/${code}`); setInitFormModel({ email: invite.email, name: invite.name, username: invite.email, }); setGreeting(invite.name || invite.email || invite.username); setInvitedBy(invite.invitedBy); }, [code]); const onSubmit = async (formData: FormModel) => { await getBackendSrv().post('/api/user/invite/complete', { ...formData, inviteCode: code }); window.location.href = getConfig().appSubUrl + '/'; }; if (!initFormModel) { return null; } return (

Hello {greeting || 'there'}.

{invitedBy || 'Someone'} has invited you to join Grafana and the organization{' '} {contextSrv.user.orgName}
Please complete the following and choose a password to accept your invitation and continue:
{({ register, errors }) => ( <> )}
); }; export default SignupInvitedPage;