wix-style-react
Version:
wix-style-react
76 lines (59 loc) • 3.71 kB
JavaScript
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();
var _class, _temp;
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function, not " + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
import React from 'react';
import { node, string } from 'prop-types';
import TextLink from '../../TextLink';
import WixComponent from '../../BaseComponents/WixComponent';
import Header from '../Header';
import deprecationLog from '../../utils/deprecationLog';
var LinkHeader = (_temp = _class = function (_WixComponent) {
_inherits(LinkHeader, _WixComponent);
function LinkHeader() {
_classCallCheck(this, LinkHeader);
return _possibleConstructorReturn(this, (LinkHeader.__proto__ || Object.getPrototypeOf(LinkHeader)).apply(this, arguments));
}
_createClass(LinkHeader, [{
key: 'componentDidMount',
value: function componentDidMount() {
deprecationLog('Card.LinkHeader is deprecated, please use <Card.Header suffix={<TextLink/>}/> instead.');
}
}, {
key: 'render',
value: function render() {
var _props = this.props,
title = _props.title,
subtitle = _props.subtitle,
linkTitle = _props.linkTitle,
linkTo = _props.linkTo,
withoutDivider = _props.withoutDivider,
tooltip = _props.tooltip,
dataHook = _props.dataHook;
var linkElement = React.createElement(
'div',
null,
React.createElement(TextLink, { dataHook: 'link', link: linkTo, children: linkTitle })
);
var tooltipElement = tooltip ? React.cloneElement(tooltip, {}, linkElement) : null;
return React.createElement(Header, {
dataHook: dataHook,
title: title,
subtitle: subtitle,
suffix: tooltipElement ? tooltipElement : linkElement,
withoutDivider: withoutDivider
});
}
}]);
return LinkHeader;
}(WixComponent), _class.displayName = 'Card.LinkHeader', _class.propTypes = _extends({}, Header.propTypes, {
linkTitle: string.isRequired,
linkTo: string.isRequired,
tooltip: node,
dataHook: string
}), _class.defaultProps = {
tooltip: null
}, _temp);
export default LinkHeader;