| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788 |
- import React from 'react';
- import PropTypes from 'prop-types';
- import { withTranslation } from 'react-i18next';
- import { createSubscribedElement } from '../../UnstatedUtils';
- import AppContainer from '../../../services/AppContainer';
- class PluginSetting extends React.Component {
- constructor(props) {
- super(props);
- this.state = {
- };
- }
- render() {
- const { t } = this.props;
- return (
- <React.Fragment>
- <p className="well">{ t('app_setting.Enable plugin loading') }</p>
- <div className="row">
- <div className="col-md-12">
- <div className="form-group">
- <label className="col-xs-3 control-label">{ t('app_setting.Load plugins') }</label>
- <div className="col-xs-6">
- <div className="btn-group btn-toggle" data-toggle="buttons">
- <label
- className="btn btn-default btn-rounded btn-outline {% if getConfig('crowi', 'plugin:isEnabledPlugins') %}active{% endif %}"
- data-active-class="primary"
- >
- <input
- name="settingForm[plugin:isEnabledPlugins]"
- value="true"
- type="radio"
- />
- ON
- </label>
- <label
- className="btn btn-default btn-rounded btn-outline {% if !getConfig('crowi', 'plugin:isEnabledPlugins') %}active{% endif %}"
- data-active-class="default"
- >
- <input name="settingForm[plugin:isEnabledPlugins]" />
- OFF
- </label>
- </div>
- </div>
- </div>
- </div>
- </div>
- <div className="row">
- <div className="col-md-12">
- <div className="form-group">
- <div className="col-xs-offset-3 col-xs-6">
- <input type="hidden" name="_csrf" value="{{ csrf() }}" />
- <button type="submit" className="btn btn-primary">
- {t('app_setting.Update')}
- </button>
- </div>
- </div>
- </div>
- </div>
- </React.Fragment>
- );
- }
- }
- /**
- * Wrapper component for using unstated
- */
- const PluginSettingWrapper = (props) => {
- return createSubscribedElement(PluginSetting, props, [AppContainer]);
- };
- PluginSetting.propTypes = {
- t: PropTypes.func.isRequired, // i18next
- appContainer: PropTypes.instanceOf(AppContainer).isRequired,
- };
- export default withTranslation()(PluginSettingWrapper);
|