123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170 |
- 'use strict';
-
- Object.defineProperty(exports, "__esModule", {
- value: true
- });
-
- 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; };
- // Mixins
-
- // Util
-
- // Types
-
-
- require('../../../src/stylus/components/_icons.styl');
-
- var _colorable = require('../../mixins/colorable');
-
- var _colorable2 = _interopRequireDefault(_colorable);
-
- var _sizeable = require('../../mixins/sizeable');
-
- var _sizeable2 = _interopRequireDefault(_sizeable);
-
- var _themeable = require('../../mixins/themeable');
-
- var _themeable2 = _interopRequireDefault(_themeable);
-
- var _helpers = require('../../util/helpers');
-
- var _vue = require('vue');
-
- var _vue2 = _interopRequireDefault(_vue);
-
- var _mixins = require('../../util/mixins');
-
- var _mixins2 = _interopRequireDefault(_mixins);
-
- function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
-
- var SIZE_MAP;
- (function (SIZE_MAP) {
- SIZE_MAP["small"] = "16px";
- SIZE_MAP["default"] = "24px";
- SIZE_MAP["medium"] = "28px";
- SIZE_MAP["large"] = "36px";
- SIZE_MAP["xLarge"] = "40px";
- })(SIZE_MAP || (SIZE_MAP = {}));
- function isFontAwesome5(iconType) {
- return ['fas', 'far', 'fal', 'fab'].some(function (val) {
- return iconType.includes(val);
- });
- }
- var VIcon = (0, _mixins2.default)(_colorable2.default, _sizeable2.default, _themeable2.default
- /* @vue/component */
- ).extend({
- name: 'v-icon',
- props: {
- disabled: Boolean,
- left: Boolean,
- right: Boolean
- },
- methods: {
- getIcon: function getIcon() {
- var iconName = '';
- if (this.$slots.default) iconName = this.$slots.default[0].text.trim();
- return (0, _helpers.remapInternalIcon)(this, iconName);
- },
- getSize: function getSize() {
- var sizes = {
- small: this.small,
- medium: this.medium,
- large: this.large,
- xLarge: this.xLarge
- };
- var explicitSize = (0, _helpers.keys)(sizes).find(function (key) {
- return sizes[key];
- });
- return explicitSize && SIZE_MAP[explicitSize] || (0, _helpers.convertToUnit)(this.size);
- },
-
- // Component data for both font and svg icon.
- getDefaultData: function getDefaultData() {
- var data = {
- staticClass: 'v-icon',
- class: {
- 'v-icon--disabled': this.disabled,
- 'v-icon--left': this.left,
- 'v-icon--link': this.$listeners.click || this.$listeners['!click'],
- 'v-icon--right': this.right
- },
- attrs: _extends({
- 'aria-hidden': true
- }, this.$attrs),
- on: this.$listeners
- };
- return data;
- },
- applyColors: function applyColors(data) {
- data.class = _extends({}, data.class, this.themeClasses);
- this.setTextColor(this.color, data);
- },
- renderFontIcon: function renderFontIcon(icon, h) {
- var newChildren = [];
- var data = this.getDefaultData();
- var iconType = 'material-icons';
- // Material Icon delimiter is _
- // https://material.io/icons/
- var delimiterIndex = icon.indexOf('-');
- var isMaterialIcon = delimiterIndex <= -1;
- if (isMaterialIcon) {
- // Material icon uses ligatures.
- newChildren.push(icon);
- } else {
- iconType = icon.slice(0, delimiterIndex);
- if (isFontAwesome5(iconType)) iconType = '';
- }
- data.class[iconType] = true;
- data.class[icon] = !isMaterialIcon;
- var fontSize = this.getSize();
- if (fontSize) data.style = { fontSize: fontSize };
- this.applyColors(data);
- return h('i', data, newChildren);
- },
- renderSvgIcon: function renderSvgIcon(icon, h) {
- var data = this.getDefaultData();
- data.class['v-icon--is-component'] = true;
- var size = this.getSize();
- if (size) {
- data.style = {
- fontSize: size,
- height: size
- };
- }
- this.applyColors(data);
- var component = icon.component;
- data.props = icon.props;
- data.nativeOn = data.on;
- return h(component, data);
- }
- },
- render: function render(h) {
- var icon = this.getIcon();
- if (typeof icon === 'string') {
- return this.renderFontIcon(icon, h);
- }
- return this.renderSvgIcon(icon, h);
- }
- });
- exports.default = _vue2.default.extend({
- name: 'v-icon',
- $_wrapperFor: VIcon,
- functional: true,
- render: function render(h, _ref) {
- var data = _ref.data,
- children = _ref.children;
-
- var iconName = '';
- // Support usage of v-text and v-html
- if (data.domProps) {
- iconName = data.domProps.textContent || data.domProps.innerHTML || iconName;
- // Remove nodes so it doesn't
- // overwrite our changes
- delete data.domProps.textContent;
- delete data.domProps.innerHTML;
- }
- return h(VIcon, data, iconName ? [iconName] : children);
- }
- });
- //# sourceMappingURL=VIcon.js.map
|