import React, { Fragment } from 'react'; import PropTypes from 'prop-types'; import AppContainer from '../../../services/AppContainer'; import { createSubscribedElement } from '../../UnstatedUtils'; import { toastSuccess, toastError } from '../../../util/apiNotification'; class FullTextSearchManagement extends React.Component { constructor(props) { super(props); this.buildIndex = this.buildIndex.bind(this); } async buildIndex() { const { appContainer } = this.props; const pageId = this.pageId; try { const res = await appContainer.apiPost('/admin/search/build', { page_id: pageId }); if (!res.ok) { throw new Error(); } else { toastSuccess('Building request is successfully posted.'); } } catch (e) { toastError(new Error('エラーが発生しました')); } } render() { return (
); } } const FullTextSearchManagementWrapper = (props) => { return createSubscribedElement(FullTextSearchManagement, props, [AppContainer]); }; FullTextSearchManagement.propTypes = { appContainer: PropTypes.instanceOf(AppContainer).isRequired, }; export default FullTextSearchManagementWrapper;