| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- 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 (
- <Fragment>
- <div>
- <button type="submit" className="btn btn-inverse" onClick={this.buildIndex}>Build Now</button>
- </div>
- </Fragment>
- );
- }
- }
- const FullTextSearchManagementWrapper = (props) => {
- return createSubscribedElement(FullTextSearchManagement, props, [AppContainer]);
- };
- FullTextSearchManagement.propTypes = {
- appContainer: PropTypes.instanceOf(AppContainer).isRequired,
- };
- export default FullTextSearchManagementWrapper;
|