You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.5 KiB
43 lines
1.5 KiB
define(["exports", "module", "react", "classnames", "./utils/ValidComponentChildren", "./utils/createChainedFunction"], function (exports, module, _react, _classnames, _utilsValidComponentChildren, _utilsCreateChainedFunction) { |
|
"use strict"; |
|
|
|
var _interopRequire = function (obj) { return obj && obj.__esModule ? obj["default"] : obj; }; |
|
|
|
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 React = _interopRequire(_react); |
|
|
|
var cloneElement = _react.cloneElement; |
|
|
|
var classNames = _interopRequire(_classnames); |
|
|
|
var ValidComponentChildren = _interopRequire(_utilsValidComponentChildren); |
|
|
|
var createChainedFunction = _interopRequire(_utilsCreateChainedFunction); |
|
|
|
var Pager = React.createClass({ |
|
displayName: "Pager", |
|
|
|
propTypes: { |
|
onSelect: React.PropTypes.func |
|
}, |
|
|
|
render: function render() { |
|
return React.createElement( |
|
"ul", |
|
_extends({}, this.props, { |
|
className: classNames(this.props.className, "pager") }), |
|
ValidComponentChildren.map(this.props.children, this.renderPageItem) |
|
); |
|
}, |
|
|
|
renderPageItem: function renderPageItem(child, index) { |
|
return cloneElement(child, { |
|
onSelect: createChainedFunction(child.props.onSelect, this.props.onSelect), |
|
key: child.key ? child.key : index |
|
}); |
|
} |
|
}); |
|
|
|
module.exports = Pager; |
|
}); |