yqcloud-ui
Version:
An enterprise-class UI design language and React-based implementation
191 lines (165 loc) • 5.58 kB
JavaScript
import _extends from 'babel-runtime/helpers/extends';
import _classCallCheck from 'babel-runtime/helpers/classCallCheck';
import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn';
import _inherits from 'babel-runtime/helpers/inherits';
import React from 'react';
import PropTypes from 'prop-types';
import arrayTreeFilter from 'array-tree-filter';
import { findDOMNode } from 'react-dom';
var Menus = function (_React$Component) {
_inherits(Menus, _React$Component);
function Menus(props) {
_classCallCheck(this, Menus);
var _this = _possibleConstructorReturn(this, _React$Component.call(this, props));
_this.saveMenuItem = function (index) {
return function (node) {
_this.menuItems[index] = node;
};
};
_this.menuItems = {};
return _this;
}
Menus.prototype.componentDidMount = function componentDidMount() {
this.scrollActiveItemToView();
};
Menus.prototype.componentDidUpdate = function componentDidUpdate(prevProps) {
if (!prevProps.visible && this.props.visible) {
this.scrollActiveItemToView();
}
};
Menus.prototype.getOption = function getOption(option, menuIndex) {
var _props = this.props,
prefixCls = _props.prefixCls,
expandTrigger = _props.expandTrigger;
var onSelect = this.props.onSelect.bind(this, option, menuIndex);
var expandProps = {
onClick: onSelect
};
var menuItemCls = prefixCls + '-menu-item';
var hasChildren = option.children && option.children.length > 0;
if (hasChildren || option.isLeaf === false) {
menuItemCls += ' ' + prefixCls + '-menu-item-expand';
}
if (expandTrigger === 'hover' && hasChildren) {
expandProps = {
onMouseEnter: this.delayOnSelect.bind(this, onSelect),
onMouseLeave: this.delayOnSelect.bind(this),
onClick: onSelect
};
}
if (this.isActiveOption(option, menuIndex)) {
menuItemCls += ' ' + prefixCls + '-menu-item-active';
expandProps.ref = this.saveMenuItem(menuIndex);
}
if (option.disabled) {
menuItemCls += ' ' + prefixCls + '-menu-item-disabled';
}
if (option.loading) {
menuItemCls += ' ' + prefixCls + '-menu-item-loading';
}
var title = '';
if (option.title) {
title = option.title;
} else if (typeof option.label === 'string') {
title = option.label;
}
return React.createElement(
'li',
_extends({
key: option.value,
className: menuItemCls,
title: title
}, expandProps),
option.label
);
};
Menus.prototype.getActiveOptions = function getActiveOptions(values) {
var activeValue = values || this.props.activeValue;
var options = this.props.options;
return arrayTreeFilter(options, function (o, level) {
return o.value === activeValue[level];
});
};
Menus.prototype.getShowOptions = function getShowOptions() {
var options = this.props.options;
var result = this.getActiveOptions().map(function (activeOption) {
return activeOption.children;
}).filter(function (activeOption) {
return !!activeOption;
});
result.unshift(options);
return result;
};
Menus.prototype.delayOnSelect = function delayOnSelect(onSelect) {
var _this2 = this;
for (var _len = arguments.length, args = Array(_len > 1 ? _len - 1 : 0), _key = 1; _key < _len; _key++) {
args[_key - 1] = arguments[_key];
}
if (this.delayTimer) {
clearTimeout(this.delayTimer);
this.delayTimer = null;
}
if (typeof onSelect === 'function') {
this.delayTimer = setTimeout(function () {
onSelect(args);
_this2.delayTimer = null;
}, 150);
}
};
Menus.prototype.scrollActiveItemToView = function scrollActiveItemToView() {
// scroll into view
var optionsLength = this.getShowOptions().length;
for (var i = 0; i < optionsLength; i++) {
var itemComponent = this.menuItems[i];
if (itemComponent) {
var target = findDOMNode(itemComponent);
target.parentNode.scrollTop = target.offsetTop;
}
}
};
Menus.prototype.isActiveOption = function isActiveOption(option, menuIndex) {
var _props$activeValue = this.props.activeValue,
activeValue = _props$activeValue === undefined ? [] : _props$activeValue;
return activeValue[menuIndex] === option.value;
};
Menus.prototype.render = function render() {
var _this3 = this;
var _props2 = this.props,
prefixCls = _props2.prefixCls,
dropdownMenuColumnStyle = _props2.dropdownMenuColumnStyle;
return React.createElement(
'div',
null,
this.getShowOptions().map(function (options, menuIndex) {
return React.createElement(
'ul',
{ className: prefixCls + '-menu', key: menuIndex, style: dropdownMenuColumnStyle },
options.map(function (option) {
return _this3.getOption(option, menuIndex);
})
);
})
);
};
return Menus;
}(React.Component);
Menus.defaultProps = {
options: [],
value: [],
activeValue: [],
onSelect: function onSelect() {},
prefixCls: 'rc-cascader-menus',
visible: false,
expandTrigger: 'click'
};
Menus.propTypes = {
value: PropTypes.array,
activeValue: PropTypes.array,
options: PropTypes.array.isRequired,
prefixCls: PropTypes.string,
expandTrigger: PropTypes.string,
onSelect: PropTypes.func,
visible: PropTypes.bool,
dropdownMenuColumnStyle: PropTypes.object
};
export default Menus;