ce9a1c128c
* Show-page: split out some effects Break apart the large effect for easier tweaking, abiding by the 1-action-per-effect guideline. This also fixes the dependency list. After checking with Haffa, the exclusion of `pathname` and `hash` from the list is probably to avoid hitting `doResolveUri`. This should no longer be an issue after the split, so no suppression needed. * Show-page: fix "no content found" flicker ## Issue 1539: "Recently been seeing a flicker of "content not found" when direct loading content or channel links on mobile" ## Cause `doResolveUri` can only be called after the initial mount (in the effect), so at first render, `isResolvingUri` won't be set yet, so we briefly ended up in the "no content found" path. ## Change Factor out the logic that determines if we should send `doResolveUri`. This allows us to know that the upcoming effect will be sending `doResolveUri`, so we can hold off displaying "no content found". * Show-page: don't delay the spinner when resolving ## Reason The delay causes a blank page + footer, which looks bad.
308 lines
10 KiB
JavaScript
308 lines
10 KiB
JavaScript
// @flow
|
|
import { DOMAIN, ENABLE_NO_SOURCE_CLAIMS } from 'config';
|
|
import { LINKED_COMMENT_QUERY_PARAM, THREAD_COMMENT_QUERY_PARAM } from 'constants/comment';
|
|
import React, { useEffect } from 'react';
|
|
import { lazyImport } from 'util/lazyImport';
|
|
import { Redirect } from 'react-router-dom';
|
|
import Spinner from 'component/spinner';
|
|
import ChannelPage from 'page/channel';
|
|
import Page from 'component/page';
|
|
import Button from 'component/button';
|
|
import Card from 'component/common/card';
|
|
import Yrbl from 'component/yrbl';
|
|
import { formatLbryUrlForWeb } from 'util/url';
|
|
import { parseURI } from 'util/lbryURI';
|
|
import * as COLLECTIONS_CONSTS from 'constants/collections';
|
|
import * as MODALS from 'constants/modal_types';
|
|
|
|
const AbandonedChannelPreview = lazyImport(() =>
|
|
import('component/abandonedChannelPreview' /* webpackChunkName: "abandonedChannelPreview" */)
|
|
);
|
|
const FilePage = lazyImport(() => import('page/file' /* webpackChunkName: "filePage" */));
|
|
const LivestreamPage = lazyImport(() => import('page/livestream' /* webpackChunkName: "livestream" */));
|
|
const isDev = process.env.NODE_ENV !== 'production';
|
|
|
|
type Props = {
|
|
isResolvingUri: boolean,
|
|
isSubscribed: boolean,
|
|
uri: string,
|
|
claim: StreamClaim,
|
|
location: UrlLocation,
|
|
blackListedOutpointMap: { [string]: number },
|
|
claimIsMine: boolean,
|
|
claimIsPending: boolean,
|
|
isLivestream: boolean,
|
|
collectionId: string,
|
|
collection: Collection,
|
|
collectionUrls: Array<string>,
|
|
isResolvingCollection: boolean,
|
|
isAuthenticated: boolean,
|
|
geoRestriction: ?GeoRestriction,
|
|
latestContentPath?: boolean,
|
|
liveContentPath?: boolean,
|
|
latestClaimUrl: ?string,
|
|
fetchLatestClaimForChannel: (uri: string) => void,
|
|
fetchChannelLiveStatus: (channelId: string) => void,
|
|
doResolveUri: (uri: string, returnCached?: boolean, resolveReposts?: boolean, options?: any) => void,
|
|
doBeginPublish: (name: ?string) => void,
|
|
doFetchItemsInCollection: ({ collectionId: string }) => void,
|
|
doOpenModal: (string, {}) => void,
|
|
};
|
|
|
|
export default function ShowPage(props: Props) {
|
|
const {
|
|
isResolvingUri,
|
|
uri,
|
|
claim,
|
|
blackListedOutpointMap,
|
|
location,
|
|
claimIsMine,
|
|
isSubscribed,
|
|
claimIsPending,
|
|
isLivestream,
|
|
collectionId,
|
|
collection,
|
|
collectionUrls,
|
|
isResolvingCollection,
|
|
isAuthenticated,
|
|
geoRestriction,
|
|
latestContentPath,
|
|
liveContentPath,
|
|
latestClaimUrl,
|
|
fetchLatestClaimForChannel,
|
|
fetchChannelLiveStatus,
|
|
doResolveUri,
|
|
doBeginPublish,
|
|
doFetchItemsInCollection,
|
|
doOpenModal,
|
|
} = props;
|
|
|
|
const { search, pathname, hash } = location;
|
|
const urlParams = new URLSearchParams(search);
|
|
const linkedCommentId = urlParams.get(LINKED_COMMENT_QUERY_PARAM);
|
|
const threadCommentId = urlParams.get(THREAD_COMMENT_QUERY_PARAM);
|
|
|
|
const signingChannel = claim && claim.signing_channel;
|
|
const canonicalUrl = claim && claim.canonical_url;
|
|
const claimExists = claim !== null && claim !== undefined;
|
|
const haventFetchedYet = claim === undefined;
|
|
const isMine = claim && claim.is_my_output;
|
|
const claimId = claim && claim.claim_id;
|
|
const isNewestPath = latestContentPath || liveContentPath;
|
|
|
|
const { contentName, isChannel } = parseURI(uri); // deprecated contentName - use streamName and channelName
|
|
const isCollection = claim && claim.value_type === 'collection';
|
|
const resolvedCollection = collection && collection.id; // not null
|
|
const showLiveStream = isLivestream && ENABLE_NO_SOURCE_CLAIMS;
|
|
const isClaimBlackListed =
|
|
claim &&
|
|
blackListedOutpointMap &&
|
|
Boolean(
|
|
(signingChannel && blackListedOutpointMap[`${signingChannel.txid}:${signingChannel.nout}`]) ||
|
|
blackListedOutpointMap[`${claim.txid}:${claim.nout}`]
|
|
);
|
|
|
|
const shouldResolveUri =
|
|
(doResolveUri && !isResolvingUri && uri && haventFetchedYet) ||
|
|
(claimExists && !claimIsPending && (!canonicalUrl || (isMine === undefined && isAuthenticated)));
|
|
|
|
useEffect(() => {
|
|
if (!canonicalUrl && isNewestPath) {
|
|
doResolveUri(uri);
|
|
}
|
|
// only for mount on a latest content page
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
if (!latestClaimUrl && liveContentPath && claimId) {
|
|
fetchChannelLiveStatus(claimId);
|
|
}
|
|
}, [claimId, fetchChannelLiveStatus, latestClaimUrl, liveContentPath]);
|
|
|
|
useEffect(() => {
|
|
if (!latestClaimUrl && latestContentPath && canonicalUrl) {
|
|
fetchLatestClaimForChannel(canonicalUrl);
|
|
}
|
|
}, [canonicalUrl, fetchLatestClaimForChannel, latestClaimUrl, latestContentPath]);
|
|
|
|
// changed this from 'isCollection' to resolve strangers' collections.
|
|
useEffect(() => {
|
|
if (collectionId && !resolvedCollection) {
|
|
doFetchItemsInCollection({ collectionId });
|
|
}
|
|
}, [isCollection, resolvedCollection, collectionId, doFetchItemsInCollection]);
|
|
|
|
useEffect(() => {
|
|
if (canonicalUrl) {
|
|
const urlPath = pathname + hash;
|
|
const fullParams =
|
|
urlPath.indexOf('?') > 0 ? urlPath.substring(urlPath.indexOf('?')) : search.length > 0 ? search : '';
|
|
const canonicalUrlPath = '/' + canonicalUrl.replace(/^lbry:\/\//, '').replace(/#/g, ':') + fullParams;
|
|
|
|
// replaceState will fail if on a different domain (like webcache.googleusercontent.com)
|
|
const hostname = isDev ? 'localhost' : DOMAIN;
|
|
|
|
if (canonicalUrlPath !== pathname && hostname === window.location.hostname && fullParams !== search) {
|
|
const urlParams = new URLSearchParams(search);
|
|
let replaceUrl = canonicalUrlPath;
|
|
if (urlParams.get(COLLECTIONS_CONSTS.COLLECTION_ID)) {
|
|
const listId = urlParams.get(COLLECTIONS_CONSTS.COLLECTION_ID) || '';
|
|
urlParams.set(COLLECTIONS_CONSTS.COLLECTION_ID, listId);
|
|
replaceUrl += `?${urlParams.toString()}`;
|
|
}
|
|
history.replaceState(history.state, '', replaceUrl);
|
|
}
|
|
|
|
const windowHref = window.location.href;
|
|
const noUrlParams = search.length === 0;
|
|
if (windowHref.includes('?') && noUrlParams) {
|
|
history.replaceState(history.state, '', windowHref.substring(0, windowHref.length - 1));
|
|
}
|
|
}
|
|
}, [canonicalUrl, pathname, hash, search]);
|
|
|
|
useEffect(() => {
|
|
if (shouldResolveUri) {
|
|
doResolveUri(
|
|
uri,
|
|
false,
|
|
true,
|
|
isMine === undefined && isAuthenticated ? { include_is_my_output: true, include_purchase_receipt: true } : {}
|
|
);
|
|
}
|
|
}, [shouldResolveUri, doResolveUri, uri, isMine, isAuthenticated]);
|
|
|
|
// Wait for latest claim fetch
|
|
if (isNewestPath && latestClaimUrl === undefined) {
|
|
return (
|
|
<div className="main--empty">
|
|
<Spinner delayed />
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (isNewestPath && latestClaimUrl) {
|
|
const params = urlParams.toString() !== '' ? `?${urlParams.toString()}` : '';
|
|
return <Redirect to={`${formatLbryUrlForWeb(latestClaimUrl)}${params}`} />;
|
|
}
|
|
|
|
// Don't navigate directly to repost urls
|
|
// Always redirect to the actual content
|
|
// Also redirect to channel page (uri) when on a non-existing latest path (live or content)
|
|
if (claim && (claim.repost_url === uri || (isNewestPath && latestClaimUrl === null))) {
|
|
const newUrl = formatLbryUrlForWeb(canonicalUrl);
|
|
return <Redirect to={newUrl} />;
|
|
}
|
|
|
|
let urlForCollectionZero;
|
|
if (claim && isCollection && collectionUrls && collectionUrls.length) {
|
|
urlForCollectionZero = collectionUrls && collectionUrls[0];
|
|
const claimId = claim.claim_id;
|
|
urlParams.set(COLLECTIONS_CONSTS.COLLECTION_ID, claimId);
|
|
const newUrl = formatLbryUrlForWeb(`${urlForCollectionZero}?${urlParams.toString()}`);
|
|
return <Redirect to={newUrl} />;
|
|
}
|
|
|
|
if (!claim || !claim.name) {
|
|
return (
|
|
<Page>
|
|
{(haventFetchedYet ||
|
|
shouldResolveUri || // covers the initial mount case where we haven't run doResolveUri, so 'isResolvingUri' is not true yet.
|
|
isResolvingUri ||
|
|
isResolvingCollection || // added for collection
|
|
(isCollection && !urlForCollectionZero)) && ( // added for collection - make sure we accept urls = []
|
|
<div className="main--empty">
|
|
<Spinner />
|
|
</div>
|
|
)}
|
|
|
|
{!isResolvingUri && !isSubscribed && !shouldResolveUri && (
|
|
<div className="main--empty">
|
|
<Yrbl
|
|
title={isChannel ? __('Channel Not Found') : __('No Content Found')}
|
|
subtitle={
|
|
isChannel ? (
|
|
__(`Probably because you didn't make it.`)
|
|
) : (
|
|
<div className="section__actions">
|
|
<Button
|
|
button="primary"
|
|
label={__('Publish Something')}
|
|
onClick={() => doBeginPublish(contentName)}
|
|
/>
|
|
<Button
|
|
button="secondary"
|
|
label={__('Repost Something')}
|
|
onClick={() => doOpenModal(MODALS.REPOST, { contentName })}
|
|
/>
|
|
</div>
|
|
)
|
|
}
|
|
/>
|
|
</div>
|
|
)}
|
|
|
|
{!isResolvingUri && isSubscribed && claim === null && (
|
|
<React.Suspense fallback={null}>
|
|
<AbandonedChannelPreview uri={uri} type="large" />
|
|
</React.Suspense>
|
|
)}
|
|
</Page>
|
|
);
|
|
}
|
|
|
|
if (geoRestriction && !claimIsMine) {
|
|
return (
|
|
<div className="main--empty">
|
|
<Yrbl
|
|
title={__(isChannel ? 'Channel unavailable' : 'Content unavailable')}
|
|
subtitle={__(geoRestriction.message || '')}
|
|
type="sad"
|
|
alwaysShow
|
|
/>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
if (claim.name.length && claim.name[0] === '@') {
|
|
return <ChannelPage uri={uri} location={location} />;
|
|
}
|
|
|
|
if (isClaimBlackListed && !claimIsMine) {
|
|
return (
|
|
<Page className="custom-wrapper">
|
|
<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="section__actions">
|
|
<Button button="link" href="https://odysee.com/@OdyseeHelp:b/copyright:f" label={__('Read More')} />
|
|
</div>
|
|
}
|
|
/>
|
|
</Page>
|
|
);
|
|
}
|
|
|
|
if (showLiveStream) {
|
|
return (
|
|
<React.Suspense fallback={null}>
|
|
<LivestreamPage uri={uri} claim={claim} />
|
|
</React.Suspense>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<React.Suspense fallback={null}>
|
|
<FilePage
|
|
uri={uri}
|
|
collectionId={collectionId}
|
|
linkedCommentId={linkedCommentId}
|
|
threadCommentId={threadCommentId}
|
|
/>
|
|
</React.Suspense>
|
|
);
|
|
}
|