UNPKG

ssc-refer

Version:
160 lines (133 loc) 4.48 kB
'use strict'; exports.__esModule = true; var _extends2 = require('babel-runtime/helpers/extends'); var _extends3 = _interopRequireDefault(_extends2); var _classnames = require('classnames'); var _classnames2 = _interopRequireDefault(_classnames); var _react = require('react'); var _react2 = _interopRequireDefault(_react); var _propTypes = require('prop-types'); var _propTypes2 = _interopRequireDefault(_propTypes); var _MenuItem = require('./MenuItem.react'); function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; } var BaseContent = function BaseContent(props) { return _react2['default'].createElement( 'div', (0, _extends3['default'])({}, props, { className: (0, _classnames2['default'])('dropup-menu', props.className) }), props.children ); }; /** * Menu component that automatically handles pagination and empty state when * passed a set of filtered and truncated results. */ var Content = _react2['default'].createClass({ displayName: 'Content', 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: _propTypes2['default'].oneOf(['justify', 'left', 'right']), /** * Message to display in the menu if there are no valid results. */ emptyLabel: _propTypes2['default'].string, /** * Maximum height of the dropdown menu, in px. */ maxHeight: _propTypes2['default'].number, /** * Prompt displayed when large data sets are paginated. */ paginationText: _propTypes2['default'].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 = _react.Children.count(children) === 0; // If an empty string is passed, suppress menu when there are no results. if (noResults && emptyLabel === '') { return null; } var contents = noResults ? _react2['default'].createElement( _MenuItem.BaseMenuItem, { disabled: true }, emptyLabel ) : children; return _react2['default'].createElement( BaseContent, { className: (0, _classnames2['default'])('bootstrap-refer-content', { 'dropdown-menu-justify': align === 'justify', 'dropdown-menu-right': align === 'right' }, className), style: this._getMenuStyle() }, contents, this._renderPaginationMenuItem() ); }, /** * Allow user to see more results, if available. */ _renderPaginationMenuItem: function _renderPaginationMenuItem() { var _props2 = this.props, children = _props2.children, onPaginate = _props2.onPaginate, paginate = _props2.paginate, paginationText = _props2.paginationText; if (paginate && _react.Children.count(children)) { return [_react2['default'].createElement('li', { className: 'divider', key: 'pagination-item-divider', role: 'separator' }), _react2['default'].createElement( _MenuItem.BaseMenuItem, { className: 'bootstrap-typeahead-menu-paginator', key: 'pagination-item', onClick: onPaginate }, paginationText )]; } }, _getMenuStyle: function _getMenuStyle() { var _props3 = this.props, align = _props3.align, dropup = _props3.dropup, maxHeight = _props3.maxHeight, style = _props3.style; var menuStyle = (0, _extends3['default'])({}, 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; } }); exports['default'] = Content; module.exports = exports['default'];