| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- var _excluded = ["icon", "primaryColor", "secondaryColor"];
- 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; }
- function _objectSpread(target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i] != null ? Object(arguments[i]) : {}; var ownKeys = Object.keys(source); if (typeof Object.getOwnPropertySymbols === 'function') { ownKeys = ownKeys.concat(Object.getOwnPropertySymbols(source).filter(function (sym) { return Object.getOwnPropertyDescriptor(source, sym).enumerable; })); } ownKeys.forEach(function (key) { _defineProperty(target, key, source[key]); }); } return target; }
- 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; }
- import { generate, getSecondaryColor, isIconDefinition, warning } from '../utils';
- import { reactive } from 'vue';
- var twoToneColorPalette = reactive({
- primaryColor: '#333',
- secondaryColor: '#E6E6E6',
- calculated: false
- });
- function setTwoToneColors(_ref) {
- var primaryColor = _ref.primaryColor,
- secondaryColor = _ref.secondaryColor;
- twoToneColorPalette.primaryColor = primaryColor;
- twoToneColorPalette.secondaryColor = secondaryColor || getSecondaryColor(primaryColor);
- twoToneColorPalette.calculated = !!secondaryColor;
- }
- function getTwoToneColors() {
- return _objectSpread({}, twoToneColorPalette);
- }
- var IconBase = function IconBase(props, context) {
- var _props$context$attrs = _objectSpread({}, props, context.attrs),
- icon = _props$context$attrs.icon,
- primaryColor = _props$context$attrs.primaryColor,
- secondaryColor = _props$context$attrs.secondaryColor,
- restProps = _objectWithoutProperties(_props$context$attrs, _excluded);
- var colors = twoToneColorPalette;
- if (primaryColor) {
- colors = {
- primaryColor: primaryColor,
- secondaryColor: secondaryColor || getSecondaryColor(primaryColor)
- };
- }
- warning(isIconDefinition(icon), "icon should be icon definiton, but got ".concat(icon));
- if (!isIconDefinition(icon)) {
- return null;
- }
- var target = icon;
- if (target && typeof target.icon === 'function') {
- target = _objectSpread({}, target, {
- icon: target.icon(colors.primaryColor, colors.secondaryColor)
- });
- }
- return generate(target.icon, "svg-".concat(target.name), _objectSpread({}, restProps, {
- 'data-icon': target.name,
- width: '1em',
- height: '1em',
- fill: 'currentColor',
- 'aria-hidden': 'true'
- })); // },
- };
- IconBase.props = {
- icon: Object,
- primaryColor: String,
- secondaryColor: String,
- focusable: String
- };
- IconBase.inheritAttrs = false;
- IconBase.displayName = 'IconBase';
- IconBase.getTwoToneColors = getTwoToneColors;
- IconBase.setTwoToneColors = setTwoToneColors;
- export default IconBase;
|