grafana/public/app/features/alerting/components/BasicSettings.tsx
Torkel Ödegaard 0132bca93a
Notifications: UX tweak to redesign of form and sections to make it left aligned and cleaner (#27479)
* UX: Redesign of form and sections to make it left aligned and cleaner

* reduced padding

* design tweaks
2020-09-11 08:10:07 +02:00

45 lines
1.5 KiB
TypeScript

import React, { FC } from 'react';
import { SelectableValue } from '@grafana/data';
import { Field, Input, InputControl, Select } from '@grafana/ui';
import { NotificationChannelOptions } from './NotificationChannelOptions';
import { NotificationSettingsProps } from './NotificationChannelForm';
import { NotificationChannelSecureFields, NotificationChannelType } from '../../../types';
interface Props extends NotificationSettingsProps {
selectedChannel: NotificationChannelType;
channels: Array<SelectableValue<string>>;
secureFields: NotificationChannelSecureFields;
resetSecureField: (key: string) => void;
}
export const BasicSettings: FC<Props> = ({
control,
currentFormValues,
errors,
secureFields,
selectedChannel,
channels,
register,
resetSecureField,
}) => {
return (
<>
<Field label="Name" invalid={!!errors.name} error={errors.name && errors.name.message}>
<Input name="name" ref={register({ required: 'Name is required' })} />
</Field>
<Field label="Type">
<InputControl name="type" as={Select} options={channels} control={control} rules={{ required: true }} />
</Field>
<NotificationChannelOptions
selectedChannelOptions={selectedChannel.options.filter(o => o.required)}
currentFormValues={currentFormValues}
secureFields={secureFields}
onResetSecureField={resetSecureField}
register={register}
errors={errors}
control={control}
/>
</>
);
};