|
@@ -1,174 +0,0 @@
|
|
|
-import React from 'react';
|
|
|
|
|
-import PropTypes from 'prop-types';
|
|
|
|
|
-import { withTranslation } from 'react-i18next';
|
|
|
|
|
-import { Card, CardBody } from 'reactstrap';
|
|
|
|
|
-
|
|
|
|
|
-import { withUnstatedContainers } from '../../UnstatedUtils';
|
|
|
|
|
-import { toastSuccess, toastError } from '~/client/util/apiNotification';
|
|
|
|
|
-
|
|
|
|
|
-import AppContainer from '~/client/services/AppContainer';
|
|
|
|
|
-
|
|
|
|
|
-import AdminCustomizeContainer from '~/client/services/AdminCustomizeContainer';
|
|
|
|
|
-import AdminUpdateButtonRow from '../Common/AdminUpdateButtonRow';
|
|
|
|
|
-import CustomizeFunctionOption from './CustomizeFunctionOption';
|
|
|
|
|
-import PagingSizeUncontrolledDropdown from './PagingSizeUncontrolledDropdown';
|
|
|
|
|
-
|
|
|
|
|
-class CustomizeFunctionSetting extends React.Component {
|
|
|
|
|
-
|
|
|
|
|
- constructor(props) {
|
|
|
|
|
- super(props);
|
|
|
|
|
-
|
|
|
|
|
- this.state = {
|
|
|
|
|
- };
|
|
|
|
|
- this.onClickSubmit = this.onClickSubmit.bind(this);
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- async onClickSubmit() {
|
|
|
|
|
- const { t, adminCustomizeContainer } = this.props;
|
|
|
|
|
-
|
|
|
|
|
- try {
|
|
|
|
|
- await adminCustomizeContainer.updateCustomizeFunction();
|
|
|
|
|
- toastSuccess(t('toaster.update_successed', { target: t('admin:customize_setting.function') }));
|
|
|
|
|
- }
|
|
|
|
|
- catch (err) {
|
|
|
|
|
- toastError(err);
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
- render() {
|
|
|
|
|
- const { t, adminCustomizeContainer } = this.props;
|
|
|
|
|
-
|
|
|
|
|
- return (
|
|
|
|
|
- <React.Fragment>
|
|
|
|
|
- <div className="row">
|
|
|
|
|
- <div className="col-12">
|
|
|
|
|
- <h2 className="admin-setting-header">{t('admin:customize_setting.function')}</h2>
|
|
|
|
|
- <Card className="card well my-3">
|
|
|
|
|
- <CardBody className="px-0 py-2">
|
|
|
|
|
- {t('admin:customize_setting.function_desc')}
|
|
|
|
|
- </CardBody>
|
|
|
|
|
- </Card>
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
- <div className="form-group row">
|
|
|
|
|
- <div className="offset-md-3 col-md-6 text-left">
|
|
|
|
|
- <CustomizeFunctionOption
|
|
|
|
|
- optionId="isSavedStatesOfTabChanges"
|
|
|
|
|
- label={t('admin:customize_setting.function_options.tab_switch')}
|
|
|
|
|
- isChecked={adminCustomizeContainer.state.isSavedStatesOfTabChanges}
|
|
|
|
|
- onChecked={() => { adminCustomizeContainer.switchSavedStatesOfTabChanges() }}
|
|
|
|
|
- >
|
|
|
|
|
- <p className="form-text text-muted">
|
|
|
|
|
- {t('admin:customize_setting.function_options.tab_switch_desc1')}<br />
|
|
|
|
|
- {t('admin:customize_setting.function_options.tab_switch_desc2')}
|
|
|
|
|
- </p>
|
|
|
|
|
- </CustomizeFunctionOption>
|
|
|
|
|
- </div>
|
|
|
|
|
- </div>
|
|
|
|
|
- <div className="form-group row">
|
|
|
|
|
- <div className="offset-md-3 col-md-6 text-left">
|
|
|
|
|
- <CustomizeFunctionOption
|
|
|
|
|
- optionId="isEnabledAttachTitleHeader"
|
|
|
|
|
- label={t('admin:customize_setting.function_options.attach_title_header')}
|
|
|
|
|
- isChecked={adminCustomizeContainer.state.isEnabledAttachTitleHeader}
|
|
|
|
|
- onChecked={() => { adminCustomizeContainer.switchEnabledAttachTitleHeader() }}
|
|
|
|
|
- >
|
|
|
|
|
- <p className="form-text text-muted">
|
|
|
|
|
- {t('admin:customize_setting.function_options.attach_title_header_desc')}
|
|
|
|
|
- </p>
|
|
|
|
|
- </CustomizeFunctionOption>
|
|
|
|
|
- </div>
|
|
|
|
|
- </div>
|
|
|
|
|
-
|
|
|
|
|
- <PagingSizeUncontrolledDropdown
|
|
|
|
|
- label={t('admin:customize_setting.function_options.list_num_s')}
|
|
|
|
|
- desc={t('admin:customize_setting.function_options.list_num_desc_s')}
|
|
|
|
|
- toggleLabel={adminCustomizeContainer.state.pageLimitationS || 20}
|
|
|
|
|
- dropdownItemSize={[10, 20, 50, 100]}
|
|
|
|
|
- onChangeDropdownItem={adminCustomizeContainer.switchPageListLimitationS}
|
|
|
|
|
- />
|
|
|
|
|
- <PagingSizeUncontrolledDropdown
|
|
|
|
|
- label={t('admin:customize_setting.function_options.list_num_m')}
|
|
|
|
|
- desc={t('admin:customize_setting.function_options.list_num_desc_m')}
|
|
|
|
|
- toggleLabel={adminCustomizeContainer.state.pageLimitationM || 10}
|
|
|
|
|
- dropdownItemSize={[5, 10, 20, 50, 100]}
|
|
|
|
|
- onChangeDropdownItem={adminCustomizeContainer.switchPageListLimitationM}
|
|
|
|
|
- />
|
|
|
|
|
- <PagingSizeUncontrolledDropdown
|
|
|
|
|
- label={t('admin:customize_setting.function_options.list_num_l')}
|
|
|
|
|
- desc={t('admin:customize_setting.function_options.list_num_desc_l')}
|
|
|
|
|
- toggleLabel={adminCustomizeContainer.state.pageLimitationL || 50}
|
|
|
|
|
- dropdownItemSize={[20, 50, 100, 200]}
|
|
|
|
|
- onChangeDropdownItem={adminCustomizeContainer.switchPageListLimitationL}
|
|
|
|
|
- />
|
|
|
|
|
- <PagingSizeUncontrolledDropdown
|
|
|
|
|
- label={t('admin:customize_setting.function_options.list_num_xl')}
|
|
|
|
|
- desc={t('admin:customize_setting.function_options.list_num_desc_xl')}
|
|
|
|
|
- toggleLabel={adminCustomizeContainer.state.pageLimitationXL || 20}
|
|
|
|
|
- dropdownItemSize={[5, 10, 20, 50, 100]}
|
|
|
|
|
- onChangeDropdownItem={adminCustomizeContainer.switchPageListLimitationXL}
|
|
|
|
|
- />
|
|
|
|
|
-
|
|
|
|
|
- <div className="form-group row">
|
|
|
|
|
- <div className="offset-md-3 col-md-6 text-left">
|
|
|
|
|
- <CustomizeFunctionOption
|
|
|
|
|
- optionId="isEnabledStaleNotification"
|
|
|
|
|
- label={t('admin:customize_setting.function_options.stale_notification')}
|
|
|
|
|
- isChecked={adminCustomizeContainer.state.isEnabledStaleNotification}
|
|
|
|
|
- onChecked={() => { adminCustomizeContainer.switchEnableStaleNotification() }}
|
|
|
|
|
- >
|
|
|
|
|
- <p className="form-text text-muted">
|
|
|
|
|
- {t('admin:customize_setting.function_options.stale_notification_desc')}
|
|
|
|
|
- </p>
|
|
|
|
|
- </CustomizeFunctionOption>
|
|
|
|
|
- </div>
|
|
|
|
|
- </div>
|
|
|
|
|
-
|
|
|
|
|
- <div className="form-group row">
|
|
|
|
|
- <div className="offset-md-3 col-md-6 text-left">
|
|
|
|
|
- <CustomizeFunctionOption
|
|
|
|
|
- optionId="isAllReplyShown"
|
|
|
|
|
- label={t('admin:customize_setting.function_options.show_all_reply_comments')}
|
|
|
|
|
- isChecked={adminCustomizeContainer.state.isAllReplyShown || false}
|
|
|
|
|
- onChecked={() => { adminCustomizeContainer.switchIsAllReplyShown() }}
|
|
|
|
|
- >
|
|
|
|
|
- <p className="form-text text-muted">
|
|
|
|
|
- {t('admin:customize_setting.function_options.show_all_reply_comments_desc')}
|
|
|
|
|
- </p>
|
|
|
|
|
- </CustomizeFunctionOption>
|
|
|
|
|
- </div>
|
|
|
|
|
- </div>
|
|
|
|
|
-
|
|
|
|
|
- <div className="form-group row">
|
|
|
|
|
- <div className="offset-md-3 col-md-6 text-left">
|
|
|
|
|
- <CustomizeFunctionOption
|
|
|
|
|
- optionId="isSearchScopeChildrenAsDefault"
|
|
|
|
|
- label={t('admin:customize_setting.function_options.select_search_scope_children_as_default')}
|
|
|
|
|
- isChecked={adminCustomizeContainer.state.isSearchScopeChildrenAsDefault || false}
|
|
|
|
|
- onChecked={() => { adminCustomizeContainer.switchIsSearchScopeChildrenAsDefault() }}
|
|
|
|
|
- >
|
|
|
|
|
- <p className="form-text text-muted">
|
|
|
|
|
- {t('admin:customize_setting.function_options.select_search_scope_children_as_default_desc')}
|
|
|
|
|
- </p>
|
|
|
|
|
- </CustomizeFunctionOption>
|
|
|
|
|
- </div>
|
|
|
|
|
- </div>
|
|
|
|
|
-
|
|
|
|
|
- <AdminUpdateButtonRow onClick={this.onClickSubmit} disabled={adminCustomizeContainer.state.retrieveError != null} />
|
|
|
|
|
- </div>
|
|
|
|
|
- </div>
|
|
|
|
|
- </React.Fragment>
|
|
|
|
|
- );
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-const CustomizeFunctionSettingWrapper = withUnstatedContainers(CustomizeFunctionSetting, [AppContainer, AdminCustomizeContainer]);
|
|
|
|
|
-
|
|
|
|
|
-CustomizeFunctionSetting.propTypes = {
|
|
|
|
|
- t: PropTypes.func.isRequired, // i18next
|
|
|
|
|
- appContainer: PropTypes.instanceOf(AppContainer).isRequired,
|
|
|
|
|
- adminCustomizeContainer: PropTypes.instanceOf(AdminCustomizeContainer).isRequired,
|
|
|
|
|
-};
|
|
|
|
|
-
|
|
|
|
|
-export default withTranslation()(CustomizeFunctionSettingWrapper);
|
|
|