palash-signoz f1f606844a
chore: Eslint fix config (#882)
* chore: eslint config is updated

* chore: eslint auto fix is added
2022-03-22 12:10:31 +05:30

98 lines
2.4 KiB
TypeScript

import { Form, notification } from 'antd';
import editSlackApi from 'api/channels/editSlack';
import ROUTES from 'constants/routes';
import {
ChannelType,
SlackChannel,
} from 'container/CreateAlertChannels/config';
import FormAlertChannels from 'container/FormAlertChannels';
import history from 'lib/history';
import { Store } from 'rc-field-form/lib/interface';
import React, { useCallback, useState } from 'react';
import { useParams } from 'react-router';
function EditAlertChannels({
initialValue,
}: EditAlertChannelsProps): JSX.Element {
const [formInstance] = Form.useForm();
const [selectedConfig, setSelectedConfig] = useState<Partial<SlackChannel>>({
...initialValue,
});
const [savingState, setSavingState] = useState<boolean>(false);
const [notifications, NotificationElement] = notification.useNotification();
const { id } = useParams<{ id: string }>();
const [type, setType] = useState<ChannelType>('slack');
const onTypeChangeHandler = useCallback((value: string) => {
setType(value as ChannelType);
}, []);
const onSlackEditHandler = useCallback(async () => {
setSavingState(true);
const response = await editSlackApi({
api_url: selectedConfig?.api_url || '',
channel: selectedConfig?.channel || '',
name: selectedConfig?.name || '',
send_resolved: true,
text: selectedConfig?.text || '',
title: selectedConfig?.title || '',
id,
});
if (response.statusCode === 200) {
notifications.success({
message: 'Success',
description: 'Channels Edited Successfully',
});
setTimeout(() => {
history.replace(ROUTES.SETTINGS);
}, 2000);
} else {
notifications.error({
message: 'Error',
description: response.error || 'error while updating the Channels',
});
}
setSavingState(false);
}, [selectedConfig, notifications, id]);
const onSaveHandler = useCallback(
(value: ChannelType) => {
if (value === 'slack') {
onSlackEditHandler();
}
},
[onSlackEditHandler],
);
const onTestHandler = useCallback(() => {
console.log('test');
}, []);
return (
<FormAlertChannels
{...{
formInstance,
onTypeChangeHandler,
setSelectedConfig,
type,
onTestHandler,
onSaveHandler,
savingState,
NotificationElement,
title: 'Edit Notification Channels',
initialValue,
nameDisable: true,
}}
/>
);
}
interface EditAlertChannelsProps {
initialValue: Store;
}
export default EditAlertChannels;