import React, { FC, useState } from 'react'; import { hot } from 'react-hot-loader'; import { connect, MapDispatchToProps, MapStateToProps } from 'react-redux'; import { StoreState } from 'app/types'; import { updateLocation } from 'app/core/actions'; import { getBackendSrv } from '@grafana/runtime'; import { Button, Field, Form, Input } from '@grafana/ui'; import { useAsync } from 'react-use'; import Page from 'app/core/components/Page/Page'; import { contextSrv } from 'app/core/core'; import { getConfig } from 'app/core/config'; import { UrlQueryValue } from '@grafana/data'; interface ConnectedProps { code?: UrlQueryValue; } interface DispatchProps { updateLocation: typeof updateLocation; } 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: '', }, }; const SingupInvitedPageUnconnected: FC = ({ 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); }, []); const onSubmit = async (formData: FormModel) => { await getBackendSrv().post('/api/user/invite/complete', { ...formData, inviteCode: code }); window.location.href = getConfig().appSubUrl + '/'; }; 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 }) => ( <> )}
); }; const mapStateToProps: MapStateToProps = (state: StoreState) => ({ code: state.location.routeParams.code, }); const mapDispatchToProps: MapDispatchToProps = { updateLocation, }; export default hot(module)(connect(mapStateToProps, mapDispatchToProps)(SingupInvitedPageUnconnected));