* plugin scaffolding / jira integration * add vendored testify packages * webhook fix * don't change i18n ids * support configuration watching * add basic jira plugin configuration to admin console * fix eslint errors * fix another eslint warning * polish * undo unintentional config.json commit >:( * test fix * add jira plugin diagnostics, remove dm support, add bot tag, generate web-safe secrets * rebase, implement requested changes * requested changes * remove tests and minimize makefile change * add missing license headers * add missing comma * remove bad line from Makefile
107 строки
3.2 KiB
JavaScript
107 строки
3.2 KiB
JavaScript
import PropTypes from 'prop-types';
|
|
|
|
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
import React from 'react';
|
|
|
|
import crypto from 'crypto';
|
|
|
|
import {FormattedMessage} from 'react-intl';
|
|
|
|
export default class GeneratedSetting extends React.Component {
|
|
static get propTypes() {
|
|
return {
|
|
id: PropTypes.string.isRequired,
|
|
label: PropTypes.node.isRequired,
|
|
placeholder: PropTypes.string,
|
|
value: PropTypes.string.isRequired,
|
|
onChange: PropTypes.func.isRequired,
|
|
disabled: PropTypes.bool.isRequired,
|
|
disabledText: PropTypes.node,
|
|
helpText: PropTypes.node.isRequired,
|
|
regenerateText: PropTypes.node,
|
|
regenerateHelpText: PropTypes.node
|
|
};
|
|
}
|
|
|
|
static get defaultProps() {
|
|
return {
|
|
disabled: false,
|
|
regenerateText: (
|
|
<FormattedMessage
|
|
id='admin.regenerate'
|
|
defaultMessage='Regenerate'
|
|
/>
|
|
)
|
|
};
|
|
}
|
|
|
|
constructor(props) {
|
|
super(props);
|
|
|
|
this.regenerate = this.regenerate.bind(this);
|
|
}
|
|
|
|
regenerate(e) {
|
|
e.preventDefault();
|
|
|
|
this.props.onChange(this.props.id, crypto.randomBytes(256).toString('base64').substring(0, 32));
|
|
}
|
|
|
|
render() {
|
|
let disabledText = null;
|
|
if (this.props.disabled && this.props.disabledText) {
|
|
disabledText = (
|
|
<div className='admin-console__disabled-text'>
|
|
{this.props.disabledText}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
let regenerateHelpText = null;
|
|
if (this.props.regenerateHelpText) {
|
|
regenerateHelpText = (
|
|
<div className='help-text'>
|
|
{this.props.regenerateHelpText}
|
|
</div>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<div className='form-group'>
|
|
<label
|
|
className='control-label col-sm-4'
|
|
htmlFor={this.props.id}
|
|
>
|
|
{this.props.label}
|
|
</label>
|
|
<div className='col-sm-8'>
|
|
<input
|
|
type='text'
|
|
className='form-control'
|
|
id={this.props.id}
|
|
placeholder={this.props.placeholder}
|
|
value={this.props.value}
|
|
disabled={true}
|
|
/>
|
|
{disabledText}
|
|
<div className='help-text'>
|
|
{this.props.helpText}
|
|
</div>
|
|
<div className='help-text'>
|
|
<button
|
|
className='btn btn-default'
|
|
onClick={this.regenerate}
|
|
disabled={this.props.disabled}
|
|
>
|
|
{this.props.regenerateText}
|
|
</button>
|
|
</div>
|
|
{regenerateHelpText}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
}
|