lbry-desktop/ui/component/uriIndicator/view.jsx

170 lines
4.6 KiB
React
Raw Normal View History

2018-03-26 23:32:43 +02:00
// @flow
import type { Node } from 'react';
import React from 'react';
2020-01-21 23:38:10 +01:00
import classnames from 'classnames';
2018-03-26 23:32:43 +02:00
import Button from 'component/button';
import PremiumBadge from 'component/common/premium-badge';
import { stripLeadingAtSign } from 'util/string';
2017-05-02 07:25:31 +02:00
type ChannelInfo = { uri: string, name: string, title: string };
2018-03-26 23:32:43 +02:00
type Props = {
uri: string,
channelInfo: ?ChannelInfo, // Direct channel info to use, bypassing the need to resolve 'uri'.
link: ?boolean,
external?: boolean,
focusable?: boolean, // Defaults to 'true' if not provided.
hideAnonymous?: boolean,
inline?: boolean,
showAtSign?: boolean,
className?: string,
showMemberBadge?: boolean,
children: ?Node, // to allow for other elements to be nested within the UriIndicator (commit: 1e82586f).
// --- redux ---
claim: ?Claim,
isResolvingUri: boolean,
odyseeMembership: string,
comment?: boolean,
resolveUri: (string) => void,
2018-03-26 23:32:43 +02:00
};
class UriIndicator extends React.PureComponent<Props> {
2019-06-11 20:10:58 +02:00
componentDidMount() {
this.resolveClaim(this.props);
2017-05-21 16:42:34 +02:00
}
2017-05-02 07:25:31 +02:00
2019-06-11 20:10:58 +02:00
componentDidUpdate() {
this.resolveClaim(this.props);
2017-05-10 05:06:48 +02:00
}
resolveClaim = (props: Props) => {
const { isResolvingUri, resolveUri, claim, uri, channelInfo } = props;
2017-05-10 05:06:48 +02:00
if (!channelInfo && !isResolvingUri && claim === undefined && uri) {
2017-06-06 23:19:12 +02:00
resolveUri(uri);
2017-05-21 16:42:34 +02:00
}
2018-03-26 23:32:43 +02:00
};
2017-05-02 07:25:31 +02:00
resolveState = (channelInfo: ?ChannelInfo, claim: ?Claim, isLinkType: ?boolean) => {
if (channelInfo) {
return {
hasChannelData: true,
isAnonymous: false,
channelName: channelInfo.name,
channelLink: isLinkType ? channelInfo.uri : false,
channelTitle: channelInfo.title,
};
} else if (claim) {
const signingChannel = claim.signing_channel && claim.signing_channel.amount;
const isChannelClaim = claim.value_type === 'channel';
const channelClaim = isChannelClaim ? claim : claim.signing_channel;
return {
hasChannelData: Boolean(channelClaim),
isAnonymous: !signingChannel && !isChannelClaim,
channelName: channelClaim?.name,
channelLink: isLinkType ? channelClaim?.canonical_url || channelClaim?.permanent_url : false,
channelTitle:
channelClaim && channelClaim.value && channelClaim.value.title
? channelClaim.value.title
: stripLeadingAtSign(channelClaim?.name),
};
} else {
return {
hasChannelData: false,
isAnonymous: undefined,
channelName: undefined,
channelLink: undefined,
channelTitle: undefined,
};
}
};
2017-05-21 16:42:34 +02:00
render() {
const {
uri,
channelInfo,
link,
isResolvingUri,
claim,
children,
inline,
focusable = true,
external = false,
hideAnonymous = false,
showAtSign,
className,
odyseeMembership,
comment,
showMemberBadge = true,
} = this.props;
2019-04-24 16:02:08 +02:00
if (!channelInfo && !claim) {
return (
<span className={classnames('empty', className)}>
{uri === null ? '---' : isResolvingUri || claim === undefined ? __('Validating...') : __('[Removed]')}
</span>
);
2017-05-21 16:42:34 +02:00
}
const data = this.resolveState(channelInfo, claim, link);
if (data.isAnonymous) {
2020-01-29 16:26:39 +01:00
if (hideAnonymous) {
return null;
}
return (
<span dir="auto" className={classnames('channel-name', className, { 'channel-name--inline': inline })}>
Anonymous
</span>
);
2017-05-21 16:42:34 +02:00
}
if (data.hasChannelData) {
const { channelLink, channelTitle, channelName } = data;
2017-09-17 22:33:52 +02:00
const inner = (
<span dir="auto" className={classnames('channel-name', { 'channel-name--inline': inline })}>
<p>{showAtSign ? channelName : stripLeadingAtSign(channelTitle)}</p>
{!comment && showMemberBadge && <PremiumBadge membership={odyseeMembership} />}
</span>
);
2019-06-11 20:10:58 +02:00
if (!channelLink) {
return inner;
}
2017-09-17 22:33:52 +02:00
if (children) {
return (
<Button
aria-hidden={!focusable}
tabIndex={focusable ? 0 : -1}
className={className}
target={external ? '_blank' : undefined}
navigate={channelLink}
>
{children}
</Button>
);
} else {
return (
<Button
className={classnames(className, 'button--uri-indicator')}
navigate={channelLink}
target={external ? '_blank' : undefined}
aria-hidden={!focusable}
tabIndex={focusable ? 0 : -1}
>
{inner}
</Button>
);
}
2019-06-11 20:10:58 +02:00
} else {
return null;
}
2017-05-21 16:42:34 +02:00
}
2017-05-02 07:25:31 +02:00
}
2017-06-06 06:21:55 +02:00
export default UriIndicator;