lbry-desktop/src/renderer/component/externalLink/view.jsx

67 lines
1.7 KiB
React
Raw Normal View History

// @flow
2018-05-10 04:47:08 +02:00
import * as React from 'react';
import { MODALS, isURIValid } from 'lbry-redux';
import * as icons from 'constants/icons';
import Button from 'component/button';
type Props = {
2018-05-11 07:40:24 +02:00
href: string,
title?: string,
children: React.Node,
navigate: (string, ?{}) => void,
openModal: ({ id: string }, { uri: string }) => void,
};
class ExternalLink extends React.PureComponent<Props> {
static defaultProps = {
href: null,
title: null,
};
2018-05-11 07:40:24 +02:00
createLink() {
const { href, title, children, openModal, navigate } = this.props;
2018-05-11 07:40:24 +02:00
// 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 = <span>{children}</span>;
// Return external link if protocol is http or https
if (protocol && (protocol[0] === 'http:' || protocol[0] === 'https:')) {
element = (
<Button
button="link"
iconRight={icons.EXTERNAL_LINK}
2018-05-11 23:07:26 +02:00
title={title || href}
2018-06-21 03:33:00 +02:00
label={children}
2018-05-11 07:40:24 +02:00
className="btn--external-link"
onClick={() => openModal({ id: MODALS.CONFIRM_EXTERNAL_LINK }, { uri: href })}
2018-06-21 03:33:00 +02:00
/>
2018-05-11 07:40:24 +02:00
);
}
// Return local link if protocol is lbry uri
2018-05-11 17:14:08 +02:00
if (protocol && protocol[0] === 'lbry:' && isURIValid(href)) {
2018-05-11 08:29:53 +02:00
element = (
2018-05-11 23:07:26 +02:00
<Button
button="link"
title={title || href}
2018-06-21 03:33:00 +02:00
label={children}
2018-05-11 23:07:26 +02:00
onClick={() => navigate('/show', { uri: href })}
2018-06-21 03:33:00 +02:00
/>
2018-05-11 08:29:53 +02:00
);
}
2018-05-11 08:29:53 +02:00
2018-05-11 07:40:24 +02:00
return element;
}
render() {
const RenderLink = () => this.createLink();
return <RenderLink />;
}
}
export default ExternalLink;