grafana/public/app/features/alerting/components/ChannelSettings.tsx

37 lines
1.2 KiB
TypeScript
Raw Normal View History

import React, { FC } from 'react';
import { CollapsableSection, InfoBox } from '@grafana/ui';
import { NotificationChannelOptions } from './NotificationChannelOptions';
import { NotificationSettingsProps } from './NotificationChannelForm';
import { NotificationChannelSecureFields, NotificationChannelType } from '../../../types';
interface Props extends NotificationSettingsProps {
selectedChannel: NotificationChannelType;
secureFields: NotificationChannelSecureFields;
resetSecureField: (key: string) => void;
}
export const ChannelSettings: FC<Props> = ({
control,
currentFormValues,
errors,
selectedChannel,
secureFields,
register,
resetSecureField,
}) => {
return (
<CollapsableSection label={`Optional ${selectedChannel.heading}`} isOpen={false}>
{selectedChannel.info !== '' && <InfoBox>{selectedChannel.info}</InfoBox>}
<NotificationChannelOptions
selectedChannelOptions={selectedChannel.options.filter(o => !o.required)}
currentFormValues={currentFormValues}
register={register}
errors={errors}
control={control}
onResetSecureField={resetSecureField}
secureFields={secureFields}
/>
</CollapsableSection>
);
};