2019-10-12 05:32:17 +00:00
|
|
|
import React from 'react';
|
|
|
|
import { Link } from 'react-router-dom';
|
|
|
|
import { Helmet } from 'react-helmet';
|
2019-12-14 07:39:25 +00:00
|
|
|
import { sourceLink, infoLine, logos } from './utils.js';
|
2019-11-07 22:08:28 +00:00
|
|
|
import AbortController from 'abort-controller';
|
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 ?
|
2020-08-14 03:58:11 +00:00
|
|
|
<>
|
|
|
|
<p>Search results:</p>
|
|
|
|
<div className='comment lined'>
|
|
|
|
{stories.length ?
|
|
|
|
stories.map((x, i) =>
|
|
|
|
<div className='item' key={i}>
|
|
|
|
<div className='title'>
|
|
|
|
<Link className='link' to={'/' + x.id}>
|
|
|
|
<img className='source-logo' src={logos[x.source]} alt='source logo' /> {x.title}
|
|
|
|
</Link>
|
2019-10-12 05:32:17 +00:00
|
|
|
|
2020-08-14 03:58:11 +00:00
|
|
|
<span className='source'>
|
|
|
|
​({sourceLink(x)})
|
|
|
|
</span>
|
|
|
|
</div>
|
2019-10-12 05:32:17 +00:00
|
|
|
|
2020-08-14 03:58:11 +00:00
|
|
|
{infoLine(x)}
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
:
|
|
|
|
<p>none</p>
|
|
|
|
}
|
|
|
|
</div>
|
|
|
|
</>
|
2019-10-12 05:32:17 +00:00
|
|
|
:
|
|
|
|
<p>loading...</p>
|
|
|
|
}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Results;
|