2019-06-11 20:10:58 +02:00
|
|
|
// @flow
|
2019-09-26 18:28:08 +02:00
|
|
|
import type { Node } from 'react';
|
2020-01-30 22:01:23 +01:00
|
|
|
import React, { useEffect, forwardRef } from 'react';
|
2020-02-04 22:59:49 +01:00
|
|
|
import { NavLink, withRouter } from 'react-router-dom';
|
2019-06-11 20:10:58 +02:00
|
|
|
import classnames from 'classnames';
|
2021-02-17 08:28:58 +01:00
|
|
|
import { parseURI } from 'lbry-redux';
|
2019-12-02 18:30:08 +01:00
|
|
|
import { formatLbryUrlForWeb } from 'util/url';
|
2019-08-25 13:42:25 +02:00
|
|
|
import { isEmpty } from 'util/object';
|
2020-01-06 19:32:35 +01:00
|
|
|
import FileThumbnail from 'component/fileThumbnail';
|
2019-06-11 20:10:58 +02:00
|
|
|
import UriIndicator from 'component/uriIndicator';
|
|
|
|
import FileProperties from 'component/fileProperties';
|
2019-06-19 07:05:43 +02:00
|
|
|
import ClaimTags from 'component/claimTags';
|
2019-06-11 20:10:58 +02:00
|
|
|
import SubscribeButton from 'component/subscribeButton';
|
|
|
|
import ChannelThumbnail from 'component/channelThumbnail';
|
2020-02-12 19:59:48 +01:00
|
|
|
import ClaimSupportButton from 'component/claimSupportButton';
|
2020-01-07 22:07:12 +01:00
|
|
|
import useGetThumbnail from 'effects/use-get-thumbnail';
|
2020-01-30 23:25:15 +01:00
|
|
|
import ClaimPreviewTitle from 'component/claimPreviewTitle';
|
2020-01-31 17:12:47 +01:00
|
|
|
import ClaimPreviewSubtitle from 'component/claimPreviewSubtitle';
|
2020-01-31 17:43:14 +01:00
|
|
|
import ClaimRepostAuthor from 'component/claimRepostAuthor';
|
2020-02-05 03:54:19 +01:00
|
|
|
import FileDownloadLink from 'component/fileDownloadLink';
|
2020-02-05 07:14:37 +01:00
|
|
|
import AbandonedChannelPreview from 'component/abandonedChannelPreview';
|
2020-05-07 14:22:55 +02:00
|
|
|
import PublishPending from 'component/publishPending';
|
2021-03-03 19:50:16 +01:00
|
|
|
import ClaimMenuList from 'component/claimMenuList';
|
2020-12-04 01:10:23 +01:00
|
|
|
import ClaimPreviewLoading from './claim-preview-loading';
|
2020-12-22 16:16:39 +01:00
|
|
|
import ClaimPreviewHidden from './claim-preview-no-mature';
|
2020-12-04 01:10:23 +01:00
|
|
|
import ClaimPreviewNoContent from './claim-preview-no-content';
|
2021-03-25 19:52:18 +01:00
|
|
|
import { ENABLE_NO_SOURCE_CLAIMS } from 'config';
|
2019-06-11 20:10:58 +02:00
|
|
|
|
|
|
|
type Props = {
|
|
|
|
uri: string,
|
|
|
|
claim: ?Claim,
|
|
|
|
obscureNsfw: boolean,
|
2019-07-08 22:54:58 +02:00
|
|
|
showUserBlocked: boolean,
|
2019-06-11 20:10:58 +02:00
|
|
|
claimIsMine: boolean,
|
|
|
|
pending?: boolean,
|
2020-12-22 16:16:39 +01:00
|
|
|
reflectingProgress?: any, // fxme
|
2021-02-16 22:09:20 +01:00
|
|
|
resolveUri: (string) => void,
|
2019-06-11 20:10:58 +02:00
|
|
|
isResolvingUri: boolean,
|
2021-02-16 22:09:20 +01:00
|
|
|
history: { push: (string) => void },
|
2019-06-11 20:10:58 +02:00
|
|
|
title: string,
|
|
|
|
nsfw: boolean,
|
2019-07-21 23:31:22 +02:00
|
|
|
placeholder: string,
|
2019-06-19 07:05:43 +02:00
|
|
|
type: string,
|
2019-07-11 20:06:25 +02:00
|
|
|
hasVisitedUri: boolean,
|
2019-06-28 09:27:55 +02:00
|
|
|
blackListedOutpoints: Array<{
|
|
|
|
txid: string,
|
|
|
|
nout: number,
|
|
|
|
}>,
|
2019-07-17 05:32:29 +02:00
|
|
|
filteredOutpoints: Array<{
|
|
|
|
txid: string,
|
|
|
|
nout: number,
|
|
|
|
}>,
|
2021-03-03 19:50:16 +01:00
|
|
|
mutedUris: Array<string>,
|
|
|
|
blockedUris: Array<string>,
|
2019-07-08 22:54:58 +02:00
|
|
|
channelIsBlocked: boolean,
|
2019-09-26 18:28:08 +02:00
|
|
|
actions: boolean | Node | string | number,
|
2021-02-16 22:09:20 +01:00
|
|
|
properties: boolean | Node | string | number | ((Claim) => Node),
|
2020-12-22 16:16:39 +01:00
|
|
|
empty?: Node,
|
2021-02-16 22:09:20 +01:00
|
|
|
onClick?: (any) => any,
|
2020-01-07 22:07:12 +01:00
|
|
|
streamingUrl: ?string,
|
2021-02-16 22:09:20 +01:00
|
|
|
getFile: (string) => void,
|
|
|
|
customShouldHide?: (Claim) => boolean,
|
2020-02-05 19:01:07 +01:00
|
|
|
showUnresolvedClaim?: boolean,
|
2020-12-04 01:10:23 +01:00
|
|
|
showNullPlaceholder?: boolean,
|
2020-02-12 19:59:48 +01:00
|
|
|
includeSupportAction?: boolean,
|
2020-10-12 23:12:46 +02:00
|
|
|
hideActions?: boolean,
|
2021-02-16 22:09:20 +01:00
|
|
|
renderActions?: (Claim) => ?Node,
|
2020-10-20 19:10:02 +02:00
|
|
|
wrapperElement?: string,
|
2020-10-28 20:18:58 +01:00
|
|
|
hideRepostLabel?: boolean,
|
2020-12-22 16:16:39 +01:00
|
|
|
repostUrl?: string,
|
2021-03-03 19:50:16 +01:00
|
|
|
hideMenu?: boolean,
|
2021-03-25 19:52:18 +01:00
|
|
|
isLivestream?: boolean,
|
2019-06-11 20:10:58 +02:00
|
|
|
};
|
|
|
|
|
2019-08-02 08:28:14 +02:00
|
|
|
const ClaimPreview = forwardRef<any, {}>((props: Props, ref: any) => {
|
2019-06-11 20:10:58 +02:00
|
|
|
const {
|
2020-12-22 16:16:39 +01:00
|
|
|
// core
|
2019-06-11 20:10:58 +02:00
|
|
|
uri,
|
2020-12-22 16:16:39 +01:00
|
|
|
claim,
|
2019-06-11 20:10:58 +02:00
|
|
|
isResolvingUri,
|
2020-12-22 16:16:39 +01:00
|
|
|
// core actions
|
|
|
|
getFile,
|
2019-06-11 20:10:58 +02:00
|
|
|
resolveUri,
|
2020-12-22 16:16:39 +01:00
|
|
|
// claim properties
|
2021-01-26 17:55:27 +01:00
|
|
|
// is the claim consider nsfw?
|
2020-12-22 16:16:39 +01:00
|
|
|
nsfw,
|
|
|
|
claimIsMine,
|
|
|
|
streamingUrl,
|
|
|
|
// user properties
|
|
|
|
channelIsBlocked,
|
2019-07-11 20:06:25 +02:00
|
|
|
hasVisitedUri,
|
2020-12-22 16:16:39 +01:00
|
|
|
// component
|
|
|
|
history,
|
|
|
|
wrapperElement,
|
|
|
|
type,
|
|
|
|
placeholder,
|
|
|
|
// pending
|
|
|
|
reflectingProgress,
|
|
|
|
pending,
|
|
|
|
empty,
|
|
|
|
// modifiers
|
|
|
|
customShouldHide,
|
|
|
|
showNullPlaceholder,
|
2021-01-26 17:55:27 +01:00
|
|
|
// value from show mature content user setting
|
|
|
|
// true if the user doesn't wanna see nsfw content
|
2020-12-22 16:16:39 +01:00
|
|
|
obscureNsfw,
|
2019-07-08 22:54:58 +02:00
|
|
|
showUserBlocked,
|
2020-12-22 16:16:39 +01:00
|
|
|
showUnresolvedClaim,
|
|
|
|
hideRepostLabel = false,
|
|
|
|
hideActions = false,
|
2019-09-26 18:28:08 +02:00
|
|
|
properties,
|
|
|
|
onClick,
|
2020-12-22 16:16:39 +01:00
|
|
|
actions,
|
2021-03-03 19:50:16 +01:00
|
|
|
mutedUris,
|
|
|
|
blockedUris,
|
2020-12-22 16:16:39 +01:00
|
|
|
blackListedOutpoints,
|
|
|
|
filteredOutpoints,
|
2020-02-12 19:59:48 +01:00
|
|
|
includeSupportAction,
|
2020-10-12 23:12:46 +02:00
|
|
|
renderActions,
|
2021-03-03 19:50:16 +01:00
|
|
|
hideMenu = false,
|
2020-12-22 16:16:39 +01:00
|
|
|
// repostUrl,
|
2021-03-25 19:52:18 +01:00
|
|
|
isLivestream,
|
2019-06-11 20:10:58 +02:00
|
|
|
} = props;
|
2020-10-20 19:10:02 +02:00
|
|
|
const WrapperElement = wrapperElement || 'li';
|
2019-10-03 23:40:54 +02:00
|
|
|
const shouldFetch =
|
|
|
|
claim === undefined || (claim !== null && claim.value_type === 'channel' && isEmpty(claim.meta) && !pending);
|
2019-07-21 23:31:22 +02:00
|
|
|
const abandoned = !isResolvingUri && !claim;
|
2020-10-12 23:12:46 +02:00
|
|
|
const shouldHideActions = hideActions || type === 'small' || type === 'tooltip';
|
2020-02-05 19:08:37 +01:00
|
|
|
const canonicalUrl = claim && claim.canonical_url;
|
2019-08-19 06:49:54 +02:00
|
|
|
let isValid = false;
|
|
|
|
if (uri) {
|
|
|
|
try {
|
2020-01-30 22:01:23 +01:00
|
|
|
parseURI(uri);
|
2019-08-19 06:49:54 +02:00
|
|
|
isValid = true;
|
|
|
|
} catch (e) {
|
|
|
|
isValid = false;
|
|
|
|
}
|
2019-07-11 21:03:31 +02:00
|
|
|
}
|
2021-01-13 16:44:44 +01:00
|
|
|
const isRepost = claim && claim.repost_url;
|
2019-07-05 20:11:55 +02:00
|
|
|
|
2021-01-13 16:44:44 +01:00
|
|
|
const contentUri = claim && isRepost ? claim.canonical_url || claim.permanent_url : uri;
|
|
|
|
const isChannelUri = isValid ? parseURI(contentUri).isChannel : false;
|
2019-07-29 16:12:53 +02:00
|
|
|
const signingChannel = claim && claim.signing_channel;
|
2020-02-05 00:54:49 +01:00
|
|
|
const navigateUrl = formatLbryUrlForWeb((claim && claim.canonical_url) || uri || '/');
|
2020-02-04 22:59:49 +01:00
|
|
|
const navLinkProps = {
|
|
|
|
to: navigateUrl,
|
2021-02-16 22:09:20 +01:00
|
|
|
onClick: (e) => e.stopPropagation(),
|
2020-02-04 22:59:49 +01:00
|
|
|
};
|
2019-10-24 22:41:27 +02:00
|
|
|
|
|
|
|
// do not block abandoned and nsfw claims if showUserBlocked is passed
|
2019-10-17 18:58:28 +02:00
|
|
|
let shouldHide =
|
2019-10-24 22:41:27 +02:00
|
|
|
placeholder !== 'loading' &&
|
|
|
|
!showUserBlocked &&
|
2020-12-22 16:16:39 +01:00
|
|
|
((abandoned && !showUnresolvedClaim) || (!claimIsMine && obscureNsfw && nsfw));
|
2019-07-05 20:11:55 +02:00
|
|
|
|
|
|
|
// This will be replaced once blocking is done at the wallet server level
|
2019-12-13 19:44:28 +01:00
|
|
|
if (claim && !claimIsMine && !shouldHide && blackListedOutpoints) {
|
2019-08-29 03:39:21 +02:00
|
|
|
shouldHide = blackListedOutpoints.some(
|
2021-02-16 22:09:20 +01:00
|
|
|
(outpoint) =>
|
2019-08-29 03:39:21 +02:00
|
|
|
(signingChannel && outpoint.txid === signingChannel.txid && outpoint.nout === signingChannel.nout) ||
|
|
|
|
(outpoint.txid === claim.txid && outpoint.nout === claim.nout)
|
|
|
|
);
|
2019-07-17 05:32:29 +02:00
|
|
|
}
|
2019-07-25 22:26:42 +02:00
|
|
|
// We're checking to see if the stream outpoint
|
|
|
|
// or signing channel outpoint is in the filter list
|
2019-12-13 19:44:28 +01:00
|
|
|
if (claim && !claimIsMine && !shouldHide && filteredOutpoints) {
|
2019-07-25 22:26:42 +02:00
|
|
|
shouldHide = filteredOutpoints.some(
|
2021-02-16 22:09:20 +01:00
|
|
|
(outpoint) =>
|
2019-07-25 22:26:42 +02:00
|
|
|
(signingChannel && outpoint.txid === signingChannel.txid && outpoint.nout === signingChannel.nout) ||
|
|
|
|
(outpoint.txid === claim.txid && outpoint.nout === claim.nout)
|
|
|
|
);
|
2019-07-05 20:11:55 +02:00
|
|
|
}
|
2019-08-02 02:56:25 +02:00
|
|
|
// block stream claims
|
2021-03-03 19:50:16 +01:00
|
|
|
if (claim && !shouldHide && !showUserBlocked && mutedUris.length && signingChannel) {
|
|
|
|
shouldHide = mutedUris.some((blockedUri) => blockedUri === signingChannel.permanent_url);
|
2019-07-08 22:54:58 +02:00
|
|
|
}
|
2021-03-03 19:50:16 +01:00
|
|
|
if (claim && !shouldHide && !showUserBlocked && blockedUris.length && signingChannel) {
|
|
|
|
shouldHide = blockedUris.some((blockedUri) => blockedUri === signingChannel.permanent_url);
|
2019-08-02 02:56:25 +02:00
|
|
|
}
|
2019-06-11 20:10:58 +02:00
|
|
|
|
2020-01-08 17:36:49 +01:00
|
|
|
if (!shouldHide && customShouldHide && claim) {
|
|
|
|
if (customShouldHide(claim)) {
|
|
|
|
shouldHide = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-13 20:12:27 +01:00
|
|
|
// Weird placement warning
|
|
|
|
// Make sure this happens after we figure out if this claim needs to be hidden
|
2020-12-22 16:16:39 +01:00
|
|
|
const thumbnailUrl = useGetThumbnail(contentUri, claim, streamingUrl, getFile, shouldHide);
|
2020-01-13 20:12:27 +01:00
|
|
|
|
2019-09-26 18:28:08 +02:00
|
|
|
function handleOnClick(e) {
|
|
|
|
if (onClick) {
|
|
|
|
onClick(e);
|
2020-01-30 22:01:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (claim && !pending) {
|
2020-02-05 00:54:49 +01:00
|
|
|
history.push(navigateUrl);
|
2019-06-11 20:10:58 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
useEffect(() => {
|
2020-12-28 20:26:55 +01:00
|
|
|
if (isValid && !isResolvingUri && shouldFetch && uri) {
|
2019-06-11 20:10:58 +02:00
|
|
|
resolveUri(uri);
|
|
|
|
}
|
2021-02-16 22:09:20 +01:00
|
|
|
}, [isValid, uri, isResolvingUri, shouldFetch, resolveUri]);
|
2019-06-11 20:10:58 +02:00
|
|
|
|
2021-03-25 19:52:18 +01:00
|
|
|
if ((shouldHide && !showNullPlaceholder) || (isLivestream && !ENABLE_NO_SOURCE_CLAIMS)) {
|
2019-06-11 20:10:58 +02:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2020-12-22 16:16:39 +01:00
|
|
|
if (placeholder === 'loading' || (uri && !claim && isResolvingUri)) {
|
2021-01-13 16:44:44 +01:00
|
|
|
return <ClaimPreviewLoading isChannel={isChannelUri} type={type} />;
|
2020-12-04 01:10:23 +01:00
|
|
|
}
|
|
|
|
|
2021-01-26 17:55:27 +01:00
|
|
|
if (claim && showNullPlaceholder && shouldHide && nsfw && obscureNsfw) {
|
2020-12-22 16:16:39 +01:00
|
|
|
return (
|
2021-01-13 16:44:44 +01:00
|
|
|
<ClaimPreviewHidden
|
|
|
|
message={__('Mature content hidden by your preferences')}
|
|
|
|
isChannel={isChannelUri}
|
|
|
|
type={type}
|
|
|
|
/>
|
2020-12-22 16:16:39 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (claim && showNullPlaceholder && shouldHide) {
|
2021-01-13 16:44:44 +01:00
|
|
|
return <ClaimPreviewHidden message={__('This content is hidden')} isChannel={isChannelUri} type={type} />;
|
2019-06-11 20:10:58 +02:00
|
|
|
}
|
2020-12-04 01:10:23 +01:00
|
|
|
|
2020-12-22 16:16:39 +01:00
|
|
|
if (!claim && (showNullPlaceholder || empty)) {
|
2021-01-13 16:44:44 +01:00
|
|
|
return empty || <ClaimPreviewNoContent isChannel={isChannelUri} type={type} />;
|
2020-12-04 01:10:23 +01:00
|
|
|
}
|
|
|
|
|
2020-02-05 19:01:07 +01:00
|
|
|
if (!shouldFetch && showUnresolvedClaim && !isResolvingUri && claim === null) {
|
2020-12-22 16:16:39 +01:00
|
|
|
return <AbandonedChannelPreview uri={contentUri} type />;
|
2020-02-05 07:14:37 +01:00
|
|
|
}
|
2020-12-22 16:16:39 +01:00
|
|
|
if (placeholder === 'publish' && !claim && contentUri.startsWith('lbry://@')) {
|
2019-12-20 16:13:50 +01:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2019-06-11 20:10:58 +02:00
|
|
|
return (
|
2020-10-20 19:10:02 +02:00
|
|
|
<WrapperElement
|
2019-08-02 08:28:14 +02:00
|
|
|
ref={ref}
|
2019-06-11 20:10:58 +02:00
|
|
|
role="link"
|
2019-09-26 18:28:08 +02:00
|
|
|
onClick={pending || type === 'inline' ? undefined : handleOnClick}
|
2020-01-31 17:43:14 +01:00
|
|
|
className={classnames('claim-preview__wrapper', {
|
2021-01-13 16:44:44 +01:00
|
|
|
'claim-preview__wrapper--channel': isChannelUri && type !== 'inline',
|
2020-01-31 17:43:14 +01:00
|
|
|
'claim-preview__wrapper--inline': type === 'inline',
|
|
|
|
'claim-preview__wrapper--small': type === 'small',
|
2019-06-11 20:10:58 +02:00
|
|
|
})}
|
|
|
|
>
|
2021-03-30 01:05:18 +02:00
|
|
|
<>
|
|
|
|
{!hideRepostLabel && <ClaimRepostAuthor uri={uri} />}
|
2019-06-11 20:10:58 +02:00
|
|
|
|
2021-03-30 01:05:18 +02:00
|
|
|
<div
|
|
|
|
className={classnames('claim-preview', {
|
|
|
|
'claim-preview--small': type === 'small' || type === 'tooltip',
|
|
|
|
'claim-preview--large': type === 'large',
|
|
|
|
'claim-preview--inline': type === 'inline',
|
|
|
|
'claim-preview--tooltip': type === 'tooltip',
|
|
|
|
'claim-preview--channel': isChannelUri,
|
|
|
|
'claim-preview--visited': !isChannelUri && !claimIsMine && hasVisitedUri,
|
|
|
|
'claim-preview--pending': pending,
|
|
|
|
})}
|
|
|
|
>
|
|
|
|
{isChannelUri && claim ? (
|
|
|
|
<UriIndicator uri={contentUri} link>
|
|
|
|
<ChannelThumbnail uri={contentUri} />
|
|
|
|
</UriIndicator>
|
|
|
|
) : (
|
|
|
|
<>
|
|
|
|
{!pending ? (
|
2020-05-07 14:22:55 +02:00
|
|
|
<NavLink {...navLinkProps}>
|
2021-03-30 01:05:18 +02:00
|
|
|
<FileThumbnail thumbnail={thumbnailUrl}>
|
|
|
|
{/* @if TARGET='app' */}
|
|
|
|
{claim && (
|
|
|
|
<div className="claim-preview__hover-actions">
|
|
|
|
<FileDownloadLink uri={canonicalUrl} hideOpenButton hideDownloadStatus />
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
{/* @endif */}
|
|
|
|
{!isRepost && !isChannelUri && !isLivestream && (
|
|
|
|
<div className="claim-preview__file-property-overlay">
|
|
|
|
<FileProperties uri={contentUri} small />
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</FileThumbnail>
|
2020-05-07 14:22:55 +02:00
|
|
|
</NavLink>
|
2021-03-30 01:05:18 +02:00
|
|
|
) : (
|
|
|
|
<FileThumbnail thumbnail={thumbnailUrl} />
|
2020-05-07 14:22:55 +02:00
|
|
|
)}
|
2021-03-30 01:05:18 +02:00
|
|
|
</>
|
|
|
|
)}
|
|
|
|
|
|
|
|
<div className="claim-preview__text">
|
|
|
|
<div className="claim-preview-metadata">
|
|
|
|
<div className="claim-preview-info">
|
|
|
|
{pending ? (
|
|
|
|
<ClaimPreviewTitle uri={contentUri} />
|
|
|
|
) : (
|
|
|
|
<NavLink {...navLinkProps}>
|
|
|
|
<ClaimPreviewTitle uri={uri} />
|
|
|
|
</NavLink>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
<ClaimPreviewSubtitle uri={uri} type={type} />
|
|
|
|
{(pending || !!reflectingProgress) && <PublishPending uri={uri} />}
|
2020-01-31 17:43:14 +01:00
|
|
|
</div>
|
2021-03-30 01:05:18 +02:00
|
|
|
{type !== 'small' && (
|
|
|
|
<div className="claim-preview__actions">
|
|
|
|
{!pending && (
|
|
|
|
<>
|
|
|
|
{renderActions && claim && renderActions(claim)}
|
|
|
|
{shouldHideActions || renderActions ? null : actions !== undefined ? (
|
|
|
|
actions
|
|
|
|
) : (
|
|
|
|
<div className="claim-preview__primary-actions">
|
|
|
|
{!isChannelUri && signingChannel && (
|
|
|
|
<div className="claim-preview__channel-staked">
|
|
|
|
<ChannelThumbnail uri={signingChannel.permanent_url} />
|
|
|
|
</div>
|
|
|
|
)}
|
2021-03-03 19:50:16 +01:00
|
|
|
|
2021-03-30 01:05:18 +02:00
|
|
|
{isChannelUri && !channelIsBlocked && !claimIsMine && (
|
|
|
|
<SubscribeButton
|
|
|
|
uri={contentUri.startsWith('lbry://') ? contentUri : `lbry://${contentUri}`}
|
|
|
|
/>
|
|
|
|
)}
|
2021-03-03 19:50:16 +01:00
|
|
|
|
2021-03-30 01:05:18 +02:00
|
|
|
{includeSupportAction && <ClaimSupportButton uri={uri} />}
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
{claim && (
|
|
|
|
<React.Fragment>
|
|
|
|
{typeof properties === 'function' ? (
|
|
|
|
properties(claim)
|
|
|
|
) : properties !== undefined ? (
|
|
|
|
properties
|
|
|
|
) : (
|
|
|
|
<ClaimTags uri={uri} type={type} />
|
|
|
|
)}
|
|
|
|
</React.Fragment>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
)}
|
|
|
|
</div>
|
2019-06-11 20:10:58 +02:00
|
|
|
</div>
|
2021-03-30 01:05:18 +02:00
|
|
|
{!hideMenu && <ClaimMenuList uri={uri} />}
|
|
|
|
</>
|
2020-10-20 19:10:02 +02:00
|
|
|
</WrapperElement>
|
2019-06-11 20:10:58 +02:00
|
|
|
);
|
2019-08-02 08:28:14 +02:00
|
|
|
});
|
2019-06-11 20:10:58 +02:00
|
|
|
|
2019-06-28 09:27:55 +02:00
|
|
|
export default withRouter(ClaimPreview);
|