2018-05-22 19:38:15 +08:00
'use strict' ;
2017-09-25 15:36:23 +08:00
2017-11-29 16:51:07 +08:00
Object . defineProperty ( exports , "__esModule" , {
value : true
} ) ;
2017-09-25 15:36:23 +08:00
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 ; } ;
2017-11-29 16:51:07 +08:00
exports [ "default" ] = multiSelect ;
2018-05-22 19:38:15 +08:00
var _react = require ( 'react' ) ;
2017-09-25 15:36:23 +08:00
var _react2 = _interopRequireDefault ( _react ) ;
2018-11-16 14:51:40 +08:00
var _beeCheckbox = require ( 'bee-checkbox' ) ;
var _beeCheckbox2 = _interopRequireDefault ( _beeCheckbox ) ;
var _util = require ( './util' ) ;
2017-09-25 15:36:23 +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 ) ; }
/ * *
2018-11-16 14:51:40 +08:00
* 参数 : 过滤表头
* @ param { * } Table
* @ param { * } Checkbox
* @ param { * } Popover
* @ param { * } Icon
2017-09-25 15:36:23 +08:00
* /
2018-11-16 14:51:40 +08:00
2018-05-22 19:38:15 +08:00
function multiSelect ( Table , Checkbox ) {
2018-04-02 14:22:39 +08:00
var _class , _temp , _initialiseProps ;
return _temp = _class = function ( _Component ) {
2018-11-16 14:51:40 +08:00
_inherits ( NewMultiSelect , _Component ) ;
2017-09-25 15:36:23 +08:00
2018-11-16 14:51:40 +08:00
function NewMultiSelect ( props ) {
_classCallCheck ( this , NewMultiSelect ) ;
2017-09-25 15:36:23 +08:00
var _this = _possibleConstructorReturn ( this , _Component . call ( this , props ) ) ;
2018-04-02 14:22:39 +08:00
_initialiseProps . call ( _this ) ;
2017-09-25 15:36:23 +08:00
2018-11-16 14:51:40 +08:00
var obj = _this . getCheckedOrIndeter ( props . data ) ;
_this . state = _extends ( { } , obj , {
data : ( 0 , _util . ObjectAssign ) ( props . data )
} ) ;
2017-09-25 15:36:23 +08:00
return _this ;
}
2018-11-16 14:51:40 +08:00
NewMultiSelect . prototype . componentWillReceiveProps = function componentWillReceiveProps ( nextProps ) {
if ( this . props . data != nextProps . data ) {
var obj = this . getCheckedOrIndeter ( props . data ) ;
this . setState ( _extends ( { } , obj , {
data : ( 0 , _util . ObjectAssign ) ( nextProps . data )
} ) ) ;
}
2018-03-28 10:37:18 +08:00
} ;
2018-11-16 14:51:40 +08:00
/ * *
* @ param { * } data
* /
NewMultiSelect . prototype . getCheckedOrIndeter = function getCheckedOrIndeter ( data ) {
var obj = { } ;
var checkStatus = this . setChecked ( data ) ;
if ( ! checkStatus ) {
obj . checkedAll = false ;
obj . indeterminate = false ;
return obj ;
}
if ( checkStatus == 'indeter' ) {
obj . indeterminate = true ;
obj . checkedAll = false ;
} else if ( checkStatus == 'all' ) {
obj . checkedAll = true ;
obj . indeterminate = false ;
2018-01-03 14:19:24 +08:00
}
2018-11-16 14:51:40 +08:00
return obj ;
2018-01-03 14:19:24 +08:00
} ;
2018-11-16 14:51:40 +08:00
/ * *
* 判断数据是否全部选中
* @ param { * } data
* reutnr string all ( 全选 ) 、 indeter ( 半选 )
* /
2017-09-25 15:36:23 +08:00
2018-11-16 14:51:40 +08:00
NewMultiSelect . prototype . setChecked = function setChecked ( data ) {
if ( ! this . isArray ( data ) ) return false ;
var count = 0 ;
data . forEach ( function ( da ) {
if ( da . _checked ) {
count ++ ;
2017-09-25 15:36:23 +08:00
}
2018-11-16 14:51:40 +08:00
} ) ;
if ( data . length == count ) {
return "all" ;
2017-09-25 15:36:23 +08:00
}
2018-11-16 14:51:40 +08:00
return count == 0 ? false : "indeter" ;
2017-09-25 15:36:23 +08:00
} ;
2018-11-16 14:51:40 +08:00
/ * *
* 判断是否是数组
* @ param { * } o
* /
2018-01-16 17:18:12 +08:00
2018-11-16 14:51:40 +08:00
NewMultiSelect . prototype . isArray = function isArray ( o ) {
return Object . prototype . toString . call ( o ) == '[object Array]' ;
2017-09-25 15:36:23 +08:00
} ;
2018-11-16 14:51:40 +08:00
NewMultiSelect . prototype . render = function render ( ) {
var columns = this . props . columns ;
var data = this . state . data ;
2018-04-02 14:22:39 +08:00
2018-11-16 14:51:40 +08:00
return _react2 [ "default" ] . createElement ( Table , _extends ( { } , this . props , { columns : this . getDefaultColumns ( columns ) , data : data } ) ) ;
2018-04-02 14:22:39 +08:00
} ;
2018-11-16 14:51:40 +08:00
return NewMultiSelect ;
} ( _react . Component ) , _class . defaultProps = {
prefixCls : "u-table-mult-select"
} , _initialiseProps = function _initialiseProps ( ) {
var _this2 = this ;
2018-04-02 14:22:39 +08:00
this . onAllCheckChange = function ( ) {
2018-11-16 14:51:40 +08:00
var _state = _this2 . state ,
data = _state . data ,
checkedAll = _state . checkedAll ,
indeterminate = _state . indeterminate ;
var check = false ;
if ( checkedAll ) {
check = false ;
2018-04-02 14:22:39 +08:00
} else {
2018-11-16 14:51:40 +08:00
if ( indeterminate ) {
check = true ;
2018-04-02 14:22:39 +08:00
} else {
2018-11-16 14:51:40 +08:00
check = true ;
2018-04-02 14:22:39 +08:00
}
}
2018-11-16 14:51:40 +08:00
var selectList = [ ] ;
data . forEach ( function ( item ) {
item . _checked = check ;
if ( item . _checked ) {
selectList . push ( item ) ;
}
2018-04-02 14:22:39 +08:00
} ) ;
2018-11-16 14:51:40 +08:00
_this2 . setState ( {
indeterminate : false ,
checkedAll : check
} ) ;
_this2 . props . getSelectedDataFunc ( selectList ) ;
2018-04-02 14:22:39 +08:00
} ;
2018-11-16 14:51:40 +08:00
this . handleClick = function ( ) { } ;
2018-04-02 14:22:39 +08:00
this . onCheckboxChange = function ( text , record , index ) {
2018-11-16 14:51:40 +08:00
return function ( ) {
var data = _this2 . state . data ;
var selectList = [ ] ;
record . _checked = record . _checked ? false : true ;
var obj = _this2 . getCheckedOrIndeter ( data ) ;
_this2 . setState ( _extends ( {
data : data
} , obj ) ) ;
data . forEach ( function ( da ) {
if ( da . _checked ) {
selectList . push ( da ) ;
}
} ) ;
_this2 . props . getSelectedDataFunc ( selectList , record , index ) ;
} ;
2018-04-02 14:22:39 +08:00
} ;
2018-04-11 14:34:18 +08:00
2018-11-16 14:51:40 +08:00
this . getDefaultColumns = function ( columns ) {
var _state2 = _this2 . state ,
checkedAll = _state2 . checkedAll ,
indeterminate = _state2 . indeterminate ;
var checkAttr = { checked : checkedAll ? true : false } ;
indeterminate ? checkAttr . indeterminate = true : "" ;
var _defaultColumns = [ {
title : _react2 [ "default" ] . createElement ( Checkbox , _extends ( {
className : 'table-checkbox'
} , checkAttr , {
onChange : _this2 . onAllCheckChange
} ) ) ,
key : "checkbox" ,
dataIndex : "checkbox" ,
fixed : "left" ,
width : 50 ,
render : function render ( text , record , index ) {
var attr = { } ;
record . _disabled ? attr . disabled = record . _disabled : "" ;
return _react2 [ "default" ] . createElement ( Checkbox , _extends ( {
key : index ,
className : 'table-checkbox'
} , attr , {
checked : record . _checked ,
onClick : _this2 . handleClick ,
onChange : _this2 . onCheckboxChange ( text , record , index )
} ) ) ;
}
} ] ;
return _defaultColumns . concat ( columns ) ;
2018-04-11 14:34:18 +08:00
} ;
2018-04-02 14:22:39 +08:00
} , _temp ;
2017-11-29 16:51:07 +08:00
}
2018-05-22 19:38:15 +08:00
module . exports = exports [ 'default' ] ;