| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- 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>
- <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') }
- </p>
- <p className="help-block">
- { t('customize_page.performance_decrease') }<br />
- { t('customize_page.list_page_display') }
- </p>
- </CustomizeFunctionOption>
- <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>
- <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>
- <AdminDropdownOption
- label={t('customize_page.recent_created__n_draft_num_desc')}
- value={adminCustomizeContainer.state.currentRecentCreatedLimit}
- onChange={(value) => { adminCustomizeContainer.switchRecentCreatedLimit(value) }}
- options={[10, 30, 50]}
- >
- <p className="help-block">
- { t('customize_page.recently_created_n_draft_num_desc') }
- </p>
- </AdminDropdownOption>
- <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);
|