qotnews/webclient/src/pages/Results.js

77 lines
1.5 KiB
JavaScript
Raw Normal View History

2019-10-12 05:32:17 +00:00
import React from 'react';
import { Helmet } from 'react-helmet';
2019-11-07 22:08:28 +00:00
import AbortController from 'abort-controller';
import { StoryItem } from '../components/StoryItem.js';
2019-10-12 05:32:17 +00:00
class Results extends React.Component {
constructor(props) {
super(props);
this.state = {
stories: false,
error: false,
};
2019-11-07 22:08:28 +00:00
this.controller = null;
2019-10-12 05:32:17 +00:00
}
performSearch = () => {
2019-11-07 22:08:28 +00:00
if (this.controller) {
this.controller.abort();
}
this.controller = new AbortController();
const signal = this.controller.signal;
2019-10-12 05:32:17 +00:00
const search = this.props.location.search;
2019-11-07 22:08:28 +00:00
fetch('/api/search' + search, { method: 'get', signal: signal })
2019-10-12 05:32:17 +00:00
.then(res => res.json())
.then(
(result) => {
this.setState({ stories: result.results });
},
(error) => {
2019-11-07 22:08:28 +00:00
if (error.message !== 'The operation was aborted. ') {
this.setState({ error: true });
}
2019-10-12 05:32:17 +00:00
}
);
}
componentDidMount() {
this.performSearch();
}
componentDidUpdate(prevProps) {
if (this.props.location.search !== prevProps.location.search) {
this.performSearch();
}
}
render() {
const stories = this.state.stories;
const error = this.state.error;
return (
<div className='container'>
<Helmet>
<title>Feed - QotNews</title>
</Helmet>
{error && <p>Connection error?</p>}
{stories ?
<>
<p>Search results:</p>
<div className='comment lined'>
{stories ? stories.map(story => <StoryItem story={story}></StoryItem>) : <p>loading...</p>}
</div>
</>
:
2019-10-12 05:32:17 +00:00
<p>loading...</p>
}
</div>
);
}
}
export default Results;