2017-05-05 10:01:16 +02:00
|
|
|
import React from 'react';
|
|
|
|
import lbryuri from 'lbryuri';
|
|
|
|
import FileTile from 'component/fileTile'
|
2017-05-11 02:59:47 +02:00
|
|
|
import FileListSearch from 'component/fileListSearch'
|
2017-05-05 10:01:16 +02:00
|
|
|
import {ToolTip} from 'component/tooltip.js';
|
|
|
|
import {BusyMessage} from 'component/common.js';
|
|
|
|
|
|
|
|
|
2017-05-11 02:59:47 +02:00
|
|
|
class SearchPage extends React.Component{
|
|
|
|
render() {
|
|
|
|
const {
|
|
|
|
query,
|
|
|
|
} = this.props
|
|
|
|
|
|
|
|
return (
|
|
|
|
<main className="main--single-column">
|
2017-05-12 22:49:15 +02:00
|
|
|
{ lbryuri.isValid(query) ?
|
2017-05-11 02:59:47 +02:00
|
|
|
<section className="section-spaced">
|
|
|
|
<h3 className="card-row__header">
|
|
|
|
Exact URL <ToolTip label="?" body="This is the resolution of a LBRY URL and not controlled by LBRY Inc."
|
|
|
|
className="tooltip--header" />
|
|
|
|
</h3>
|
|
|
|
<FileTile uri={lbryuri.normalize(query)} showEmpty={FileTile.SHOW_EMPTY_PUBLISH} />
|
|
|
|
</section> : '' }
|
2017-05-05 10:01:16 +02:00
|
|
|
<section className="section-spaced">
|
|
|
|
<h3 className="card-row__header">
|
2017-05-11 02:59:47 +02:00
|
|
|
Search Results for {query} <ToolTip label="?" body="These search results are provided by LBRY, Inc."
|
|
|
|
className="tooltip--header" />
|
2017-05-05 10:01:16 +02:00
|
|
|
</h3>
|
2017-05-11 02:59:47 +02:00
|
|
|
<FileListSearch query={query} />
|
|
|
|
</section>
|
|
|
|
</main>
|
|
|
|
)
|
|
|
|
}
|
2017-05-05 10:01:16 +02:00
|
|
|
}
|
|
|
|
export default SearchPage;
|