// @flow import * as React from 'react'; import { MODALS } from 'lbry-redux'; import Button from 'component/button'; type Props = { href: string, title?: string, children: React.Node, navigate: (string, ?{}) => void, openModal: ({ id: string }, { uri: string }) => void, }; class ExternalLink extends React.PureComponent { static defaultProps = { href: null, title: null, }; createLink() { const { href, title, children, openModal, navigate } = this.props; console.info(href); // Regex for url protocol const protocolRegex = new RegExp('^(https?|lbry)+:', 'i'); const protocol = href ? protocolRegex.exec(href) : null; // Return plain text if no valid url let element = {children}; // Return external link if protocol is http or https if (protocol && (protocol[0] === 'http:' || protocol[0] === 'https:')) { element = ( ); } // Return local link if protocol is lbry uri if (protocol && protocol[0] === 'lbry:') { element = ( ); } return element; } render() { const RenderLink = () => this.createLink(); return ; } } export default ExternalLink;