bee-table/build/lib/filterColumn.js

240 lines
7.7 KiB
JavaScript
Raw Normal View History

2018-05-11 09:29:43 +08:00
"use strict";
Object.defineProperty(exports, "__esModule", {
value: 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; };
exports["default"] = filterColumn;
var _react = require("react");
var _react2 = _interopRequireDefault(_react);
var _beeCheckbox = require("bee-checkbox");
var _beeCheckbox2 = _interopRequireDefault(_beeCheckbox);
var _beeIcon = require("bee-icon");
var _beeIcon2 = _interopRequireDefault(_beeIcon);
var _utils = require("../utils");
2018-05-11 09:29:43 +08:00
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
function _defaults(obj, defaults) { var keys = Object.getOwnPropertyNames(defaults); for (var i = 0; i < keys.length; i++) { var key = keys[i]; var value = Object.getOwnPropertyDescriptor(defaults, key); if (value && value.configurable && obj[key] === undefined) { Object.defineProperty(obj, key, value); } } return obj; }
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _possibleConstructorReturn(self, call) { if (!self) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return call && (typeof call === "object" || typeof call === "function") ? call : self; }
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) : _defaults(subClass, superClass); }
function noop() {}
2018-05-11 09:29:43 +08:00
/**
* 参数: 过滤表头
* @param {*} Table
2018-05-22 19:38:15 +08:00
* @param {*} Popover
* @param {*} Icon
2018-05-11 09:29:43 +08:00
*/
function filterColumn(Table, Popover) {
2018-05-11 09:29:43 +08:00
var _class, _temp, _initialiseProps;
return _temp = _class = function (_Component) {
2018-05-22 19:38:15 +08:00
_inherits(FilterColumn, _Component);
2018-05-11 09:29:43 +08:00
2018-05-22 19:38:15 +08:00
function FilterColumn(props) {
_classCallCheck(this, FilterColumn);
2018-05-11 09:29:43 +08:00
var _this = _possibleConstructorReturn(this, _Component.call(this, props));
_initialiseProps.call(_this);
var columns = props.columns;
_this.state = {
2018-07-06 14:33:29 +08:00
columns: _this.setColumOrderByIndex((0, _utils.ObjectAssign)(columns)),
2018-05-11 09:29:43 +08:00
showModal: false,
screenY: 0
};
return _this;
}
FilterColumn.prototype.componentWillReceiveProps = function componentWillReceiveProps(nextProps) {
if (nextProps.columns != this.props.columns) {
this.setState({
columns: this.setColumOrderByIndex((0, _utils.ObjectAssign)(nextProps.columns))
});
}
this.setState({
showModal: nextProps.showFilterPopover ? true : false
});
};
2018-05-22 19:38:15 +08:00
FilterColumn.prototype.render = function render() {
var _props = this.props,
data = _props.data,
prefixCls = _props.prefixCls,
scrollPro = _props.scroll;
2018-05-11 09:29:43 +08:00
var _state = this.state,
columns = _state.columns,
showModal = _state.showModal;
2018-05-11 09:29:43 +08:00
var _columns = [],
widthState = 0,
scroll = scrollPro;
2018-05-11 09:29:43 +08:00
columns.forEach(function (da) {
if (da.ifshow) {
2018-05-11 09:29:43 +08:00
_columns.push(da);
2018-07-16 17:14:15 +08:00
if (da.width) {
widthState++;
}
}
2018-05-11 09:29:43 +08:00
});
if (_columns.length == widthState) {
scroll.x = this.getCloumnsScroll(columns);
}
2018-05-11 09:29:43 +08:00
var content = _react2["default"].createElement(
"div",
{ className: prefixCls + "-pop-cont" },
2018-05-11 09:29:43 +08:00
_react2["default"].createElement(
"span",
{ className: prefixCls + "-clear-setting", onClick: this.clear },
2018-05-11 09:29:43 +08:00
"\u6E05\u9664\u8BBE\u7F6E"
),
_react2["default"].createElement(
"div",
null,
this.getCloumItem()
)
);
return _react2["default"].createElement(
"div",
{ className: prefixCls + "-cont" },
_react2["default"].createElement(Table, _extends({}, this.props, { columns: _columns, data: data,
scroll: scroll
// scroll={{x:this.getCloumnsScroll(columns)}}
})),
2018-05-11 09:29:43 +08:00
_react2["default"].createElement(
"div",
{ className: prefixCls + "-filter-icon" },
2018-05-11 09:29:43 +08:00
_react2["default"].createElement(
Popover,
{
id: "filter_column_popover",
placement: "leftTop",
content: content,
show: showModal },
_react2["default"].createElement(
"div",
2018-06-25 09:11:12 +08:00
{ className: prefixCls + "-pop-column-filter-cont" },
_react2["default"].createElement(_beeIcon2["default"], { type: "uf-navmenu", onClick: this.openCloumList })
)
2018-05-11 09:29:43 +08:00
)
)
);
};
2018-05-22 19:38:15 +08:00
return FilterColumn;
}(_react.Component), _class.defaultProps = {
prefixCls: "u-table-filter-column",
afterFilter: noop,
scroll: {}
}, _initialiseProps = function _initialiseProps() {
2018-05-11 09:29:43 +08:00
var _this2 = this;
2018-07-06 14:33:29 +08:00
this.setColumOrderByIndex = function (_column) {
_column.forEach(function (da) {
//默认所有的列都显示如果传递ifshow属性根据ifshow属性值来判断是否显示某列
if (da.hasOwnProperty('ifshow')) {
da.checked = da.ifshow ? true : false;
da.ifshow = da.checked;
} else {
da.checked = true;
da.ifshow = true;
}
2018-07-06 14:33:29 +08:00
});
return _column;
};
2018-05-11 09:29:43 +08:00
this.checkedColumItemClick = function (da) {
var _props2 = _this2.props,
checkMinSize = _props2.checkMinSize,
afterFilter = _props2.afterFilter;
// if(checkMinSize)
2018-07-06 14:33:29 +08:00
var sum = 0,
leng = 0;
_this2.state.columns.forEach(function (da) {
da.fixed ? "" : leng++;
!da.fixed && da.checked ? sum++ : "";
});
2018-07-06 14:33:29 +08:00
if (sum < checkMinSize && da.checked) {
return;
} else {
2018-07-06 14:33:29 +08:00
if (sum <= 1 && da.checked) return;
}
2018-07-06 14:33:29 +08:00
da.checked = da.checked ? false : true;
da.ifshow = da.checked ? true : false;
2018-05-11 09:29:43 +08:00
_this2.setState(_extends({}, _this2.state));
afterFilter(da, _this2.state.columns);
2018-05-11 09:29:43 +08:00
};
2018-07-04 15:55:48 +08:00
this.openCloumList = function () {
2018-05-11 09:29:43 +08:00
_this2.setState({
showModal: true
});
};
this.getCloumItem = function () {
var prefixCls = _this2.props.prefixCls;
2018-05-11 09:29:43 +08:00
var columns = _this2.state.columns;
return columns.map(function (da, i) {
if (!da.fixed) {
return _react2["default"].createElement(
"div",
{ key: da.key + "_" + i, className: prefixCls + "-pop-cont-item", onClick: function onClick() {
_this2.checkedColumItemClick(da);
} },
_react2["default"].createElement(_beeCheckbox2["default"], { id: da.key, checked: da.checked }),
_react2["default"].createElement(
"span",
null,
da.title
)
);
}
2018-05-11 09:29:43 +08:00
});
};
this.clear = function () {
var columns = _this2.state.columns;
columns.forEach(function (da) {
da.checked = true;
da.ifshow = true;
2018-05-11 09:29:43 +08:00
});
_this2.setState(_extends({}, _this2.state));
};
this.getCloumnsScroll = function (columns) {
var sum = 0;
columns.forEach(function (da) {
if (da.checked) {
sum += da.width;
}
});
// console.log("sum",sum);
return sum;
};
2018-05-11 09:29:43 +08:00
}, _temp;
}
module.exports = exports["default"];