2017-06-06 23:19:12 +02:00
|
|
|
import React from "react";
|
|
|
|
import Link from "component/link";
|
|
|
|
import FileTile from "component/fileTile";
|
|
|
|
import { BusyMessage, Thumbnail } from "component/common.js";
|
|
|
|
import FileList from "component/fileList";
|
|
|
|
import SubHeader from "component/subHeader";
|
2017-04-23 18:10:45 +02:00
|
|
|
|
2017-06-08 06:42:19 +02:00
|
|
|
class FileListPublished extends React.PureComponent {
|
2017-05-11 02:59:47 +02:00
|
|
|
componentWillMount() {
|
2017-07-05 08:38:17 +02:00
|
|
|
if (!this.props.isFetching) this.props.fetchClaims();
|
2017-05-11 02:59:47 +02:00
|
|
|
}
|
|
|
|
|
2017-05-01 08:26:09 +02:00
|
|
|
componentDidUpdate() {
|
2017-07-05 08:38:17 +02:00
|
|
|
// if (this.props.claims.length > 0) this.props.fetchClaims();
|
2017-05-01 08:26:09 +02:00
|
|
|
}
|
2017-04-23 18:10:45 +02:00
|
|
|
|
2017-05-01 08:26:09 +02:00
|
|
|
render() {
|
2017-07-05 08:38:17 +02:00
|
|
|
const { claims, isFetching, navigate } = this.props;
|
2017-05-01 08:26:09 +02:00
|
|
|
|
2017-06-06 23:19:12 +02:00
|
|
|
let content;
|
2017-05-15 18:34:33 +02:00
|
|
|
|
2017-07-05 08:38:17 +02:00
|
|
|
if (claims && claims.length > 0) {
|
2017-06-06 23:19:12 +02:00
|
|
|
content = (
|
|
|
|
<FileList
|
2017-07-05 08:38:17 +02:00
|
|
|
fileInfos={claims}
|
2017-07-04 13:05:35 +02:00
|
|
|
fetching={isFetching}
|
2017-06-06 23:19:12 +02:00
|
|
|
fileTileShowEmpty={FileTile.SHOW_EMPTY_PENDING}
|
|
|
|
/>
|
|
|
|
);
|
2017-05-01 08:26:09 +02:00
|
|
|
} else {
|
2017-07-04 13:05:35 +02:00
|
|
|
if (isFetching) {
|
2017-06-06 23:19:12 +02:00
|
|
|
content = <BusyMessage message={__("Loading")} />;
|
2017-05-15 18:34:33 +02:00
|
|
|
} else {
|
2017-06-06 23:19:12 +02:00
|
|
|
content = (
|
|
|
|
<span>
|
2017-06-29 09:58:15 +02:00
|
|
|
{__(
|
|
|
|
"It looks like you haven't published anything to LBRY yet. Go"
|
|
|
|
)}{" "}
|
2017-06-06 23:19:12 +02:00
|
|
|
<Link
|
|
|
|
onClick={() => navigate("/publish")}
|
|
|
|
label={__("share your beautiful cats with the world")}
|
|
|
|
/>!
|
|
|
|
</span>
|
|
|
|
);
|
2017-05-15 18:34:33 +02:00
|
|
|
}
|
2017-05-01 08:26:09 +02:00
|
|
|
}
|
2017-05-05 10:10:51 +02:00
|
|
|
|
|
|
|
return (
|
2017-05-11 02:59:47 +02:00
|
|
|
<main className="main--single-column">
|
2017-05-05 10:10:51 +02:00
|
|
|
<SubHeader />
|
|
|
|
{content}
|
|
|
|
</main>
|
2017-06-06 23:19:12 +02:00
|
|
|
);
|
2017-05-01 08:26:09 +02:00
|
|
|
}
|
|
|
|
}
|
2017-04-23 18:10:45 +02:00
|
|
|
|
2017-06-06 06:21:55 +02:00
|
|
|
export default FileListPublished;
|