@shopify/polaris
Version:
Shopify’s admin product component library
36 lines (30 loc) • 1.15 kB
JavaScript
import React, { memo, forwardRef } from 'react';
import { unstyled } from '../shared.js';
import { useLink } from '../../utilities/link/hooks.js';
// that the interface defining the props is defined in this file, not imported
// from elsewhere. This silly workaround ensures that the Props Explorer table
// is generated correctly.
// Wrapping forwardRef in a memo gets a name set since
// https://github.com/facebook/react/issues/16722
// but eslint-plugin-react doesn't know that just yet
// eslint-disable-next-line react/display-name
const UnstyledLink = /*#__PURE__*/memo( /*#__PURE__*/forwardRef(function UnstyledLink(props, _ref) {
const LinkComponent = useLink();
if (LinkComponent) {
return /*#__PURE__*/React.createElement(LinkComponent, Object.assign({}, unstyled.props, props));
}
const {
external,
url,
...rest
} = props;
const target = external ? '_blank' : undefined;
const rel = external ? 'noopener noreferrer' : undefined;
return /*#__PURE__*/React.createElement("a", Object.assign({
target: target
}, rest, {
href: url,
rel: rel
}, unstyled.props));
}));
export { UnstyledLink };