|
@@ -1,40 +0,0 @@
|
|
|
-import React, { Fragment } from 'react';
|
|
|
|
|
-
|
|
|
|
|
-import PropTypes from 'prop-types';
|
|
|
|
|
-import { useTranslation } from 'react-i18next';
|
|
|
|
|
-
|
|
|
|
|
-import AppContainer from '~/client/services/AppContainer';
|
|
|
|
|
-
|
|
|
|
|
-import { withUnstatedContainers } from '../UnstatedUtils';
|
|
|
|
|
-
|
|
|
|
|
-import ElasticsearchManagement from './ElasticsearchManagement/ElasticsearchManagement';
|
|
|
|
|
-
|
|
|
|
|
-
|
|
|
|
|
-class FullTextSearchManagement extends React.Component {
|
|
|
|
|
-
|
|
|
|
|
- render() {
|
|
|
|
|
- const { t } = this.props;
|
|
|
|
|
-
|
|
|
|
|
- return (
|
|
|
|
|
- <div data-testid="admin-full-text-search">
|
|
|
|
|
- <h2> { t('full_text_search_management.elasticsearch_management') } </h2>
|
|
|
|
|
- <ElasticsearchManagement />
|
|
|
|
|
- </div>
|
|
|
|
|
- );
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
-}
|
|
|
|
|
-
|
|
|
|
|
-FullTextSearchManagement.propTypes = {
|
|
|
|
|
- t: PropTypes.func.isRequired, // i18next
|
|
|
|
|
- appContainer: PropTypes.instanceOf(AppContainer).isRequired,
|
|
|
|
|
-};
|
|
|
|
|
-
|
|
|
|
|
-const FullTextSearchManagementWrapperFC = (props) => {
|
|
|
|
|
- const { t } = useTranslation();
|
|
|
|
|
- return <FullTextSearchManagement t={t} {...props} />;
|
|
|
|
|
-};
|
|
|
|
|
-
|
|
|
|
|
-const FullTextSearchManagementWrapper = withUnstatedContainers(FullTextSearchManagementWrapperFC, [AppContainer]);
|
|
|
|
|
-
|
|
|
|
|
-export default FullTextSearchManagementWrapper;
|
|
|