@salesforce/design-system-react
Version:
Salesforce Lightning Design System for React
114 lines (99 loc) • 5.18 kB
JavaScript
function _extends() { _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; }; return _extends.apply(this, arguments); }
function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
/* Copyright (c) 2015-present, salesforce.com, inc. All rights reserved */
/* Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license */
import React, { useContext } from 'react';
import PropTypes from 'prop-types'; // This component's `checkProps` which issues warnings to developers about properties
// when in development mode (similar to React's built in development tools)
import checkProps from './check-props';
import Svg from './svg';
import SLDS_ICONS_UTILITY from '../../../icons/utility';
import SLDS_ICONS_ACTION from '../../../icons/action';
import SLDS_ICONS_CUSTOM from '../../../icons/custom';
import SLDS_ICONS_DOCTYPE from '../../../icons/doctype';
import SLDS_ICONS_STANDARD from '../../../icons/standard';
import { DIRECTIONS } from '../UNSAFE_direction';
import LanguageDirection from '../UNSAFE_direction/private/language-direction';
import { IconSettingsContext } from '../../icon-settings';
/*
* If inline icons are present and icon bundle imports are not just an empty object, then inline icons will be used instead of external icons that require HTTP access.
*/
var UtilityIcon = function UtilityIcon(_ref) {
var _ref$name = _ref.name,
name = _ref$name === void 0 ? '' : _ref$name,
assistiveText = _ref.assistiveText,
_ref$category = _ref.category,
category = _ref$category === void 0 ? 'utility' : _ref$category,
icon = _ref.icon,
path = _ref.path,
direction = _ref.direction,
rest = _objectWithoutProperties(_ref, ["name", "assistiveText", "category", "icon", "path", "direction"]);
var context = useContext(IconSettingsContext);
checkProps('UtilityIcon', {
name: name,
category: category,
path: path,
context: context
});
var inlineIcons = {
action: SLDS_ICONS_ACTION,
custom: SLDS_ICONS_CUSTOM,
doctype: SLDS_ICONS_DOCTYPE,
standard: SLDS_ICONS_STANDARD,
utility: SLDS_ICONS_UTILITY
};
var inlineData;
if (icon) {
// Use SVG data passed in with `icon` prop
inlineData = icon;
} else if (Object.keys(inlineIcons[category]).length) {
// Use inline icon data if it exists. ENV variables will have to set to allow this.
inlineData = inlineIcons[category][name.toLowerCase()];
inlineData.viewBox = inlineIcons[category].viewBox;
}
var modifiedPath;
if (path) {
// Use `path` prop of Icon if present
modifiedPath = path;
} else if (context.onRequestIconPath) {
modifiedPath = context.onRequestIconPath({
category: category,
name: name
});
} else if (context["".concat(category, "Sprite")]) {
// Use category sprite file from IconSettings if present
modifiedPath = "".concat(context["".concat(category, "Sprite")], "#").concat(name);
} else {
// Otherwise, use external URLs for icons
var svgAssetName = direction === DIRECTIONS.RTL ? 'symbols-rtl.svg' : 'symbols.svg';
modifiedPath = context.iconPath && "".concat(context.iconPath, "/").concat(category, "-sprite/svg/").concat(svgAssetName, "#").concat(name);
}
return inlineData ? /*#__PURE__*/React.createElement(Svg, _extends({
data: inlineData,
name: name
}, rest)) : /*#__PURE__*/React.createElement("svg", _extends({
key: "".concat(name, "_").concat(category)
}, rest), /*#__PURE__*/React.createElement("use", {
href: modifiedPath
}));
};
UtilityIcon.displayName = 'UtilityIcon';
UtilityIcon.propTypes = {
assistiveText: PropTypes.object,
category: PropTypes.oneOf(['action', 'custom', 'doctype', 'standard', 'utility']),
/**
* An SVG object to use instead of name / category, look in `design-system-react/icons` for examples
*/
icon: PropTypes.object,
/**
* Name of the icon. Visit <a href='http://www.lightningdesignsystem.com/resources/icons'>Lightning Design System Icons</a> to reference icon names.
*/
name: PropTypes.string,
/**
* Path to the icon. This will override any global icon settings.
*/
path: PropTypes.string
};
export default LanguageDirection(UtilityIcon);
//# sourceMappingURL=index.js.map