preact-arco-design
Version:
Arco Design React UI Library.
81 lines (68 loc) • 2.74 kB
JavaScript
var __assign = this && this.__assign || function () {
__assign = Object.assign || function (t) {
for (var s, i = 1, n = arguments.length; i < n; i++) {
s = arguments[i];
for (var p in s) {
if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
}
}
return t;
};
return __assign.apply(this, arguments);
};
var __rest = this && this.__rest || function (s, e) {
var t = {};
for (var p in s) {
if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p];
}
if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) t[p[i]] = s[p[i]];
}
return t;
};
import React, { forwardRef, useContext } from "preact/compat";
import IconLink from "../../icon/react-icon/IconLink";
import cs from "../_util/classNames";
import { ConfigContext } from "../ConfigProvider";
import useMergeProps from "../_util/hooks/useMergeProps";
var defaultProps = {
hoverable: true
};
function Link(baseProps, ref) {
var _a;
var _b = useContext(ConfigContext),
getPrefixCls = _b.getPrefixCls,
componentConfig = _b.componentConfig,
rtl = _b.rtl;
var props = useMergeProps(baseProps, defaultProps, componentConfig === null || componentConfig === void 0 ? void 0 : componentConfig.Link);
var className = props.className,
style = props.style,
children = props.children,
icon = props.icon,
status = props.status,
disabled = props.disabled,
hoverable = props.hoverable,
rest = __rest(props, ["className", "style", "children", "icon", "status", "disabled", "hoverable"]);
var prefixCls = getPrefixCls('link');
var TagWrapper = 'href' in props ? 'a' : 'span';
return React.createElement(TagWrapper, __assign({
className: cs(prefixCls, (_a = {}, _a["".concat(prefixCls, "-disabled")] = disabled, _a["".concat(prefixCls, "-is-").concat(status)] = status, _a["".concat(prefixCls, "-with-icon")] = icon, _a["".concat(prefixCls, "-hoverless")] = !hoverable, _a["".concat(prefixCls, "-rtl")] = rtl, _a), className),
ref: ref
}, rest, {
style: style,
tabIndex: disabled ? -1 : undefined,
onClick: function onClick(e) {
if (disabled) {
e.preventDefault();
e.stopPropagation();
} else {
props.onClick && props.onClick(e);
}
}
}), icon ? React.createElement("span", {
className: "".concat(prefixCls, "-icon")
}, icon === true ? React.createElement(IconLink, null) : icon) : null, children);
}
var LinkRef = forwardRef(Link);
LinkRef.displayName = 'Link';
export default LinkRef;