@salesforce/design-system-react
Version:
Salesforce Lightning Design System for React
172 lines (135 loc) • 7.45 kB
JavaScript
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; }
/* 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 class-methods-use-this */
import React from 'react';
import PropTypes from 'prop-types';
import classNames from 'classnames';
export var DISPLAY_NAME = 'SLDSSplitViewListItemWithContent';
var propsTypes = {
/**
* **Assistive text for accessibility**
* * `unreadItem`: The unread indicator.
*/
assistiveText: PropTypes.shape({
unreadItem: PropTypes.string
}),
/**
* Item to be displayed
*/
item: PropTypes.object.isRequired,
/**
* Allows multiple item to be selection
*/
multiple: PropTypes.bool,
/**
* Shows the item as `focused`.
*/
isFocused: PropTypes.bool.isRequired,
/**
* Shows the item as `selected`.
*/
isSelected: PropTypes.bool.isRequired,
/**
* Shows the item as `unread`.
*/
isUnread: PropTypes.bool,
/**
* **Event Callbacks**
* * `onClick`: Called when the item is clicked.
* * * Event
* * * Meta data
* * * * `item`: The original item.
* * * * `isSelected`: Is the item selected.
* * * * `isUnread`: Is the item unread.
*/
events: PropTypes.shape({
onClick: PropTypes.func.isRequired
}),
/**
* Reference to the list item component
*/
listItemRef: PropTypes.func
};
var defaultProps = {
assistiveText: {
unreadItem: 'Unread Item'
},
events: {}
};
/**
* HOC that wraps the list item content with selection and unread functionality.
* @param ListItemContent {node} A React component
* @returns {ListItemWithContent} A React component
*/
var listItemWithContent = function listItemWithContent(ListItemContent) {
var ListItemWithContent = /*#__PURE__*/function (_React$Component) {
_inherits(ListItemWithContent, _React$Component);
var _super = _createSuper(ListItemWithContent);
function ListItemWithContent() {
var _this;
_classCallCheck(this, ListItemWithContent);
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), "onClick", function (event) {
event.preventDefault();
_this.props.events.onClick(event, {
item: _this.props.item,
isSelected: _this.props.isSelected,
isUnread: _this.props.isUnread
});
});
return _this;
}
_createClass(ListItemWithContent, [{
key: "unread",
value: function unread() {
return this.props.isUnread ? /*#__PURE__*/React.createElement("abbr", {
className: "slds-indicator_unread",
title: this.props.assistiveText.unreadItem,
"aria-label": this.props.assistiveText.unreadItem
}, /*#__PURE__*/React.createElement("span", {
className: "slds-assistive-text"
}, '●')) : null;
}
}, {
key: "render",
value: function render() {
return /*#__PURE__*/React.createElement("li", {
className: classNames('slds-split-view__list-item', {
'slds-is-unread': this.props.isUnread
}),
role: "presentation"
}, /*#__PURE__*/React.createElement("a", {
className: "slds-split-view__list-item-action slds-grow slds-has-flexi-truncate",
role: "option",
ref: this.props.listItemRef,
"aria-selected": this.props.multiple ? !!this.props.isSelected : this.props.isSelected,
tabIndex: this.props.isFocused ? 0 : -1,
href: "#",
onClick: this.onClick
}, this.unread(), /*#__PURE__*/React.createElement(ListItemContent, this.props)));
}
}]);
return ListItemWithContent;
}(React.Component);
_defineProperty(ListItemWithContent, "displayName", "".concat(DISPLAY_NAME, "(").concat(ListItemContent.displayName || ListItemContent.name || 'Component', ")"));
_defineProperty(ListItemWithContent, "propTypes", propsTypes);
_defineProperty(ListItemWithContent, "defaultProps", defaultProps);
return ListItemWithContent;
};
export default listItemWithContent;
//# sourceMappingURL=list-item-with-content.js.map