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

142 lines
4.1 KiB
React
Raw Normal View History

// @flow
import { KNOWN_APP_DOMAINS, SIMPLE_SITE } from 'config';
import * as ICONS from 'constants/icons';
import * as React from 'react';
import { isURIValid } from 'lbry-redux';
import Button from 'component/button';
import ClaimLink from 'component/claimLink';
type Props = {
href: string,
title?: string,
embed?: boolean,
allowPreview?: boolean,
children: React.Node,
parentCommentId?: string,
isMarkdownPost?: boolean,
simpleLinks?: boolean,
};
function MarkdownLink(props: Props) {
const {
children,
href,
title,
embed = false,
allowPreview = false,
parentCommentId,
isMarkdownPost,
simpleLinks = false,
} = props;
2020-11-04 20:18:45 +01:00
2020-11-19 21:24:58 +01:00
let decodedUri;
try {
decodedUri = decodeURI(href);
} catch (e) {}
if (!href || !decodedUri) {
return children || null;
}
2020-10-22 20:06:28 +02:00
let element = <span>{children}</span>;
// Regex for url protocol
const protocolRegex = new RegExp('^(https?|lbry|mailto)+:', 'i');
const protocol = href ? protocolRegex.exec(href) : null;
const isLbryLink = href.startsWith('lbry://');
2020-10-22 20:06:28 +02:00
let linkUrlObject;
try {
linkUrlObject = new URL(decodedUri);
} catch (e) {}
let lbryUrlFromLink;
if (linkUrlObject && !href.startsWith('mailto:')) {
2020-10-22 20:06:28 +02:00
const linkDomain = linkUrlObject.host;
const isKnownAppDomainLink = KNOWN_APP_DOMAINS.includes(linkDomain);
if (isKnownAppDomainLink) {
2020-11-04 20:18:45 +01:00
let linkPathname;
try {
// This could be anything
linkPathname = decodeURIComponent(
linkUrlObject.pathname.startsWith('//') ? linkUrlObject.pathname.slice(2) : linkUrlObject.pathname.slice(1)
);
} catch (e) {}
2020-11-04 20:18:45 +01:00
const linkPathPlusHash = linkPathname ? `${linkPathname}${linkUrlObject.hash}` : undefined;
const possibleLbryUrl = linkPathPlusHash ? `lbry://${linkPathPlusHash.replace(/:/g, '#')}` : undefined;
2020-11-04 20:18:45 +01:00
const lbryLinkIsValid = possibleLbryUrl && isURIValid(possibleLbryUrl);
const isMarkdownLinkWithLabel =
children && Array.isArray(children) && React.Children.count(children) === 1 && children.toString() !== href;
if (lbryLinkIsValid && !isMarkdownLinkWithLabel) {
2020-10-22 20:06:28 +02:00
lbryUrlFromLink = possibleLbryUrl;
}
}
}
// Return timestamp link if it starts with '?t=' (only possible from remark-timestamp).
// Return plain text if no valid url.
// Return external link if protocol is http or https.
// Return local link if protocol is lbry uri.
if (href.startsWith('?t=')) {
// Video timestamp markers
element = (
<Button
button="link"
iconRight={undefined}
title={title || decodedUri}
label={children}
className="button--external-link"
onClick={() => {
if (window.player) {
window.player.currentTime(parseInt(href.substr(3)));
window.scrollTo(0, 0);
}
}}
/>
);
} else if (!simpleLinks && ((protocol && protocol[0] === 'lbry:' && isURIValid(decodedUri)) || lbryUrlFromLink)) {
element = allowPreview ? (
<ClaimLink
uri={lbryUrlFromLink || decodedUri}
autoEmbed={embed}
parentCommentId={parentCommentId}
isMarkdownPost={isMarkdownPost}
>
{children}
</ClaimLink>
) : (
<Button
button="link"
iconRight={isLbryLink ? undefined : ICONS.EXTERNAL}
title={SIMPLE_SITE ? __("This channel isn't staking enough LBRY Credits for link previews.") : children}
label={children}
className="button--external-link"
navigate={isLbryLink ? href : undefined}
href={isLbryLink ? undefined : href}
/>
);
} else if (
simpleLinks ||
(protocol && (protocol[0] === 'http:' || protocol[0] === 'https:' || protocol[0] === 'mailto:'))
) {
element = (
<Button
button="link"
iconRight={isLbryLink ? undefined : ICONS.EXTERNAL}
title={title || decodedUri}
label={children}
className="button--external-link"
navigate={isLbryLink ? href : undefined}
2020-11-04 20:18:45 +01:00
href={isLbryLink ? undefined : href}
/>
);
}
return <>{element}</>;
}
export default MarkdownLink;