UNPKG

modo-mobile

Version:

A mobile UI toolkit, based on React

74 lines (67 loc) 2.63 kB
import _extends from 'babel-runtime/helpers/extends'; import _classCallCheck from 'babel-runtime/helpers/classCallCheck'; import _createClass from 'babel-runtime/helpers/createClass'; import _possibleConstructorReturn from 'babel-runtime/helpers/possibleConstructorReturn'; import _inherits from 'babel-runtime/helpers/inherits'; var __rest = this && this.__rest || function (s, e) { var t = {}; for (var p in s) { if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0) t[p] = s[p]; }if (s != null && typeof Object.getOwnPropertySymbols === "function") for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { if (e.indexOf(p[i]) < 0) t[p[i]] = s[p[i]]; }return t; }; import classnames from 'classnames'; import * as React from 'react'; import Item from './ListItem'; var List = function (_React$PureComponent) { _inherits(List, _React$PureComponent); function List() { _classCallCheck(this, List); return _possibleConstructorReturn(this, (List.__proto__ || Object.getPrototypeOf(List)).apply(this, arguments)); } _createClass(List, [{ key: 'render', value: function render() { var _a = this.props, prefixCls = _a.prefixCls, children = _a.children, className = _a.className, style = _a.style, title = _a.title, extra = _a.extra, restProps = __rest(_a, ["prefixCls", "children", "className", "style", "title", "extra"]); var wrapCls = classnames(prefixCls, className); var headerNode = title || extra ? React.createElement( 'div', { className: prefixCls + '-header' }, React.createElement( 'div', { className: prefixCls + '-title' }, title ), React.createElement( 'div', { className: prefixCls + '-extra' }, extra ) ) : null; return React.createElement( 'div', _extends({ className: wrapCls, style: style }, restProps), headerNode, children ? React.createElement( 'div', { className: prefixCls + '-body' }, children ) : null ); } }]); return List; }(React.PureComponent); export default List; List.Item = Item; List.defaultProps = { prefixCls: 'm-list' };