lbry-desktop/src/ui/component/recommendedContent/view.jsx

66 lines
1.5 KiB
React
Raw Normal View History

// @flow
import React from 'react';
import FileTile from 'component/fileTile';
import type { Claim } from 'types/claim';
type Props = {
uri: string,
2018-08-03 20:28:11 +02:00
claim: ?Claim,
recommendedContent: Array<string>,
isSearching: boolean,
2018-08-03 20:28:11 +02:00
search: string => void,
};
2018-08-14 05:52:09 +02:00
export default class RecommendedContent extends React.PureComponent<Props> {
2018-08-03 20:28:11 +02:00
constructor() {
super();
2018-08-09 18:41:14 +02:00
this.didSearch = undefined;
2018-08-03 20:28:11 +02:00
}
componentDidMount() {
2018-08-03 20:28:11 +02:00
this.getRecommendedContent();
}
2018-08-03 20:28:11 +02:00
componentDidUpdate(prevProps: Props) {
const { claim, uri } = this.props;
2018-08-03 20:28:11 +02:00
if (uri !== prevProps.uri) {
2018-08-09 18:41:14 +02:00
this.didSearch = false;
2018-08-03 20:28:11 +02:00
}
2018-08-09 18:41:14 +02:00
if (claim && !this.didSearch) {
2018-08-03 20:28:11 +02:00
this.getRecommendedContent();
}
}
2018-08-03 20:28:11 +02:00
getRecommendedContent() {
const { claim, search } = this.props;
2018-08-03 20:28:11 +02:00
if (claim && claim.value && claim.value.stream && claim.value.stream.metadata) {
2018-08-14 05:52:09 +02:00
const { title } = claim.value.stream.metadata;
2018-08-03 20:28:11 +02:00
search(title);
2018-08-09 18:41:14 +02:00
this.didSearch = true;
}
2018-08-03 20:28:11 +02:00
}
2018-08-09 18:41:14 +02:00
didSearch: ?boolean;
2018-08-03 20:28:11 +02:00
render() {
const { recommendedContent, isSearching } = this.props;
return (
<section className="media-group--list-recommended">
<span>Related</span>
{recommendedContent &&
2018-08-03 20:28:11 +02:00
recommendedContent.map(recommendedUri => (
2019-02-15 02:52:10 +01:00
<FileTile hideNoResult size="small" key={recommendedUri} uri={recommendedUri} />
))}
2019-03-05 05:46:57 +01:00
{recommendedContent && !recommendedContent.length && !isSearching && (
<div className="media__subtitle">No related content found</div>
)}
2018-07-25 20:21:41 +02:00
</section>
);
}
}