UNPKG

ssc-refer

Version:
108 lines (96 loc) 2.9 kB
'use strict'; import _extends from 'babel-runtime/helpers/extends'; import cx from 'classnames'; import React, { Children } from 'react'; import PropTypes from 'prop-types'; var BaseContainer = function BaseContainer(props) { return React.createElement( 'ul', _extends({}, props, { className: cx('dropdown-menu', props.className) }), props.children ); }; /** * Menu component that automatically handles pagination and empty state when * passed a set of filtered and truncated results. */ var TreeTable = React.createClass({ displayName: 'TreeTable', propTypes: { /** * Specify menu alignment. The default value is `justify`, which makes the * menu as wide as the input and truncates long values. Specifying `left` * or `right` will align the menu to that side and the width will be * determined by the length of menu item values. */ align: PropTypes.oneOf(['justify', 'left', 'right']), /** * Message to display in the menu if there are no valid results. */ emptyLabel: PropTypes.string, /** * Maximum height of the dropdown menu, in px. */ maxHeight: PropTypes.number, /** * Prompt displayed when large data sets are paginated. */ paginationText: PropTypes.string }, getDefaultProps: function getDefaultProps() { return { align: 'justify', emptyLabel: '无数据.', maxHeight: 300, paginate: true, paginationText: '显示更多...' }; }, render: function render() { var _props = this.props, align = _props.align, children = _props.children, className = _props.className, emptyLabel = _props.emptyLabel; var noResults = Children.count(children) === 0; // If an empty string is passed, suppress menu when there are no results. if (noResults && emptyLabel === '') { return null; } var contents = children; return React.createElement( BaseContainer, { className: cx('bootstrap-typeahead-menu', { 'dropdown-menu-justify': align === 'justify', 'dropdown-menu-right': align === 'right' }, className), style: this._getMenuStyle() }, contents ); }, _getMenuStyle: function _getMenuStyle() { var _props2 = this.props, align = _props2.align, dropup = _props2.dropup, maxHeight = _props2.maxHeight, style = _props2.style; var menuStyle = _extends({}, style, { display: 'block', maxHeight: maxHeight + 'px', overflow: 'auto' }); if (style) { if (dropup) { menuStyle.top = 'auto'; } else { delete menuStyle.bottom; } menuStyle.left = align === 'right' ? 'auto' : style.left; menuStyle.right = align === 'left' ? 'auto' : style.right; } return menuStyle; } }); export default TreeTable;