mirror of
https://github.com/grafana/grafana.git
synced 2025-02-11 16:15:42 -06:00
66 lines
2.1 KiB
TypeScript
66 lines
2.1 KiB
TypeScript
import React, { FC } from 'react';
|
|
import Page from 'app/core/components/Page/Page';
|
|
import { Button, Input, Field, Form } from '@grafana/ui';
|
|
import { StoreState } from 'app/types';
|
|
import { connect, ConnectedProps } from 'react-redux';
|
|
import { getNavModel } from '../../core/selectors/navModel';
|
|
import { createOrganization } from './state/actions';
|
|
import { getConfig } from 'app/core/config';
|
|
|
|
const mapStateToProps = (state: StoreState) => {
|
|
return { navModel: getNavModel(state.navIndex, 'global-orgs') };
|
|
};
|
|
|
|
const mapDispatchToProps = {
|
|
createOrganization,
|
|
};
|
|
|
|
const connector = connect(mapStateToProps, mapDispatchToProps);
|
|
|
|
type Props = ConnectedProps<typeof connector>;
|
|
|
|
interface CreateOrgFormDTO {
|
|
name: string;
|
|
}
|
|
|
|
export const NewOrgPage: FC<Props> = ({ navModel, createOrganization }) => {
|
|
const createOrg = async (newOrg: { name: string }) => {
|
|
await createOrganization(newOrg);
|
|
window.location.href = getConfig().appSubUrl + '/org';
|
|
};
|
|
|
|
return (
|
|
<Page navModel={navModel}>
|
|
<Page.Contents>
|
|
<h3 className="page-sub-heading">New organization</h3>
|
|
|
|
<p className="playlist-description">
|
|
Each organization contains their own dashboards, data sources, and configuration, which cannot be shared
|
|
shared between organizations. While users might belong to more than one organization, multiple organizations
|
|
are most frequently used in multi-tenant deployments.{' '}
|
|
</p>
|
|
|
|
<Form<CreateOrgFormDTO> onSubmit={createOrg}>
|
|
{({ register, errors }) => {
|
|
return (
|
|
<>
|
|
<Field label="Organization name" invalid={!!errors.name} error={errors.name && errors.name.message}>
|
|
<Input
|
|
placeholder="Org name"
|
|
{...register('name', {
|
|
required: 'Organization name is required',
|
|
})}
|
|
/>
|
|
</Field>
|
|
<Button type="submit">Create</Button>
|
|
</>
|
|
);
|
|
}}
|
|
</Form>
|
|
</Page.Contents>
|
|
</Page>
|
|
);
|
|
};
|
|
|
|
export default connector(NewOrgPage);
|