mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-08-23 17:47:24 +00:00
64 lines
1.5 KiB
JavaScript
64 lines
1.5 KiB
JavaScript
import React from "react";
|
|
import FileTile from "component/fileTile";
|
|
import ChannelTile from "component/channelTile";
|
|
import Link from "component/link";
|
|
import { BusyMessage } from "component/common.js";
|
|
import lbryuri from "lbryuri";
|
|
|
|
const SearchNoResults = props => {
|
|
const { query } = props;
|
|
|
|
return (
|
|
<section>
|
|
<span className="empty">
|
|
{(__("No one has checked anything in for %s yet."), query)}{" "}
|
|
<Link label={__("Be the first")} navigate="/publish" />
|
|
</span>
|
|
</section>
|
|
);
|
|
};
|
|
|
|
class FileListSearch extends React.PureComponent {
|
|
componentWillMount() {
|
|
this.doSearch(this.props);
|
|
}
|
|
|
|
componentWillReceiveProps(props) {
|
|
if (props.query != this.props.query) {
|
|
this.doSearch(props);
|
|
}
|
|
}
|
|
|
|
doSearch(props) {
|
|
this.props.search(props.query);
|
|
}
|
|
|
|
render() {
|
|
const { isSearching, uris, query } = this.props;
|
|
|
|
return (
|
|
<div>
|
|
{isSearching &&
|
|
!uris && (
|
|
<BusyMessage message={__("Looking up the Dewey Decimals")} />
|
|
)}
|
|
|
|
{isSearching &&
|
|
uris && <BusyMessage message={__("Refreshing the Dewey Decimals")} />}
|
|
|
|
{uris && uris.length
|
|
? uris.map(
|
|
uri =>
|
|
lbryuri.parse(uri).name[0] === "@" ? (
|
|
<ChannelTile key={uri} uri={uri} />
|
|
) : (
|
|
<FileTile key={uri} uri={uri} />
|
|
)
|
|
)
|
|
: !isSearching && <SearchNoResults query={query} />}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default FileListSearch;
|