| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104 |
- import React from 'react';
- import { useTranslation } from 'react-i18next';
- import PropTypes from 'prop-types';
- import AdminUpdateButtonRow from '../Common/AdminUpdateButtonRow';
- const CustomBotWithoutProxySecretTokenSection = (props) => {
- const { t } = useTranslation();
- const onChangeSigningSecretHandler = (signingSecretInput) => {
- if (props.onChangeSigningSecretHandler != null) {
- props.onChangeSigningSecretHandler(signingSecretInput);
- }
- };
- const onChangeBotTokenHandler = (botTokenInput) => {
- if (props.onChangeBotTokenHandler != null) {
- props.onChangeBotTokenHandler(botTokenInput);
- }
- };
- const updateSecretTokenHandler = () => {
- if (props.updateSecretTokenHandler != null) {
- props.updateSecretTokenHandler();
- }
- };
- 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={props.slackSigningSecret || ''}
- onChange={e => onChangeSigningSecretHandler(e.target.value)}
- />
- </div>
- <div className="col-sm">
- <p>Environment variables</p>
- <input
- className="form-control"
- type="text"
- value={props.slackSigningSecretEnv || ''}
- 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: 'SLACK_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={props.slackBotToken || ''}
- onChange={e => onChangeBotTokenHandler(e.target.value)}
- />
- </div>
- <div className="col-sm">
- <p>Environment variables</p>
- <input
- className="form-control"
- type="text"
- value={props.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: 'SLACK_BOT_TOKEN' }) }} />
- </p>
- </div>
- </div>
- <AdminUpdateButtonRow onClick={updateSecretTokenHandler} disabled={false} />
- </div>
- );
- };
- CustomBotWithoutProxySecretTokenSection.propTypes = {
- updateSecretTokenHandler: PropTypes.func,
- onChangeSigningSecretHandler: PropTypes.func,
- onChangeBotTokenHandler: PropTypes.func,
- slackSigningSecret: PropTypes.string,
- slackSigningSecretEnv: PropTypes.string,
- slackBotToken: PropTypes.string,
- slackBotTokenEnv: PropTypes.string,
- };
- export default CustomBotWithoutProxySecretTokenSection;
|