UNPKG

@salesforce/design-system-react

Version:

Salesforce Lightning Design System for React

181 lines (150 loc) 8.1 kB
function _typeof(obj) { "@babel/helpers - typeof"; if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); } function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a 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); } } function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; } function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); if (superClass) _setPrototypeOf(subClass, superClass); } function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf || function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); } function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; } function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } return _assertThisInitialized(self); } function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; } function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } } function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } function _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; } /* eslint-disable prefer-destructuring */ /* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */ /* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */ /* eslint-disable jsx-a11y/role-has-required-aria-props */ import React from 'react'; import PropTypes from 'prop-types'; import cx from 'classnames'; import Icon from '../../icon'; import EventUtil from '../../../utilities/event'; var displayName = 'Lookup-Menu-Item'; var propTypes = { data: PropTypes.object, handleItemFocus: PropTypes.func, href: PropTypes.string, iconCategory: PropTypes.string, id: PropTypes.string, index: PropTypes.number, isActive: PropTypes.bool, isDisabled: PropTypes.bool, listItemLabelRenderer: PropTypes.func, onSelect: PropTypes.func, searchTerm: PropTypes.string, setFocus: PropTypes.func }; var Item = /*#__PURE__*/function (_React$Component) { _inherits(Item, _React$Component); var _super = _createSuper(Item); function Item() { var _this; _classCallCheck(this, Item); for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) { args[_key] = arguments[_key]; } _this = _super.call.apply(_super, [this].concat(args)); _defineProperty(_assertThisInitialized(_this), "handleClick", function () { return _this.props.onSelect(_this.props.id, _this.props.data); }); return _this; } _createClass(Item, [{ key: "UNSAFE_componentWillReceiveProps", value: // eslint-disable-next-line camelcase, react/sort-comp function UNSAFE_componentWillReceiveProps(nextProps) { if (nextProps.isActive !== this.props.isActive && nextProps.isActive === true) { this.scrollFocus(); this.props.setFocus(this.props.id); } } }, { key: "getCustomLabel", value: function getCustomLabel() { var ListItemLabel = this.props.listItemLabelRenderer; return /*#__PURE__*/React.createElement(ListItemLabel, this.props); } }, { key: "getIcon", value: function getIcon() { if (this.props.iconName && !this.props.listItemLabelRenderer) { return /*#__PURE__*/React.createElement("span", { className: "slds-media__figure" }, /*#__PURE__*/React.createElement(Icon, { category: this.props.iconCategory, inverse: this.props.iconInverse, key: this.props.iconName, name: this.props.iconName, size: "small" })); } return null; } }, { key: "getLabel", value: function getLabel() { var label; if (this.props.children.data.subTitle) { label = /*#__PURE__*/React.createElement("div", { className: "slds-media__body" }, /*#__PURE__*/React.createElement("div", { className: "slds-lookup__result-text" }, this.props.children.label), /*#__PURE__*/React.createElement("span", { className: "slds-lookup__result-meta slds-text-body_small" }, this.props.children.data.subTitle)); } else { var labelClassName = cx('slds-lookup__result-text', { 'slds-m-left_x-small': !this.props.iconName }); label = /*#__PURE__*/React.createElement("div", { className: "slds-media__body" }, /*#__PURE__*/React.createElement("div", { className: labelClassName }, this.props.children.label)); } return label; } }, { key: "scrollFocus", value: // Scroll menu item based on up/down mouse keys (assumes all items are the same height) function scrollFocus() { var height = this.itemRef.offsetHeight; if (height && this.props.handleItemFocus) { this.props.handleItemFocus(this.props.index, height); } } }, { key: "render", value: function render() { var _this2 = this; var itemClassName = 'js-slds-lookup__item'; var id = this.props.id; if (this.props.isActive) itemClassName += ' slds-theme_shade'; return ( /*#__PURE__*/ // IMPORTANT: anchor id is used to set lookup's input's aria-activedescendant React.createElement("li", { className: itemClassName, ref: function ref(li) { _this2.itemRef = li; } }, /*#__PURE__*/React.createElement("a", { "aria-disabled": this.props.isDisabled, className: "slds-lookup__item-action slds-media slds-media_center", href: this.props.href, id: id, onClick: this.handleClick, onMouseDown: EventUtil.trapImmediate, ref: id, role: "option", tabIndex: "-1" }, this.getIcon(), this.props.listItemLabelRenderer ? this.getCustomLabel() : this.getLabel())) ); } }]); return Item; }(React.Component); Item.displayName = displayName; Item.propTypes = propTypes; export default Item; //# sourceMappingURL=item.js.map