import React, { useState, useEffect } from 'react'; import { useTranslation } from 'react-i18next'; import PropTypes from 'prop-types'; import AppContainer from '../../../services/AppContainer'; import AdminAppContainer from '../../../services/AdminAppContainer'; import { withUnstatedContainers } from '../../UnstatedUtils'; import CustomBotWithoutProxySettingsAccordion, { botInstallationStep } from './CustomBotWithoutProxySettingsAccordion'; import CustomBotWithoutProxyConnectionStatus from './CustomBotWithoutProxyConnectionStatus'; import DeleteSlackBotSettingsModal from './DeleteSlackBotSettingsModal'; const CustomBotWithoutProxySettings = (props) => { const { appContainer, onResetSettings, connectionStatuses } = props; const { t } = useTranslation(); const [siteName, setSiteName] = useState(''); const [isDeleteConfirmModalShown, setIsDeleteConfirmModalShown] = useState(false); const [isIntegrationSuccess, setIsIntegrationSuccess] = useState(false); const [connectionMessage, setConnectionMessage] = useState(''); const [connectionErrorCode, setConnectionErrorCode] = useState(null); const [testChannel, setTestChannel] = useState(''); const resetSettings = async() => { if (onResetSettings == null) { return; } onResetSettings(); }; const testConnection = async() => { try { await appContainer.apiv3.post('/slack-integration-settings/without-proxy/test', { channel: testChannel }); setConnectionMessage('Send the message to slack work space.'); setIsIntegrationSuccess(true); } catch (err) { setConnectionErrorCode(err[0].code); setConnectionMessage(err[0].message); setIsIntegrationSuccess(false); } }; const inputTestChannelHandler = (channel) => { setTestChannel(channel); }; useEffect(() => { const siteName = appContainer.config.crowi.title; setSiteName(siteName); }, [appContainer]); return ( <>

{t('admin:slack_integration.custom_bot_without_proxy_integration')}

{t('admin:slack_integration.integration_procedure')}

{(props.slackSigningSecret || props.slackBotToken) && ( )}
{/* {isConnectedFailed && (<>Settings #1 {t('admin:slack_integration.integration_failed')})} */}
setIsDeleteConfirmModalShown(false)} onClickDeleteButton={resetSettings} /> ); }; const CustomBotWithoutProxySettingsWrapper = withUnstatedContainers(CustomBotWithoutProxySettings, [AppContainer, AdminAppContainer]); CustomBotWithoutProxySettings.propTypes = { appContainer: PropTypes.instanceOf(AppContainer).isRequired, adminAppContainer: PropTypes.instanceOf(AdminAppContainer).isRequired, slackSigningSecret: PropTypes.string, slackSigningSecretEnv: PropTypes.string, slackBotToken: PropTypes.string, slackBotTokenEnv: PropTypes.string, isRgisterSlackCredentials: PropTypes.bool, isIntegrationSuccess: PropTypes.bool, slackWSNameInWithoutProxy: PropTypes.string, onResetSettings: PropTypes.func, connectionStatuses: PropTypes.object.isRequired, }; export default CustomBotWithoutProxySettingsWrapper;