// @flow import React from 'react'; import Button from 'component/button'; import { buildURI } from 'lbry-redux'; import Tooltip from 'component/common/tooltip'; import ClaimPreview from 'component/claimPreview'; type Props = { isResolvingUri: boolean, channelUri: ?string, link: ?boolean, claim: ?Claim, addTooltip: boolean, // Lint thinks we aren't using these, even though we are. // Possibly because the resolve function is an arrow function that is passed in props? resolveUri: string => void, uri: string, }; class UriIndicator extends React.PureComponent { static defaultProps = { addTooltip: true, }; componentDidMount() { this.resolve(this.props); } componentDidUpdate() { this.resolve(this.props); } resolve = (props: Props) => { const { isResolvingUri, resolveUri, claim, uri } = props; if (!isResolvingUri && claim === undefined && uri) { resolveUri(uri); } }; render() { const { link, isResolvingUri, claim, addTooltip } = this.props; if (!claim) { return {isResolvingUri ? 'Validating...' : 'Unused'}; } const isChannelClaim = claim.value_type === 'channel'; if (!claim.signing_channel && !isChannelClaim) { return Anonymous; } const channelClaim = isChannelClaim ? claim : claim.signing_channel; if (channelClaim) { const { name, claim_id: claimId } = channelClaim; let channelLink; if (claimId && name) { channelLink = link ? buildURI({ channelName: name, channelClaimId: claimId }) : false; } const inner = {name}; if (!channelLink) { return inner; } const Wrapper = addTooltip ? ({ children }) => ( }>{children} ) : 'span'; return ( ); } else { return null; } } } export default UriIndicator;