lbry-desktop/src/ui/page/show/view.jsx

101 lines
3.3 KiB
React
Raw Normal View History

2018-03-26 23:32:43 +02:00
// @flow
import React from 'react';
import { parseURI } from 'lbry-redux';
import { Redirect } from 'react-router';
2018-03-26 23:32:43 +02:00
import BusyIndicator from 'component/common/busy-indicator';
import ChannelPage from 'page/channel';
import FilePage from 'page/file';
2018-03-26 23:32:43 +02:00
import Page from 'component/page';
2018-04-24 20:17:11 +02:00
import Button from 'component/button';
2018-03-26 23:32:43 +02:00
type Props = {
isResolvingUri: boolean,
resolveUri: string => void,
uri: string,
2019-04-24 16:02:08 +02:00
claim: StreamClaim,
2019-03-28 17:53:13 +01:00
location: UrlLocation,
2018-04-24 20:17:11 +02:00
blackListedOutpoints: Array<{
txid: string,
nout: number,
}>,
2018-03-26 23:32:43 +02:00
};
class ShowPage extends React.PureComponent<Props> {
componentDidMount() {
const { isResolvingUri, resolveUri, uri } = this.props;
2017-05-12 01:28:43 +02:00
if (!isResolvingUri) resolveUri(uri);
2017-05-12 01:28:43 +02:00
}
componentDidUpdate() {
const { isResolvingUri, resolveUri, claim, uri } = this.props;
if (!isResolvingUri && uri && claim === undefined) {
resolveUri(uri);
}
2017-05-10 05:06:48 +02:00
}
render() {
2019-03-28 17:53:13 +01:00
const { claim, isResolvingUri, uri, blackListedOutpoints, location } = this.props;
const { channelName, channelClaimId, streamName, streamClaimId } = parseURI(uri);
const signingChannel = claim && claim.signing_channel;
// @routinghax
if (channelName && !channelClaimId && streamName && !streamClaimId && !isResolvingUri && !claim) {
// Kinda hacky, but this is probably an old url
// Just redirect to the vanity channel
return <Redirect to={`/@${channelName}`} />;
}
let innerContent = '';
2019-03-13 06:59:07 +01:00
if (!claim || (claim && !claim.name)) {
2019-03-04 17:57:07 +01:00
if (claim && !claim.name) {
// While testing the normalization changes, Brannon found that `name` was missing sometimes
// This shouldn't happen, so hopefully this helps track it down
2019-07-21 23:31:22 +02:00
console.error('No name for associated claim: ', claim.claim_id); // eslint-disable-line no-console
2019-03-04 17:57:07 +01:00
}
2017-06-06 23:19:12 +02:00
innerContent = (
2019-06-11 20:10:58 +02:00
<Page>
{isResolvingUri && <BusyIndicator message={__('Loading decentralized data...')} />}
2019-05-07 23:38:29 +02:00
{!isResolvingUri && <span className="empty">{__("There's nothing available at this location.")}</span>}
2018-03-26 23:32:43 +02:00
</Page>
2017-06-06 23:19:12 +02:00
);
2019-03-04 17:57:07 +01:00
} else if (claim.name.length && claim.name[0] === '@') {
2019-03-28 17:53:13 +01:00
innerContent = <ChannelPage uri={uri} location={location} />;
2019-02-15 02:52:10 +01:00
} else if (claim && blackListedOutpoints) {
2018-04-24 20:17:11 +02:00
let isClaimBlackListed = false;
isClaimBlackListed = blackListedOutpoints.some(
outpoint =>
(signingChannel && outpoint.txid === signingChannel.txid && outpoint.nout === signingChannel.nout) ||
(outpoint.txid === claim.txid && outpoint.nout === claim.nout)
);
2018-04-24 20:17:11 +02:00
if (isClaimBlackListed) {
innerContent = (
<Page>
<section className="card card--section">
<div className="card__title">{uri}</div>
2019-07-21 23:31:22 +02:00
<p>
{__(
'In response to a complaint we received under the US Digital Millennium Copyright Act, we have blocked access to this content from our applications.'
)}
</p>
2018-04-24 20:17:11 +02:00
<div className="card__actions">
2019-03-20 22:43:00 +01:00
<Button button="link" href="https://lbry.com/faq/dmca" label={__('Read More')} />
2018-04-24 20:17:11 +02:00
</div>
</section>
</Page>
);
} else {
2019-03-28 17:53:13 +01:00
innerContent = <FilePage uri={uri} location={location} />;
2018-04-24 20:17:11 +02:00
}
}
2018-03-26 23:32:43 +02:00
return innerContent;
2017-05-10 05:06:48 +02:00
}
}
2017-06-06 06:21:55 +02:00
export default ShowPage;