|
|
@@ -0,0 +1,128 @@
|
|
|
+import React from 'react';
|
|
|
+import PropTypes from 'prop-types';
|
|
|
+import { withTranslation } from 'react-i18next';
|
|
|
+
|
|
|
+import loggerFactory from '@alias/logger';
|
|
|
+
|
|
|
+import { createSubscribedElement } from '../../UnstatedUtils';
|
|
|
+import { toastSuccess, toastError } from '../../../util/apiNotification';
|
|
|
+
|
|
|
+import AppContainer from '../../../services/AppContainer';
|
|
|
+
|
|
|
+import AdminCustomizeContainer from '../../../services/AdminCustomizeContainer';
|
|
|
+import AdminUpdateButtonRow from '../Common/AdminUpdateButtonRow';
|
|
|
+import CustomizeFunctionOption from './CustomizeFunctionOption';
|
|
|
+import AdminDropdownOption from '../Common/AdminDropdownOption';
|
|
|
+
|
|
|
+const logger = loggerFactory('growi:importer');
|
|
|
+
|
|
|
+class CustomizeBehaviorSetting extends React.Component {
|
|
|
+
|
|
|
+ constructor(props) {
|
|
|
+ super(props);
|
|
|
+
|
|
|
+ this.onClickSubmit = this.onClickSubmit.bind(this);
|
|
|
+ }
|
|
|
+
|
|
|
+ async onClickSubmit() {
|
|
|
+ const { t, adminCustomizeContainer } = this.props;
|
|
|
+
|
|
|
+ try {
|
|
|
+ await adminCustomizeContainer.updateCustomizeFunction();
|
|
|
+ toastSuccess(t('customize_page.update_function_success'));
|
|
|
+ }
|
|
|
+ catch (err) {
|
|
|
+ toastError(err);
|
|
|
+ logger.error(err);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ render() {
|
|
|
+ const { t, adminCustomizeContainer } = this.props;
|
|
|
+
|
|
|
+ return (
|
|
|
+ <React.Fragment>
|
|
|
+ <h2>{t('customize_page.Function')}</h2>
|
|
|
+ <p className="well">{ t('customize_page.function_choose') }</p>
|
|
|
+
|
|
|
+ <div className="form-group row">
|
|
|
+ <div className="col-xs-offset-3 col-xs-6 text-left">
|
|
|
+ <CustomizeFunctionOption
|
|
|
+ optionId="isEnabledTimeline"
|
|
|
+ label={t('customize_page.Timeline function')}
|
|
|
+ isChecked={adminCustomizeContainer.state.isEnabledTimeline}
|
|
|
+ onChecked={() => { adminCustomizeContainer.switchEnableTimeline() }}
|
|
|
+ >
|
|
|
+ <p className="help-block">
|
|
|
+ { t('customize_page.subpage_display') }<br />
|
|
|
+ { t('customize_page.performance_decrease') }<br />
|
|
|
+ { t('customize_page.list_page_display') }
|
|
|
+ </p>
|
|
|
+ </CustomizeFunctionOption>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="form-group row">
|
|
|
+ <div className="col-xs-offset-3 col-xs-6 text-left">
|
|
|
+ <CustomizeFunctionOption
|
|
|
+ optionId="isSavedStatesOfTabChanges"
|
|
|
+ label={t('customize_page.tab_switch')}
|
|
|
+ isChecked={adminCustomizeContainer.state.isSavedStatesOfTabChanges}
|
|
|
+ onChecked={() => { adminCustomizeContainer.switchSavedStatesOfTabChanges() }}
|
|
|
+ >
|
|
|
+ <p className="help-block">
|
|
|
+ { t('customize_page.save_edit') }<br />
|
|
|
+ { t('customize_page.by_invalidating') }
|
|
|
+ </p>
|
|
|
+ </CustomizeFunctionOption>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="form-group row">
|
|
|
+ <div className="col-xs-offset-3 col-xs-6 text-left">
|
|
|
+ <CustomizeFunctionOption
|
|
|
+ optionId="isEnabledAttachTitleHeader"
|
|
|
+ label={t('customize_page.attach_title_header')}
|
|
|
+ isChecked={adminCustomizeContainer.state.isEnabledAttachTitleHeader}
|
|
|
+ onChecked={() => { adminCustomizeContainer.switchEnabledAttachTitleHeader() }}
|
|
|
+ >
|
|
|
+ <p className="help-block">
|
|
|
+ { t('customize_page.attach_title_header_desc') }
|
|
|
+ </p>
|
|
|
+ </CustomizeFunctionOption>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <div className="form-group row">
|
|
|
+ <div className="col-xs-offset-3 col-xs-6 text-left">
|
|
|
+ <AdminDropdownOption
|
|
|
+ label={t('customize_page.recent_created__n_draft_num_desc')}
|
|
|
+ selectedValue={adminCustomizeContainer.state.currentRecentCreatedLimit}
|
|
|
+ onChangeValue={(value) => { adminCustomizeContainer.switchRecentCreatedLimit(value) }}
|
|
|
+ options={[10, 30, 50]}
|
|
|
+ >
|
|
|
+ <p className="help-block">
|
|
|
+ { t('customize_page.recently_created_n_draft_num_desc') }
|
|
|
+ </p>
|
|
|
+ </AdminDropdownOption>
|
|
|
+ </div>
|
|
|
+ </div>
|
|
|
+
|
|
|
+ <AdminUpdateButtonRow onClick={this.onClickSubmit} />
|
|
|
+ </React.Fragment>
|
|
|
+ );
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+const CustomizeBehaviorSettingWrapper = (props) => {
|
|
|
+ return createSubscribedElement(CustomizeBehaviorSetting, props, [AppContainer, AdminCustomizeContainer]);
|
|
|
+};
|
|
|
+
|
|
|
+CustomizeBehaviorSetting.propTypes = {
|
|
|
+ t: PropTypes.func.isRequired, // i18next
|
|
|
+ appContainer: PropTypes.instanceOf(AppContainer).isRequired,
|
|
|
+ adminCustomizeContainer: PropTypes.instanceOf(AdminCustomizeContainer).isRequired,
|
|
|
+};
|
|
|
+
|
|
|
+export default withTranslation()(CustomizeBehaviorSettingWrapper);
|