lbry-desktop/ui/component/uriIndicator/view.jsx
infinite-persistence a636d7d8c9
UriIndicator: props cleanup, no functional change
- Marked optional props properly.
- Re-ordered to make it easier to differentiate "props used in jsx" vs. "from redux".

Separated the commit to make the upcoming diffs easier to read.
2022-02-16 11:53:53 +08:00

151 lines
3.9 KiB
JavaScript

// @flow
import type { Node } from 'react';
import React from 'react';
import classnames from 'classnames';
import Button from 'component/button';
type ChannelInfo = { uri: string, name: string };
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,
className?: string,
children: ?Node, // to allow for other elements to be nested within the UriIndicator (commit: 1e82586f).
// --- redux ---
claim: ?Claim,
isResolvingUri: boolean,
resolveUri: (string) => void,
};
class UriIndicator extends React.PureComponent<Props> {
componentDidMount() {
this.resolveClaim(this.props);
}
componentDidUpdate() {
this.resolveClaim(this.props);
}
resolveClaim = (props: Props) => {
const { isResolvingUri, resolveUri, claim, uri, channelInfo } = props;
if (!channelInfo && !isResolvingUri && claim === undefined && uri) {
resolveUri(uri);
}
};
resolveState = (channelInfo: ?ChannelInfo, claim: ?Claim, isLinkType: ?boolean) => {
if (channelInfo) {
return {
hasChannelData: true,
isAnonymous: false,
channelName: channelInfo.name,
channelLink: isLinkType ? channelInfo.uri : false,
};
} 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,
};
} else {
return {
hasChannelData: false,
isAnonymous: undefined,
channelName: undefined,
channelLink: undefined,
};
}
};
render() {
const {
channelInfo,
link,
isResolvingUri,
claim,
children,
inline,
focusable = true,
external = false,
hideAnonymous = false,
className,
} = this.props;
if (!channelInfo && !claim) {
return (
<span className={classnames('empty', className)}>
{isResolvingUri || claim === undefined ? __('Validating...') : __('[Removed]')}
</span>
);
}
const data = this.resolveState(channelInfo, claim, link);
if (data.isAnonymous) {
if (hideAnonymous) {
return null;
}
return (
<span dir="auto" className={classnames('channel-name', className, { 'channel-name--inline': inline })}>
Anonymous
</span>
);
}
if (data.hasChannelData) {
const { channelName, channelLink } = data;
const inner = (
<span dir="auto" className={classnames('channel-name', { 'channel-name--inline': inline })}>
{channelName}
</span>
);
if (!channelLink) {
return inner;
}
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>
);
}
} else {
return null;
}
}
}
export default UriIndicator;