eagle-ui
Version:
This is a used to develop the background management system based on the react to develop a set of UI framework
111 lines (89 loc) • 5.08 kB
JavaScript
;
exports.__esModule = true;
var _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; };
var _createClass = (function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ('value' in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; })();
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { 'default': obj }; }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError('Cannot call a class as a function'); } }
function _inherits(subClass, superClass) { if (typeof superClass !== 'function' && superClass !== null) { throw new TypeError('Super expression must either be null or a function, not ' + typeof superClass); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, enumerable: false, writable: true, configurable: true } }); if (superClass) Object.setPrototypeOf ? Object.setPrototypeOf(subClass, superClass) : subClass.__proto__ = superClass; }
var _react = require('react');
var _react2 = _interopRequireDefault(_react);
var _classnames = require('classnames');
var _classnames2 = _interopRequireDefault(_classnames);
var _utilsComponent = require('./utils/Component');
var _utilsComponent2 = _interopRequireDefault(_utilsComponent);
/**
* <h5>eagle-ui部分UI组件</h5>
* <strong><a href='../classes/Crumb.html'>Crumb封装层级链接(面包屑)</a></strong><br>
* <strong><a href='../classes/Slider.html'>Slider组件展示幻灯片形式的照片展示</a></strong><br>
* <strong><a href='../classes/Label.html'>Label定义标签展示的形式</a></strong><br>
* <strong><a href='../classes/Search.html'>Search定义不同的搜索框</a></strong><br>
* <strong><a href='../classes/Star.html'>Star以星星的形式定义不同的星级展示</a></strong><br>
* <strong><a href='../classes/Calendar.html'>Calendar为日期选择组件</a></strong><br>
* <strong><a href='../classes/Dialog.html'>Dialog模拟了浏览器弹出的alert、confirm等交互形式</a></strong><br>
* <strong><a href='../classes/Paging.html'>Paging展示了常见的分页形式标签,封装了点击功能</a></strong><br>
* <strong><a href='../classes/Suggestion.html'>Suggestion在Search的基础上,动态联想匹配项</a></strong><br>
* <strong><a href='../classes/Tab.html'>Tab模拟了常见的导航条样式</a></strong><br>
* <strong><a href='../classes/Toast.html'>Toast可以模拟Ajax请求成功或者失败后,通知用户的UI界面展示</a></strong><br>
* <strong><a href='../classes/Tooltip.html'>Tooltip在Label的基础上,增加了鼠标hover或者点击的提示功能</a></strong>
* @module ui
* @main ui
* @static
*/
/**
* 面包屑组件
* @class Crumb
* @module ui
* @extends Component
* @constructor
* @demo #/crumb|crumb.js
* @show true
* */
var Crumb = (function (_Component) {
_inherits(Crumb, _Component);
_createClass(Crumb, null, [{
key: 'propTypes',
value: {
classPrefix: _react.PropTypes.string,
componentTag: _react.PropTypes.string
},
enumerable: true
}, {
key: 'defaultProps',
value: {
classPrefix: 'crumb',
componentTag: 'div'
},
enumerable: true
}]);
function Crumb(props, context) {
_classCallCheck(this, Crumb);
_Component.call(this, props, context);
}
Crumb.prototype.render = function render() {
var length = this.props.children.length;
var li = this.props.children.map(function (item, index) {
var children = item.props.children;
return _react2['default'].createElement(
'li',
{ key: children + index },
index < length - 1 ? _react2['default'].createElement(
'a',
{ href: item.props.url },
children
) : children
);
});
return _react2['default'].createElement(
this.componentTag,
_extends({}, this.props, { className: _classnames2['default'](this.getProperty(), 'clearfix', this.props.className) }),
_react2['default'].createElement(
'ul',
null,
li
)
);
};
return Crumb;
})(_utilsComponent2['default']);
exports['default'] = Crumb;
module.exports = exports['default'];