qotnews/webclient/src/Results.js

97 lines
1.9 KiB
JavaScript
Raw Normal View History

2019-10-12 05:32:17 +00:00
import React from 'react';
import { Link } from 'react-router-dom';
import { Helmet } from 'react-helmet';
import { sourceLink, infoLine } 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 ?
<div>
{stories.length ?
stories.map((x, i) =>
<div className='item' key={i}>
<div className='num'>
{i+1}.
</div>
<div className='title'>
<Link className='link' to={'/' + x.id}>
2019-10-22 07:31:59 +00:00
<img className='source-logo' src={'logos/'+x.source+'.png'} alt='source logo' /> {x.title}
</Link>
2019-10-12 05:32:17 +00:00
<span className='source'>
&#8203;({sourceLink(x)})
</span>
</div>
{infoLine(x)}
</div>
)
:
<p>no results</p>
}
</div>
:
<p>loading...</p>
}
</div>
);
}
}
export default Results;