UNPKG

office-ui-fabric-react

Version:

Reusable React components for building experiences for Office 365.

70 lines 3.53 kB
import * as tslib_1 from "tslib"; import * as React from 'react'; import { BaseComponent, classNamesFunction, createRef } from '../../Utilities'; import { KeytipData } from '../../KeytipData'; var getClassNames = classNamesFunction(); var LinkBase = /** @class */ (function (_super) { tslib_1.__extends(LinkBase, _super); function LinkBase() { var _this = _super !== null && _super.apply(this, arguments) || this; _this._link = createRef(); _this._onClick = function (ev) { var _a = _this.props, onClick = _a.onClick, disabled = _a.disabled; if (disabled) { ev.preventDefault(); } else if (onClick) { onClick(ev); } }; return _this; } LinkBase.prototype.render = function () { var _this = this; var _a = this.props, disabled = _a.disabled, children = _a.children, className = _a.className, href = _a.href, theme = _a.theme, styles = _a.styles, keytipProps = _a.keytipProps; var classNames = getClassNames(styles, { className: className, isButton: !href, isDisabled: disabled, theme: theme }); var RootType = this._getRootType(this.props); return (React.createElement(KeytipData, { keytipProps: keytipProps, ariaDescribedBy: this.props['aria-describedby'], disabled: disabled }, function (keytipAttributes) { return (React.createElement(RootType, tslib_1.__assign({}, keytipAttributes, _this._removeInvalidPropsForRootType(RootType, _this.props), { className: classNames.root, onClick: _this._onClick, ref: _this._link, "aria-disabled": disabled }), children)); })); }; LinkBase.prototype.focus = function () { var current = this._link.current; if (current && current.focus) { current.focus(); } }; LinkBase.prototype._removeInvalidPropsForRootType = function (RootType, props) { // Deconstruct the props so we remove props like `as`, `theme` and `styles` // as those will always be removed. We also take some props that are optional // based on the RootType. var children = props.children, as = props.as, disabled = props.disabled, target = props.target, href = props.href, theme = props.theme, getStyles = props.getStyles, styles = props.styles, restProps = tslib_1.__rest(props, ["children", "as", "disabled", "target", "href", "theme", "getStyles", "styles"]); // RootType will be a string if we're dealing with an html component if (typeof RootType === 'string') { // Remove the disabled prop for anchor elements if (RootType === 'a') { return tslib_1.__assign({ target: target, href: href }, restProps); } // Remove the target and href props for non anchor elements return tslib_1.__assign({}, restProps, { disabled: disabled }); } // Retain all props except 'as' for ReactComponents return tslib_1.__assign({ target: target, href: href, disabled: disabled }, restProps); }; LinkBase.prototype._getRootType = function (props) { if (props.as) { return props.as; } if (props.href) { return 'a'; } return 'button'; }; return LinkBase; }(BaseComponent)); export { LinkBase }; //# sourceMappingURL=Link.base.js.map