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/OrgProfile.tsx

39 lines
1.2 KiB

import { Trans, t } from '@grafana/i18n';
import { Input, Field, FieldSet, Button } from '@grafana/ui';
import { Form } from 'app/core/components/Form/Form';
import { contextSrv } from 'app/core/core';
import { AccessControlAction } from 'app/types';
export interface Props {
orgName: string;
onSubmit: (orgName: string) => void;
}
interface FormDTO {
orgName: string;
}
const OrgProfile = ({ onSubmit, orgName }: Props) => {
const canWriteOrg = contextSrv.hasPermission(AccessControlAction.OrgsWrite);
return (
<Form defaultValues={{ orgName }} onSubmit={({ orgName }: FormDTO) => onSubmit(orgName)}>
{({ register }) => (
<FieldSet
label={t('org.org-profile.label-organization-profile', 'Organization profile')}
disabled={!canWriteOrg}
>
<Field label={t('org.org-profile.label-organization-name', 'Organization name')}>
<Input id="org-name-input" type="text" {...register('orgName', { required: true })} />
</Field>
<Button type="submit">
<Trans i18nKey="org.org-profile.update-organization-name">Update organization name</Trans>
</Button>
</FieldSet>
)}
</Form>
);
};
export default OrgProfile;