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

106 lines
3.6 KiB
React
Raw Normal View History

2018-03-26 23:32:43 +02:00
// @flow
2019-10-17 21:09:03 +02:00
import React, { useEffect } from 'react';
2020-02-14 17:42:38 +01:00
import { Redirect } from 'react-router-dom';
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';
2019-12-13 22:46:28 +01:00
import Card from 'component/common/card';
import AbandonedChannelPreview from 'component/abandonedChannelPreview';
2020-02-14 17:42:38 +01:00
import { formatLbryUrlForWeb } from 'util/url';
2018-03-26 23:32:43 +02:00
type Props = {
isResolvingUri: boolean,
resolveUri: string => void,
isSubscribed: boolean,
2018-03-26 23:32:43 +02:00
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,
}>,
2019-10-17 21:09:03 +02:00
title: string,
claimIsMine: Boolean,
2018-03-26 23:32:43 +02:00
};
2019-10-17 21:09:03 +02:00
function ShowPage(props: Props) {
2020-01-25 23:06:35 +01:00
const { isResolvingUri, resolveUri, uri, claim, blackListedOutpoints, location, claimIsMine, isSubscribed } = props;
2019-10-17 21:09:03 +02:00
const signingChannel = claim && claim.signing_channel;
2019-11-15 16:13:19 +01:00
const canonicalUrl = claim && claim.canonical_url;
2019-11-19 18:41:31 +01:00
const claimExists = claim !== null && claim !== undefined;
const haventFetchedYet = claim === undefined;
2017-05-12 01:28:43 +02:00
2019-10-17 21:09:03 +02:00
useEffect(() => {
2019-10-13 19:19:39 +02:00
// @if TARGET='web'
2019-11-15 16:13:19 +01:00
if (canonicalUrl) {
const canonicalUrlPath = '/' + canonicalUrl.replace(/^lbry:\/\//, '').replace(/#/g, ':');
2019-10-13 19:19:39 +02:00
if (canonicalUrlPath !== window.location.pathname) {
history.replaceState(history.state, '', canonicalUrlPath);
}
}
// @endif
2019-11-15 16:13:19 +01:00
2019-11-19 18:41:31 +01:00
if ((resolveUri && !isResolvingUri && uri && haventFetchedYet) || (claimExists && !canonicalUrl)) {
resolveUri(uri);
}
2020-01-25 21:37:02 +01:00
}, [resolveUri, isResolvingUri, canonicalUrl, uri, claimExists, haventFetchedYet, history]);
2020-02-14 17:42:38 +01:00
// Don't navigate directly to repost urls
// Always redirect to the actual content
// Also need to add repost_url to the Claim type for flow
// $FlowFixMe
if (claim && claim.repost_url === uri) {
const newUrl = formatLbryUrlForWeb(claim.canonical_url);
return <Redirect to={newUrl} />;
}
2020-02-14 17:42:38 +01:00
let innerContent = '';
2019-10-17 21:09:03 +02:00
if (!claim || (claim && !claim.name)) {
innerContent = (
<Page>
{(claim === undefined || isResolvingUri) && <BusyIndicator message={__('Loading decentralized data...')} />}
{!isResolvingUri && !isSubscribed && (
<span className="empty">{__("There's nothing available at this location.")}</span>
)}
{!isResolvingUri && isSubscribed && claim === null && <AbandonedChannelPreview uri={uri} type={'large'} />}
2019-10-17 21:09:03 +02:00
</Page>
);
} else if (claim.name.length && claim.name[0] === '@') {
innerContent = <ChannelPage uri={uri} location={location} />;
} else if (claim && blackListedOutpoints) {
let isClaimBlackListed = false;
2019-10-17 21:09:03 +02:00
isClaimBlackListed = blackListedOutpoints.some(
outpoint =>
(signingChannel && outpoint.txid === signingChannel.txid && outpoint.nout === signingChannel.nout) ||
(outpoint.txid === claim.txid && outpoint.nout === claim.nout)
);
2019-03-04 17:57:07 +01:00
if (isClaimBlackListed && !claimIsMine) {
2019-12-13 22:46:28 +01:00
innerContent = (
<Page>
<Card
title={uri}
subtitle={__(
'In response to a complaint we received under the US Digital Millennium Copyright Act, we have blocked access to this content from our applications.'
)}
actions={
<div className="card__actions">
<Button button="link" href="https://lbry.com/faq/dmca" label={__('Read More')} />
</div>
}
/>
</Page>
);
2019-10-17 21:09:03 +02:00
} else {
2019-12-13 22:46:28 +01:00
innerContent = <FilePage uri={uri} location={location} />;
}
2017-05-10 05:06:48 +02:00
}
2019-10-17 21:09:03 +02:00
return innerContent;
}
2017-06-06 06:21:55 +02:00
export default ShowPage;