9d1cf97aef
## Issue - Redo 5636: Disable video previews in comments/posts made by channels below a certain channel staked level - Closes 5738: expand video preview level requierment to markdown images also
125 lines
3.3 KiB
JavaScript
125 lines
3.3 KiB
JavaScript
// @flow
|
|
import * as React from 'react';
|
|
import classnames from 'classnames';
|
|
import EmbedPlayButton from 'component/embedPlayButton';
|
|
import Button from 'component/button';
|
|
import UriIndicator from 'component/uriIndicator';
|
|
import { INLINE_PLAYER_WRAPPER_CLASS } from 'component/fileRenderFloating/view';
|
|
import { SIMPLE_SITE } from 'config';
|
|
|
|
type Props = {
|
|
uri: string,
|
|
claim: StreamClaim,
|
|
children: React.Node,
|
|
description: ?string,
|
|
isResolvingUri: boolean,
|
|
doResolveUri: (string) => void,
|
|
blackListedOutpoints: Array<{
|
|
txid: string,
|
|
nout: number,
|
|
}>,
|
|
playingUri: ?PlayingUri,
|
|
parentCommentId?: string,
|
|
isMarkdownPost?: boolean,
|
|
allowPreview?: boolean,
|
|
};
|
|
|
|
class ClaimLink extends React.Component<Props> {
|
|
static defaultProps = {
|
|
href: null,
|
|
link: false,
|
|
thumbnail: null,
|
|
description: null,
|
|
isResolvingUri: false,
|
|
};
|
|
|
|
componentDidMount() {
|
|
this.resolve(this.props);
|
|
}
|
|
|
|
componentDidUpdate() {
|
|
this.resolve(this.props);
|
|
}
|
|
|
|
isClaimBlackListed() {
|
|
const { claim, blackListedOutpoints } = this.props;
|
|
const signingChannel = claim && claim.signing_channel;
|
|
if (claim && blackListedOutpoints) {
|
|
let blackListed = false;
|
|
|
|
blackListed = blackListedOutpoints.some(
|
|
(outpoint) =>
|
|
(signingChannel && outpoint.txid === signingChannel.txid && outpoint.nout === signingChannel.nout) ||
|
|
(outpoint.txid === claim.txid && outpoint.nout === claim.nout)
|
|
);
|
|
return blackListed;
|
|
}
|
|
}
|
|
|
|
resolve = (props: Props) => {
|
|
const { isResolvingUri, doResolveUri, claim, uri } = props;
|
|
|
|
if (!isResolvingUri && claim === undefined && uri) {
|
|
doResolveUri(uri);
|
|
}
|
|
};
|
|
|
|
render() {
|
|
const {
|
|
uri,
|
|
claim,
|
|
children,
|
|
isResolvingUri,
|
|
playingUri,
|
|
parentCommentId,
|
|
isMarkdownPost,
|
|
allowPreview,
|
|
} = this.props;
|
|
const isUnresolved = (!isResolvingUri && !claim) || !claim;
|
|
const isBlacklisted = this.isClaimBlackListed();
|
|
const isPlayingInline =
|
|
playingUri &&
|
|
playingUri.uri === uri &&
|
|
((playingUri.source === 'comment' && parentCommentId === playingUri.commentId) ||
|
|
playingUri.source === 'markdown');
|
|
|
|
if (isBlacklisted || isUnresolved) {
|
|
return <span>{children}</span>;
|
|
}
|
|
|
|
const { value_type: valueType } = claim;
|
|
const isChannel = valueType === 'channel';
|
|
|
|
return isChannel ? (
|
|
<UriIndicator uri={uri} link />
|
|
) : (
|
|
<div className={classnames('claim-link')}>
|
|
<div
|
|
className={classnames({
|
|
[INLINE_PLAYER_WRAPPER_CLASS]: isPlayingInline,
|
|
})}
|
|
>
|
|
<EmbedPlayButton
|
|
uri={uri}
|
|
parentCommentId={parentCommentId}
|
|
isMarkdownPost={isMarkdownPost}
|
|
allowPreview={allowPreview}
|
|
/>
|
|
</div>
|
|
{(allowPreview || !SIMPLE_SITE) && (
|
|
<Button button="link" className="preview-link__url" label={uri} navigate={uri} />
|
|
)}
|
|
{!allowPreview && SIMPLE_SITE && (
|
|
<div className="preview-link__unavailable">
|
|
<p>
|
|
{__("This channel isn't staking enough LBRY Credits for link previews.")}{' '}
|
|
<Button button="link" label={__('Learn more')} href="https://odysee.com/@lbry:3f/levelsonodysee:c" />.
|
|
</p>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|
|
}
|
|
|
|
export default ClaimLink;
|