| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172 |
- import React, { useState, useEffect, useCallback } from 'react';
- import PropTypes from 'prop-types';
- import { useTranslation } from 'react-i18next';
- import AppContainer from '../../../services/AppContainer';
- import { withUnstatedContainers } from '../../UnstatedUtils';
- import { toastSuccess, toastError } from '../../../util/apiNotification';
- import OfficialBotSettings from './OfficialBotSettings';
- import CustomBotWithoutProxySettings from './CustomBotWithoutProxySettings';
- import CustomBotWithProxySettings from './CustomBotWithProxySettings';
- import ConfirmBotChangeModal from './ConfirmBotChangeModal';
- import BotTypeCard from './BotTypeCard';
- const botTypes = ['officialBot', 'customBotWithoutProxy', 'customBotWithProxy'];
- const SlackIntegration = (props) => {
- const { appContainer } = props;
- const { t } = useTranslation();
- const [currentBotType, setCurrentBotType] = useState(null);
- const [selectedBotType, setSelectedBotType] = useState(null);
- const [slackSigningSecret, setSlackSigningSecret] = useState(null);
- const [slackBotToken, setSlackBotToken] = useState(null);
- const [slackSigningSecretEnv, setSlackSigningSecretEnv] = useState('');
- const [slackBotTokenEnv, setSlackBotTokenEnv] = useState('');
- const [isConnectedToSlack, setIsConnectedToSlack] = useState(false);
- const [isRegisterSlackCredentials, setIsRegisterSlackCredentials] = useState(false);
- const [isSendTestMessage, setIsSendTestMessage] = useState(false);
- const [isSetupSlackBot, setIsSetupSlackBot] = useState(false);
- const fetchData = useCallback(async() => {
- try {
- const response = await appContainer.apiv3.get('slack-integration/');
- const { currentBotType, customBotWithoutProxySettings } = response.data.slackBotSettingParams;
- const {
- slackSigningSecret, slackBotToken, slackSigningSecretEnvVars, slackBotTokenEnvVars,
- isSetupSlackBot, isConnectedToSlack,
- } = customBotWithoutProxySettings;
- setCurrentBotType(currentBotType);
- setSlackSigningSecret(slackSigningSecret);
- setSlackBotToken(slackBotToken);
- setSlackSigningSecretEnv(slackSigningSecretEnvVars);
- setSlackBotTokenEnv(slackBotTokenEnvVars);
- setIsSetupSlackBot(isSetupSlackBot);
- setIsConnectedToSlack(isConnectedToSlack);
- if (isConnectedToSlack) {
- setIsRegisterSlackCredentials(true);
- }
- }
- catch (err) {
- toastError(err);
- }
- }, [appContainer.apiv3]);
- useEffect(() => {
- fetchData();
- }, [fetchData]);
- const handleBotTypeSelect = (clickedBotType) => {
- if (clickedBotType === currentBotType) {
- return;
- }
- if (currentBotType === null) {
- setCurrentBotType(clickedBotType);
- return;
- }
- setSelectedBotType(clickedBotType);
- };
- const cancelBotChangeHandler = () => {
- setSelectedBotType(null);
- };
- const changeCurrentBotSettingsHandler = async() => {
- try {
- const res = await appContainer.apiv3.put('slack-integration/custom-bot-without-proxy', {
- slackSigningSecret: '',
- slackBotToken: '',
- currentBotType: selectedBotType,
- });
- setCurrentBotType(res.data.customBotWithoutProxySettingParams.slackBotType);
- setSelectedBotType(null);
- toastSuccess(t('admin:slack_integration.bot_reset_successful'));
- setIsRegisterSlackCredentials(false);
- setSlackSigningSecret(null);
- setSlackBotToken(null);
- setIsSendTestMessage(false);
- }
- catch (err) {
- toastError(err);
- }
- };
- let settingsComponent = null;
- switch (currentBotType) {
- case 'officialBot':
- settingsComponent = <OfficialBotSettings />;
- break;
- case 'customBotWithoutProxy':
- settingsComponent = (
- <CustomBotWithoutProxySettings
- isSendTestMessage={isSendTestMessage}
- isRegisterSlackCredentials={isRegisterSlackCredentials}
- isConnectedToSlack={isConnectedToSlack}
- slackBotTokenEnv={slackBotTokenEnv}
- slackBotToken={slackBotToken}
- slackSigningSecretEnv={slackSigningSecretEnv}
- slackSigningSecret={slackSigningSecret}
- isSetupSlackBot={isSetupSlackBot}
- onSetSlackSigningSecret={setSlackSigningSecret}
- onSetSlackBotToken={setSlackBotToken}
- onSetIsSendTestMessage={setIsSendTestMessage}
- onSetIsRegisterSlackCredentials={setIsRegisterSlackCredentials}
- />
- );
- break;
- case 'customBotWithProxy':
- settingsComponent = <CustomBotWithProxySettings />;
- break;
- }
- return (
- <>
- <ConfirmBotChangeModal
- isOpen={selectedBotType != null}
- onConfirmClick={changeCurrentBotSettingsHandler}
- onCancelClick={cancelBotChangeHandler}
- />
- <div className="selecting-bot-type my-5">
- <h2 className="admin-setting-header mb-4">
- {t('admin:slack_integration.selecting_bot_types.slack_bot')}
- {/* TODO: add an appropriate link by GW-5614 */}
- <a className="ml-2 btn-link" href="#">
- {t('admin:slack_integration.selecting_bot_types.detailed_explanation')}
- <i className="fa fa-external-link ml-1" aria-hidden="true"></i>
- </a>
- </h2>
- {t('admin:slack_integration.selecting_bot_types.selecting_bot_type')}
- <div className="row my-4 flex-wrap-reverse justify-content-center">
- {botTypes.map((botType) => {
- return (
- <div className="m-3">
- <BotTypeCard
- key={botType}
- botType={botType}
- isActive={currentBotType === botType}
- handleBotTypeSelect={handleBotTypeSelect}
- />
- </div>
- );
- })}
- </div>
- </div>
- {settingsComponent}
- </>
- );
- };
- const SlackIntegrationWrapper = withUnstatedContainers(SlackIntegration, [AppContainer]);
- SlackIntegration.propTypes = {
- appContainer: PropTypes.instanceOf(AppContainer).isRequired,
- };
- export default SlackIntegrationWrapper;
|