84 lines
3.0 KiB
Java
84 lines
3.0 KiB
Java
import _typeof from 'babel-runtime/helpers/typeof';
|
|
import isMobile from './utils/isMobile';
|
|
|
|
export function noop() {}
|
|
|
|
export function getKeyFromChildrenIndex(child, menuEventKey, index) {
|
|
var prefix = menuEventKey || '';
|
|
return child.key === undefined ? prefix + 'item_' + index : child.key;
|
|
}
|
|
|
|
export function getMenuIdFromSubMenuEventKey(eventKey) {
|
|
return eventKey + '-menu-';
|
|
}
|
|
|
|
export function loopMenuItem(children, cb) {
|
|
var index = -1;
|
|
children.forEach(function (c) {
|
|
index++;
|
|
if (c && c.type && c.type.isMenuItemGroup) {
|
|
c.$slots['default'].forEach(function (c2) {
|
|
index++;
|
|
c.componentOptions && cb(c2, index);
|
|
});
|
|
} else {
|
|
c.componentOptions && cb(c, index);
|
|
}
|
|
});
|
|
}
|
|
|
|
export function loopMenuItemRecursively(children, keys, ret) {
|
|
if (!children || ret.find) {
|
|
return;
|
|
}
|
|
children.forEach(function (c) {
|
|
if (ret.find) {
|
|
return;
|
|
}
|
|
if (c.data && c.data.slot && c.data.slot !== 'default') {
|
|
return;
|
|
}
|
|
if (c && c.componentOptions) {
|
|
var options = c.componentOptions.Ctor.options;
|
|
if (!options || !(options.isSubMenu || options.isMenuItem || options.isMenuItemGroup)) {
|
|
return;
|
|
}
|
|
if (keys.indexOf(c.key) !== -1) {
|
|
ret.find = true;
|
|
} else if (c.componentOptions.children) {
|
|
loopMenuItemRecursively(c.componentOptions.children, keys, ret);
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
export var menuAllProps = {
|
|
props: ['defaultSelectedKeys', 'selectedKeys', 'defaultOpenKeys', 'openKeys', 'mode', 'getPopupContainer', 'openTransitionName', 'openAnimation', 'subMenuOpenDelay', 'subMenuCloseDelay', 'forceSubMenuRender', 'triggerSubMenuAction', 'level', 'selectable', 'multiple', 'visible', 'focusable', 'defaultActiveFirst', 'prefixCls', 'inlineIndent', 'parentMenu', 'title', 'rootPrefixCls', 'eventKey', 'active', 'popupAlign', 'popupOffset', 'isOpen', 'renderMenuItem', 'manualRef', 'subMenuKey', 'disabled', 'index', 'isSelected', 'store', 'activeKey', 'builtinPlacements', 'overflowedIndicator',
|
|
|
|
// the following keys found need to be removed from test regression
|
|
'attribute', 'value', 'popupClassName', 'inlineCollapsed', 'menu', 'theme', 'itemIcon', 'expandIcon'],
|
|
on: ['select', 'deselect', 'destroy', 'openChange', 'itemHover', 'titleMouseenter', 'titleMouseleave', 'titleClick']
|
|
};
|
|
|
|
// ref: https://github.com/ant-design/ant-design/issues/14007
|
|
// ref: https://bugs.chromium.org/p/chromium/issues/detail?id=360889
|
|
// getBoundingClientRect return the full precision value, which is
|
|
// not the same behavior as on chrome. Set the precision to 6 to
|
|
// unify their behavior
|
|
export var getWidth = function getWidth(elem) {
|
|
var width = elem && typeof elem.getBoundingClientRect === 'function' && elem.getBoundingClientRect().width;
|
|
if (width) {
|
|
width = +width.toFixed(6);
|
|
}
|
|
return width || 0;
|
|
};
|
|
|
|
export var setStyle = function setStyle(elem, styleProperty, value) {
|
|
if (elem && _typeof(elem.style) === 'object') {
|
|
elem.style[styleProperty] = value;
|
|
}
|
|
};
|
|
|
|
export var isMobileDevice = function isMobileDevice() {
|
|
return isMobile.any;
|
|
}; |