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.
44 lines
1.3 KiB
44 lines
1.3 KiB
10 years ago
|
"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(require("react"));
|
||
|
|
||
|
var classNames = _interopRequire(require("classnames"));
|
||
|
|
||
|
var Table = React.createClass({
|
||
|
displayName: "Table",
|
||
|
|
||
|
propTypes: {
|
||
|
striped: React.PropTypes.bool,
|
||
|
bordered: React.PropTypes.bool,
|
||
|
condensed: React.PropTypes.bool,
|
||
|
hover: React.PropTypes.bool,
|
||
|
responsive: React.PropTypes.bool
|
||
|
},
|
||
|
|
||
|
render: function render() {
|
||
|
var classes = {
|
||
|
table: true,
|
||
|
"table-striped": this.props.striped,
|
||
|
"table-bordered": this.props.bordered,
|
||
|
"table-condensed": this.props.condensed,
|
||
|
"table-hover": this.props.hover
|
||
|
};
|
||
|
var table = React.createElement(
|
||
|
"table",
|
||
|
_extends({}, this.props, { className: classNames(this.props.className, classes) }),
|
||
|
this.props.children
|
||
|
);
|
||
|
|
||
|
return this.props.responsive ? React.createElement(
|
||
|
"div",
|
||
|
{ className: "table-responsive" },
|
||
|
table
|
||
|
) : table;
|
||
|
}
|
||
|
});
|
||
|
|
||
|
module.exports = Table;
|