| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- import React, { useState, useEffect } from 'react';
- import { useTranslation } from 'next-i18next';
- import PropTypes from 'prop-types';
- import { apiv3Put } from '~/client/util/apiv3-client';
- import { toastSuccess, toastError } from '~/client/util/toastr';
- import AdminUpdateButtonRow from '../Common/AdminUpdateButtonRow';
- const CustomBotWithoutProxySecretTokenSection = (props) => {
- const {
- slackSigningSecret, slackBotToken, slackSigningSecretEnv, slackBotTokenEnv, onUpdatedSecretToken,
- } = props;
- const { t } = useTranslation();
- const [inputSigningSecret, setInputSigningSecret] = useState(slackSigningSecret || '');
- const [inputBotToken, setInputBotToken] = useState(slackBotToken || '');
- // update states when props are updated
- useEffect(() => {
- setInputSigningSecret(slackSigningSecret || '');
- }, [slackSigningSecret]);
- useEffect(() => {
- setInputBotToken(slackBotToken || '');
- }, [slackBotToken]);
- const updatedSecretToken = async() => {
- try {
- await apiv3Put('/slack-integration-settings/without-proxy/update-settings', {
- slackSigningSecret: inputSigningSecret,
- slackBotToken: inputBotToken,
- });
- if (onUpdatedSecretToken != null) {
- onUpdatedSecretToken(inputSigningSecret, inputBotToken);
- }
- toastSuccess(t('toaster.update_successed', { target: t('admin:slack_integration.custom_bot_without_proxy_settings'), ns: 'commons' }));
- }
- catch (err) {
- toastError(err);
- }
- };
- return (
- <div className="w-75 mx-auto">
- <h3>Signing Secret</h3>
- <div className="row">
- <div className="col-sm">
- <p>Database</p>
- <input
- className="form-control"
- type="text"
- value={inputSigningSecret}
- onChange={e => setInputSigningSecret(e.target.value)}
- />
- </div>
- <div className="col-sm">
- <p>Environment variables</p>
- <input
- className="form-control"
- type="text"
- defaultValue={slackSigningSecretEnv}
- readOnly
- />
- <p className="form-text text-muted">
- {/* eslint-disable-next-line max-len, react/no-danger */}
- <small dangerouslySetInnerHTML={{ __html: t('admin:slack_integration.use_env_var_if_empty', { variable: 'SLACKBOT_WITHOUT_PROXY_SIGNING_SECRET' }) }} />
- </p>
- </div>
- </div>
- <h3>Bot User OAuth Token</h3>
- <div className="row">
- <div className="col-sm">
- <p>Database</p>
- <input
- className="form-control"
- type="text"
- value={inputBotToken}
- onChange={e => setInputBotToken(e.target.value)}
- />
- </div>
- <div className="col-sm">
- <p>Environment variables</p>
- <input
- className="form-control"
- type="text"
- defaultValue={slackBotTokenEnv}
- readOnly
- />
- <p className="form-text text-muted">
- {/* eslint-disable-next-line react/no-danger */}
- <small dangerouslySetInnerHTML={{ __html: t('admin:slack_integration.use_env_var_if_empty', { variable: 'SLACKBOT_WITHOUT_PROXY_BOT_TOKEN' }) }} />
- </p>
- </div>
- </div>
- <AdminUpdateButtonRow onClick={updatedSecretToken} disabled={false} />
- </div>
- );
- };
- CustomBotWithoutProxySecretTokenSection.propTypes = {
- onUpdatedSecretToken: PropTypes.func,
- slackSigningSecret: PropTypes.string,
- slackSigningSecretEnv: PropTypes.string,
- slackBotToken: PropTypes.string,
- slackBotTokenEnv: PropTypes.string,
- };
- export default CustomBotWithoutProxySecretTokenSection;
|