2017-01-12 08:53:51 +08:00
'use strict' ;
Object . defineProperty ( exports , "__esModule" , {
value : true
} ) ;
2019-09-06 14:47:42 +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-01-12 08:53:51 +08:00
var _react = require ( 'react' ) ;
var _react2 = _interopRequireDefault ( _react ) ;
2017-06-03 20:34:07 +08:00
var _propTypes = require ( 'prop-types' ) ;
var _propTypes2 = _interopRequireDefault ( _propTypes ) ;
2019-07-26 09:47:18 +08:00
var _utils = require ( './lib/utils' ) ;
2019-04-25 14:19:48 +08:00
2017-01-12 08:53:51 +08:00
var _TableCell = require ( './TableCell' ) ;
var _TableCell2 = _interopRequireDefault ( _TableCell ) ;
var _ExpandIcon = require ( './ExpandIcon' ) ;
var _ExpandIcon2 = _interopRequireDefault ( _ExpandIcon ) ;
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 ) ; }
var propTypes = {
2017-06-03 20:34:07 +08:00
onDestroy : _propTypes2 [ "default" ] . func ,
onRowClick : _propTypes2 [ "default" ] . func ,
onRowDoubleClick : _propTypes2 [ "default" ] . func ,
record : _propTypes2 [ "default" ] . object ,
clsPrefix : _propTypes2 [ "default" ] . string ,
expandIconColumnIndex : _propTypes2 [ "default" ] . number ,
onHover : _propTypes2 [ "default" ] . func ,
columns : _propTypes2 [ "default" ] . array ,
height : _propTypes2 [ "default" ] . oneOfType ( [ _propTypes2 [ "default" ] . string , _propTypes2 [ "default" ] . number ] ) ,
visible : _propTypes2 [ "default" ] . bool ,
index : _propTypes2 [ "default" ] . number ,
hoverKey : _propTypes2 [ "default" ] . any ,
expanded : _propTypes2 [ "default" ] . bool ,
expandable : _propTypes2 [ "default" ] . any ,
onExpand : _propTypes2 [ "default" ] . func ,
needIndentSpaced : _propTypes2 [ "default" ] . bool ,
className : _propTypes2 [ "default" ] . string ,
indent : _propTypes2 [ "default" ] . number ,
indentSize : _propTypes2 [ "default" ] . number ,
expandIconAsCell : _propTypes2 [ "default" ] . bool ,
expandRowByClick : _propTypes2 [ "default" ] . bool ,
2019-04-25 14:19:48 +08:00
store : _propTypes2 [ "default" ] . object . isRequired ,
rowDraggAble : _propTypes2 [ "default" ] . bool ,
2019-07-16 11:30:02 +08:00
onDragRow : _propTypes2 [ "default" ] . func ,
2020-09-07 13:48:01 +08:00
onDragRowStart : _propTypes2 [ "default" ] . func ,
syncRowHeight : _propTypes2 [ "default" ] . bool
2017-01-12 08:53:51 +08:00
} ;
var defaultProps = {
onRowClick : function onRowClick ( ) { } ,
2019-12-13 17:22:14 +08:00
// onRowDoubleClick() {},
2017-01-12 08:53:51 +08:00
onDestroy : function onDestroy ( ) { } ,
expandIconColumnIndex : 0 ,
expandRowByClick : false ,
2018-12-24 17:13:56 +08:00
onHover : function onHover ( ) { } ,
2019-01-07 14:57:58 +08:00
className : '' ,
2019-04-25 14:19:48 +08:00
setRowParentIndex : function setRowParentIndex ( ) { } ,
2020-09-07 13:48:01 +08:00
rowDraggAble : false ,
2019-04-25 14:19:48 +08:00
// onDragRow:()=>{}
2020-09-07 13:48:01 +08:00
syncRowHeight : false
2017-01-12 08:53:51 +08:00
} ;
var TableRow = function ( _Component ) {
_inherits ( TableRow , _Component ) ;
function TableRow ( props ) {
_classCallCheck ( this , TableRow ) ;
var _this = _possibleConstructorReturn ( this , _Component . call ( this , props ) ) ;
2019-04-25 14:19:48 +08:00
_this . initEvent = function ( ) {
2019-06-19 13:21:15 +08:00
var events = [ { key : 'touchstart' , fun : _this . onTouchStart } , //手指触摸到一个 DOM 元素时触发
{ key : 'touchmove' , fun : _this . onTouchMove } , //手指在一个 DOM 元素上滑动时触发
{ key : 'touchend' , fun : _this . onTouchEnd } , //手指从一个 DOM 元素上移开时触发
{ key : 'dragstart' , fun : _this . onDragStart } , //用户开始拖动元素时触发
2019-04-25 14:19:48 +08:00
{ key : 'dragover' , fun : _this . onDragOver } , //当某被拖动的对象在另一对象容器范围内拖动时触发此事件
2019-08-05 17:23:38 +08:00
{ key : 'drop' , fun : _this . onDrop } , //在一个拖动过程中,释放鼠标键时触发此事件
2019-04-25 14:19:48 +08:00
{ key : 'dragenter' , fun : _this . onDragEnter } , { key : 'dragleave' , fun : _this . onDragLeave } ] ;
_this . eventListen ( events , '' , _this . element ) ;
} ;
_this . removeDragAbleEvent = function ( ) {
2019-06-19 13:21:15 +08:00
var events = [ { key : 'touchstart' , fun : _this . onTouchStart } , //手指触摸到一个 DOM 元素时触发
{ key : 'touchmove' , fun : _this . onTouchMove } , //手指在一个 DOM 元素上滑动时触发
{ key : 'touchend' , fun : _this . onTouchEnd } , //手指从一个 DOM 元素上移开时触发
{ key : 'dragstart' , fun : _this . onDragStart } , //用户开始拖动元素时触发
{ key : 'dragover' , fun : _this . onDragOver } , //当某被拖动的对象在另一对象容器范围内拖动时触发此事件
2019-08-05 17:23:38 +08:00
{ key : 'drop' , fun : _this . onDrop } , //在一个拖动过程中,释放鼠标键时触发此事件
2019-06-19 13:21:15 +08:00
{ key : 'dragenter' , fun : _this . onDragEnter } , { key : 'dragleave' , fun : _this . onDragLeave } ] ;
2019-04-25 14:19:48 +08:00
_this . eventListen ( events , 'remove' , _this . element ) ;
} ;
_this . onDragStart = function ( e ) {
2019-07-16 11:30:02 +08:00
var onDragRowStart = _this . props . onDragRowStart ;
2020-09-21 11:05:41 +08:00
if ( ! _this . props . rowDraggAble || _this . notRowDrag ) return ;
2019-04-25 14:19:48 +08:00
var event = _utils . Event . getEvent ( e ) ,
target = _utils . Event . getTarget ( event ) ;
2020-07-13 21:14:33 +08:00
if ( target . tagName === 'TD' ) {
target = target . parentNode ;
}
2019-04-25 14:19:48 +08:00
_this . currentIndex = target . getAttribute ( "data-row-key" ) ;
2021-02-24 16:58:38 +08:00
// 拖拽其实index
_this . props . contentTable . startI = target . getAttribute ( "data-row-index" ) ;
2019-04-25 14:19:48 +08:00
_this . _dragCurrent = target ;
event . dataTransfer . effectAllowed = "move" ;
event . dataTransfer . setData ( "Text" , _this . currentIndex ) ;
2019-07-16 11:30:02 +08:00
onDragRowStart && onDragRowStart ( _this . currentIndex ) ;
2019-04-25 14:19:48 +08:00
} ;
_this . onDragOver = function ( e ) {
var event = _utils . Event . getEvent ( e ) ;
event . preventDefault ( ) ;
} ;
_this . onDrop = function ( e ) {
2021-02-24 16:58:38 +08:00
var _this$props = _this . props ,
onDragRow = _this$props . onDragRow ,
contentTable = _this$props . contentTable ;
2019-04-25 14:19:48 +08:00
var event = _utils . Event . getEvent ( e ) ,
_target = _utils . Event . getTarget ( event ) ,
target = _target . parentNode ;
2020-09-29 09:45:11 +08:00
event . preventDefault ( ) ;
event . stopPropagation ( ) ;
2019-04-26 18:10:57 +08:00
var currentKey = event . dataTransfer . getData ( "text" ) ;
var targetKey = target . getAttribute ( "data-row-key" ) ;
if ( ! targetKey || targetKey === currentKey ) return ;
2019-04-25 14:19:48 +08:00
if ( target . nodeName . toUpperCase ( ) === "TR" ) {
2019-04-26 18:10:57 +08:00
_this . synchronizeTableTr ( currentKey , null ) ;
_this . synchronizeTableTr ( targetKey , null ) ;
2019-04-25 14:19:48 +08:00
}
2019-04-26 18:10:57 +08:00
onDragRow && onDragRow ( currentKey , targetKey ) ;
} ;
2019-06-19 13:21:15 +08:00
_this . getTouchDom = function ( event ) {
var currentLocation = event . changedTouches [ 0 ] ;
var realTarget = document . elementFromPoint ( currentLocation . clientX , currentLocation . clientY ) ;
return realTarget ;
} ;
_this . onTouchStart = function ( e ) {
2019-08-07 10:32:05 +08:00
e . stopPropagation ( ) ;
2019-07-16 11:30:02 +08:00
var onDragRowStart = _this . props . onDragRowStart ;
2019-06-19 13:21:15 +08:00
var event = _utils . Event . getEvent ( e ) ,
_target = _utils . Event . getTarget ( event ) ,
target = _target . parentNode ;
2019-08-05 17:23:38 +08:00
2019-08-07 10:32:05 +08:00
if ( target . tagName === 'TR' ) {
2019-07-16 11:30:02 +08:00
2019-08-07 10:32:05 +08:00
_this . currentIndex = target . getAttribute ( "data-row-key" ) ;
onDragRowStart && onDragRowStart ( _this . currentIndex ) ;
} else {
_this . canBeTouch = false ;
}
2019-06-19 13:21:15 +08:00
} ;
_this . onTouchMove = function ( e ) {
2019-08-07 10:32:05 +08:00
if ( ! _this . canBeTouch ) return ;
e . stopPropagation ( ) ;
2019-06-19 13:21:15 +08:00
var event = _utils . Event . getEvent ( e ) ;
event . preventDefault ( ) ;
var touchTarget = _this . getTouchDom ( event ) ,
target = touchTarget . parentNode ,
targetKey = target . getAttribute ( "data-row-key" ) ;
if ( ! targetKey || targetKey === _this . currentIndex ) return ;
if ( target . nodeName . toUpperCase ( ) === "TR" ) {
if ( _this . cacheCurrentIndex !== targetKey ) {
//模拟 touchenter toucheleave 事件
_this . cacheCurrentIndex && _this . synchronizeTableTr ( _this . cacheCurrentIndex , null ) ; //去掉虚线
_this . synchronizeTableTr ( targetKey , true ) ; //添加虚线
}
}
} ;
_this . onTouchEnd = function ( e ) {
2019-08-07 10:32:05 +08:00
if ( ! _this . canBeTouch ) {
_this . canBeTouch = true ;
return ;
}
e . stopPropagation ( ) ;
2019-06-19 13:21:15 +08:00
var onDragRow = _this . props . onDragRow ;
var event = _utils . Event . getEvent ( e ) ,
currentKey = _this . currentIndex ,
//拖拽行的key
touchTarget = _this . getTouchDom ( event ) ,
//当前触摸的DOM节点
target = touchTarget . parentNode ,
//目标位置的行
targetKey = target . getAttribute ( "data-row-key" ) ; //目标位置的行key
if ( ! targetKey || targetKey === currentKey ) return ;
if ( target . nodeName . toUpperCase ( ) === "TR" ) {
_this . synchronizeTableTr ( currentKey , null ) ;
_this . synchronizeTableTr ( targetKey , null ) ;
}
onDragRow && onDragRow ( currentKey , targetKey ) ;
} ;
2019-04-26 18:10:57 +08:00
_this . synchronizeTableTrShadow = function ( ) {
2021-02-24 16:58:38 +08:00
var _this$props2 = _this . props ,
contentTable = _this$props2 . contentTable ,
index = _this$props2 . index ;
2019-04-26 18:10:57 +08:00
2019-06-19 13:21:15 +08:00
var cont = contentTable . querySelector ( '.u-table-scroll table tbody' ) . getElementsByTagName ( "tr" ) [ index ] ,
trs = cont . getBoundingClientRect ( ) ,
fixed _left _trs = contentTable . querySelector ( '.u-table-fixed-left table tbody' ) ,
fixed _right _trs = contentTable . querySelector ( '.u-table-fixed-right table tbody' ) ;
fixed _left _trs = fixed _left _trs && fixed _left _trs . getElementsByTagName ( "tr" ) [ index ] . getBoundingClientRect ( ) ;
fixed _right _trs = fixed _right _trs && fixed _right _trs . getElementsByTagName ( "tr" ) [ index ] . getBoundingClientRect ( ) ;
2019-04-26 18:10:57 +08:00
var div = document . createElement ( "div" ) ;
2019-06-19 13:21:15 +08:00
var style = "wdith:" + ( trs . width + ( fixed _left _trs ? fixed _left _trs . width : 0 ) + ( fixed _right _trs ? fixed _right _trs . width : 0 ) ) + "px" ;
style += ";height:" + trs . height + "px" ;
style += ";classname:" + cont . className ;
2019-04-26 18:10:57 +08:00
div . setAttribute ( "style" , style ) ;
return div ;
2019-04-25 14:19:48 +08:00
} ;
_this . synchronizeTableTr = function ( currentIndex , type ) {
2019-06-19 13:21:15 +08:00
if ( type ) {
//同步 this.cacheCurrentIndex
_this . cacheCurrentIndex = currentIndex ;
}
2019-04-25 14:19:48 +08:00
var contentTable = _this . props . contentTable ;
var _table _trs = contentTable . querySelector ( '.u-table-scroll table tbody' ) ,
_table _fixed _left _trs = contentTable . querySelector ( '.u-table-fixed-left table tbody' ) ,
_table _fixed _right _trs = contentTable . querySelector ( '.u-table-fixed-right table tbody' ) ;
2019-04-30 10:01:58 +08:00
_table _trs = _table _trs ? _table _trs : contentTable . querySelector ( '.u-table table tbody' ) ;
2019-04-25 14:19:48 +08:00
_this . synchronizeTrStyle ( _table _trs , currentIndex , type ) ;
if ( _table _fixed _left _trs ) {
_this . synchronizeTrStyle ( _table _fixed _left _trs , currentIndex , type ) ;
}
if ( _table _fixed _right _trs ) {
_this . synchronizeTrStyle ( _table _fixed _right _trs , currentIndex , type ) ;
}
} ;
_this . synchronizeTrStyle = function ( _elementBody , id , type ) {
var contentTable = _this . props . contentTable ,
trs = _elementBody . getElementsByTagName ( "tr" ) ,
currentObj = void 0 ;
for ( var index = 0 ; index < trs . length ; index ++ ) {
var element = trs [ index ] ;
if ( element . getAttribute ( "data-row-key" ) == id ) {
currentObj = element ;
}
}
2021-02-24 16:58:38 +08:00
if ( type == 'down' ) {
2020-07-16 09:57:18 +08:00
currentObj && currentObj . setAttribute ( "style" , "border-bottom:2px solid #02B1FD" ) ;
2021-02-24 16:58:38 +08:00
} else if ( type ) {
currentObj && currentObj . setAttribute ( "style" , "border-top:2px solid #02B1FD" ) ;
2019-04-25 14:19:48 +08:00
} else {
currentObj && currentObj . setAttribute ( "style" , "" ) ;
}
} ;
_this . onDragEnter = function ( e ) {
2021-02-24 16:58:38 +08:00
var contentTable = _this . props . contentTable ;
2019-04-25 14:19:48 +08:00
var event = _utils . Event . getEvent ( e ) ,
_target = _utils . Event . getTarget ( event ) ,
target = _target . parentNode ;
var currentIndex = target . getAttribute ( "data-row-key" ) ;
2021-02-24 16:58:38 +08:00
var dragEnterIndex = target . getAttribute ( "data-row-index" ) ;
2019-04-25 14:19:48 +08:00
if ( ! currentIndex || currentIndex === _this . currentIndex ) return ;
2021-02-24 16:58:38 +08:00
var dragType = parseInt ( dragEnterIndex ) > parseInt ( contentTable . startI ) ? 'down' : 'top' ;
contentTable . dragType = dragType ;
2019-04-25 14:19:48 +08:00
if ( target . nodeName . toUpperCase ( ) === "TR" ) {
2021-02-24 16:58:38 +08:00
_this . synchronizeTableTr ( currentIndex , dragType ) ;
2019-04-25 14:19:48 +08:00
}
} ;
_this . onDragLeave = function ( e ) {
var event = _utils . Event . getEvent ( e ) ,
_target = _utils . Event . getTarget ( event ) ,
target = _target . parentNode ;
var currentIndex = target . getAttribute ( "data-row-key" ) ;
if ( ! currentIndex || currentIndex === _this . currentIndex ) return ;
if ( target . nodeName . toUpperCase ( ) === "TR" ) {
_this . synchronizeTableTr ( currentIndex , null ) ;
}
} ;
2020-09-21 11:05:41 +08:00
_this . stopRowDrag = function ( isStop ) {
var rowDraggAble = _this . props . rowDraggAble ;
var notRowDrag = _this . state . notRowDrag ;
if ( rowDraggAble && isStop !== notRowDrag ) {
_this . setState ( {
notRowDrag : isStop
} ) ;
}
} ;
2018-05-02 15:37:38 +08:00
_this . set = function ( fn ) {
_this . clear ( ) ;
_this . _timeout = window . setTimeout ( fn , 300 ) ;
} ;
_this . clear = function ( event ) {
if ( _this . _timeout ) {
window . clearTimeout ( _this . _timeout ) ;
}
} ;
2018-12-20 09:41:51 +08:00
_this . bindElement = function ( el ) {
_this . element = el ;
} ;
2021-03-29 01:53:18 +08:00
_this . getLoadingStyle = function ( isPre , isSuf ) {
if ( isPre ) {
return _this . element && _this . element . nextSibling ? _this . element . nextSibling . getBoundingClientRect ( ) : { } ;
}
if ( isSuf ) {
return _this . element && _this . element . previousSibling ? _this . element . previousSibling . getBoundingClientRect ( ) : { } ;
}
} ;
2018-05-02 15:37:38 +08:00
_this . _timeout = null ;
2017-01-12 08:53:51 +08:00
_this . state = {
hovered : false
} ;
_this . onRowClick = _this . onRowClick . bind ( _this ) ;
_this . onRowDoubleClick = _this . onRowDoubleClick . bind ( _this ) ;
_this . onMouseEnter = _this . onMouseEnter . bind ( _this ) ;
_this . onMouseLeave = _this . onMouseLeave . bind ( _this ) ;
2018-12-20 09:41:51 +08:00
_this . expandHeight = 0 ;
2019-04-25 14:19:48 +08:00
_this . event = false ;
2019-06-19 13:21:15 +08:00
_this . cacheCurrentIndex = null ;
2019-08-07 10:32:05 +08:00
_this . canBeTouch = true ; //受否允许拖动该行
2017-01-12 08:53:51 +08:00
return _this ;
}
TableRow . prototype . componentDidMount = function componentDidMount ( ) {
var _this2 = this ;
var _props = this . props ,
store = _props . store ,
2019-01-07 14:57:58 +08:00
hoverKey = _props . hoverKey ,
2019-04-25 14:19:48 +08:00
treeType = _props . treeType ,
rowDraggAble = _props . rowDraggAble ;
2017-01-12 08:53:51 +08:00
this . unsubscribe = store . subscribe ( function ( ) {
if ( store . getState ( ) . currentHoverKey === hoverKey ) {
_this2 . setState ( { hovered : true } ) ;
} else if ( _this2 . state . hovered === true ) {
_this2 . setState ( { hovered : false } ) ;
}
} ) ;
2018-12-20 09:41:51 +08:00
this . setRowHeight ( ) ;
2019-01-07 14:57:58 +08:00
if ( treeType ) {
this . setRowParentIndex ( ) ;
}
2018-12-20 09:41:51 +08:00
} ;
2019-04-25 14:19:48 +08:00
/ * *
* 事件初始化
* /
/ * *
* 事件移除 , 提供性能以及内存泄漏等问题 。
* /
/ * *
* 事件绑定和移除函数
* /
TableRow . prototype . eventListen = function eventListen ( events , type , eventSource ) {
for ( var i = 0 ; i < events . length ; i ++ ) {
var _event = events [ i ] ;
if ( type === "remove" ) {
_utils . EventUtil . removeHandler ( eventSource , _event . key , _event . fun ) ;
} else {
_utils . EventUtil . addHandler ( eventSource , _event . key , _event . fun ) ;
}
}
} ;
/ * *
* 开始调整交换列的事件
* /
/ * *
* 在一个拖动过程中 , 释放鼠标键时触发此事件 。 【 目标事件 】
* @ memberof TableHeader
* /
2019-06-19 13:21:15 +08:00
/ * *
* 获取当前触摸的Dom节点
* /
/ * *
* 开始调整交换行的事件
* /
/ * *
* 手指移开时触发
* /
2019-04-26 18:10:57 +08:00
/ * *
* 同步当前拖拽到阴影
* @ memberof TableRow
* /
2019-04-25 14:19:48 +08:00
/ * *
* 同步自己 , 也需要同步当前行的行显示
* /
/ * *
* 设置同步的style
* /
2018-12-20 09:41:51 +08:00
TableRow . prototype . componentDidUpdate = function componentDidUpdate ( prevProps ) {
2020-09-07 13:48:01 +08:00
var _props2 = this . props ,
rowDraggAble = _props2 . rowDraggAble ,
syncRowHeight = _props2 . syncRowHeight ;
2019-04-25 14:19:48 +08:00
if ( ! this . event ) {
this . event = true ;
if ( rowDraggAble ) {
this . initEvent ( ) ;
}
}
2019-01-07 14:57:58 +08:00
if ( this . props . treeType ) {
this . setRowParentIndex ( ) ;
2018-12-20 09:41:51 +08:00
}
2020-09-29 09:45:11 +08:00
// if(syncRowHeight){
// this.setRowHeight()
// }
this . setRowHeight ( ) ;
2017-01-12 08:53:51 +08:00
} ;
TableRow . prototype . componentWillUnmount = function componentWillUnmount ( ) {
2020-09-07 13:48:01 +08:00
var _props3 = this . props ,
record = _props3 . record ,
onDestroy = _props3 . onDestroy ,
index = _props3 . index ,
rowDraggAble = _props3 . rowDraggAble ;
2017-01-12 08:53:51 +08:00
onDestroy ( record , index ) ;
if ( this . unsubscribe ) {
this . unsubscribe ( ) ;
}
2019-04-25 14:19:48 +08:00
if ( rowDraggAble ) {
this . removeDragAbleEvent ( ) ;
}
2017-01-12 08:53:51 +08:00
} ;
2018-12-20 09:41:51 +08:00
TableRow . prototype . setRowHeight = function setRowHeight ( ) {
2020-09-07 13:48:01 +08:00
var _props4 = this . props ,
setRowHeight = _props4 . setRowHeight ,
_props4$expandedConte = _props4 . expandedContentHeight ,
expandedContentHeight = _props4$expandedConte === undefined ? 0 : _props4$expandedConte ,
fixed = _props4 . fixed ,
fixedIndex = _props4 . fixedIndex ;
2018-12-20 09:41:51 +08:00
if ( ! setRowHeight || ! this . element || fixed ) return ;
2019-01-07 14:57:58 +08:00
setRowHeight ( this . element . clientHeight + expandedContentHeight , fixedIndex ) ;
2018-12-20 09:41:51 +08:00
} ;
2019-01-07 14:57:58 +08:00
TableRow . prototype . setRowParentIndex = function setRowParentIndex ( ) {
2020-09-07 13:48:01 +08:00
var _props5 = this . props ,
index = _props5 . index ,
setRowParentIndex = _props5 . setRowParentIndex ,
fixedIndex = _props5 . fixedIndex ,
rootIndex = _props5 . rootIndex ;
2019-01-07 14:57:58 +08:00
setRowParentIndex ( rootIndex < 0 ? index : rootIndex , fixedIndex ) ;
} ;
TableRow . prototype . onRowClick = function onRowClick ( event ) {
2019-07-16 18:16:53 +08:00
// fix: 解决 onRowClick 回调函数中,事件对象属性均为 null 的问题
// 异步访问事件属性
// 调用 event.persist() 会从事件池中移除该合成函数并允许对该合成事件的引用被保留下来。
event . persist ( ) ;
2020-09-07 13:48:01 +08:00
var _props6 = this . props ,
record = _props6 . record ,
index = _props6 . index ,
onRowClick = _props6 . onRowClick ,
expandable = _props6 . expandable ,
expandRowByClick = _props6 . expandRowByClick ,
expanded = _props6 . expanded ,
onExpand = _props6 . onExpand ,
fixedIndex = _props6 . fixedIndex ,
onRowDoubleClick = _props6 . onRowDoubleClick ;
2017-01-12 08:53:51 +08:00
if ( expandable && expandRowByClick ) {
2019-02-25 14:40:28 +08:00
onExpand ( ! expanded , record , fixedIndex , event ) ;
2017-01-12 08:53:51 +08:00
}
2019-12-13 17:22:14 +08:00
if ( ! onRowDoubleClick ) {
2019-12-11 17:40:10 +08:00
onRowClick ( record , fixedIndex , event ) ;
return ;
}
2018-05-02 15:37:38 +08:00
this . set ( function ( e ) {
2019-02-25 14:40:28 +08:00
onRowClick ( record , fixedIndex , event ) ;
2018-05-02 15:37:38 +08:00
} ) ;
2017-01-12 08:53:51 +08:00
} ;
TableRow . prototype . onRowDoubleClick = function onRowDoubleClick ( event ) {
2020-09-07 13:48:01 +08:00
var _props7 = this . props ,
record = _props7 . record ,
index = _props7 . index ,
onRowDoubleClick = _props7 . onRowDoubleClick ,
fixedIndex = _props7 . fixedIndex ;
2017-01-12 08:53:51 +08:00
2018-05-02 15:37:38 +08:00
this . clear ( ) ;
2019-12-13 17:22:14 +08:00
onRowDoubleClick && onRowDoubleClick ( record , fixedIndex , event ) ;
2017-01-12 08:53:51 +08:00
} ;
2019-02-18 14:54:33 +08:00
TableRow . prototype . onMouseEnter = function onMouseEnter ( e ) {
2020-09-07 13:48:01 +08:00
var _props8 = this . props ,
onHover = _props8 . onHover ,
hoverKey = _props8 . hoverKey ,
fixedIndex = _props8 . fixedIndex ,
syncHover = _props8 . syncHover ,
record = _props8 . record ;
2017-01-12 08:53:51 +08:00
2019-02-25 15:39:56 +08:00
if ( syncHover ) {
2019-02-25 14:40:28 +08:00
this . setState ( { hovered : true } ) ;
}
2019-10-29 17:14:58 +08:00
onHover ( true , hoverKey , e , fixedIndex , record ) ;
2017-01-12 08:53:51 +08:00
} ;
2019-02-18 14:54:33 +08:00
TableRow . prototype . onMouseLeave = function onMouseLeave ( e ) {
2020-09-07 13:48:01 +08:00
var _props9 = this . props ,
onHover = _props9 . onHover ,
hoverKey = _props9 . hoverKey ,
fixedIndex = _props9 . fixedIndex ,
syncHover = _props9 . syncHover ,
record = _props9 . record ;
2017-01-12 08:53:51 +08:00
2019-02-25 15:39:56 +08:00
if ( syncHover ) {
2019-02-25 14:40:28 +08:00
this . setState ( { hovered : false } ) ;
}
2019-10-29 17:14:58 +08:00
onHover ( false , hoverKey , e , fixedIndex , record ) ;
2017-01-12 08:53:51 +08:00
} ;
TableRow . prototype . render = function render ( ) {
2020-09-07 13:48:01 +08:00
var _props10 = this . props ,
clsPrefix = _props10 . clsPrefix ,
columns = _props10 . columns ,
record = _props10 . record ,
height = _props10 . height ,
visible = _props10 . visible ,
index = _props10 . index ,
onPaste = _props10 . onPaste ,
2021-03-29 01:53:18 +08:00
isPre = _props10 . isPre ,
isSuf = _props10 . isSuf ,
containerWidth = _props10 . containerWidth ,
2020-09-07 13:48:01 +08:00
expandIconColumnIndex = _props10 . expandIconColumnIndex ,
expandIconAsCell = _props10 . expandIconAsCell ,
expanded = _props10 . expanded ,
useDragHandle = _props10 . useDragHandle ,
rowDraggAble = _props10 . rowDraggAble ,
expandable = _props10 . expandable ,
onExpand = _props10 . onExpand ,
needIndentSpaced = _props10 . needIndentSpaced ,
indent = _props10 . indent ,
indentSize = _props10 . indentSize ,
isHiddenExpandIcon = _props10 . isHiddenExpandIcon ,
fixed = _props10 . fixed ,
bodyDisplayInRow = _props10 . bodyDisplayInRow ,
expandedIcon = _props10 . expandedIcon ,
collapsedIcon = _props10 . collapsedIcon ,
hoverKey = _props10 . hoverKey ,
lazyStartIndex = _props10 . lazyStartIndex ,
lazyEndIndex = _props10 . lazyEndIndex ,
2020-11-02 14:17:11 +08:00
expandIconCellWidth = _props10 . expandIconCellWidth ,
getCellClassName = _props10 . getCellClassName ;
2020-09-21 11:05:41 +08:00
var notRowDrag = this . state . notRowDrag ;
2018-12-16 22:22:45 +08:00
2021-03-29 01:53:18 +08:00
var isEmptyTr = isPre || isSuf ;
2018-12-16 22:22:45 +08:00
var showSum = false ;
2017-01-12 08:53:51 +08:00
var className = this . props . className ;
if ( this . state . hovered ) {
className += ' ' + clsPrefix + '-hover' ;
}
2018-12-16 22:22:45 +08:00
//判断是否为合计行
if ( className . indexOf ( 'sumrow' ) > - 1 ) {
showSum = true ;
}
2017-01-12 08:53:51 +08:00
var cells = [ ] ;
var expandIcon = _react2 [ "default" ] . createElement ( _ExpandIcon2 [ "default" ] , {
expandable : expandable ,
clsPrefix : clsPrefix ,
onExpand : onExpand ,
needIndentSpaced : needIndentSpaced ,
expanded : expanded ,
2018-01-31 19:46:40 +08:00
record : record ,
2019-05-10 09:40:48 +08:00
expandedIcon : expandedIcon ,
collapsedIcon : collapsedIcon ,
2018-01-31 19:46:40 +08:00
isHiddenExpandIcon : isHiddenExpandIcon
2017-01-12 08:53:51 +08:00
} ) ;
2019-07-11 20:52:45 +08:00
var isExpandIconAsCell = expandIconAsCell ? clsPrefix + '-expand-columns-in-body' : '' ;
2019-08-26 15:03:04 +08:00
var expandIndexInThisTable ;
if ( this . props . fixed === 'right' ) {
expandIndexInThisTable = expandIconColumnIndex - this . props . leftColumnsLength - this . props . centerColumnsLength ;
} else {
expandIndexInThisTable = expandIconColumnIndex ;
}
2017-01-12 08:53:51 +08:00
for ( var i = 0 ; i < columns . length ; i ++ ) {
2020-07-22 10:21:27 +08:00
if ( expandIconAsCell && i === 0 ) {
showSum ? cells . push ( _react2 [ "default" ] . createElement ( 'td' , { width : expandIconCellWidth } ) ) : cells . push ( _react2 [ "default" ] . createElement (
2017-01-12 08:53:51 +08:00
'td' ,
{
2019-07-11 20:52:45 +08:00
className : clsPrefix + '-expand-icon-cell ' + isExpandIconAsCell ,
2019-12-11 17:09:59 +08:00
key : 'rc-table-expand-icon-cell-' + i ,
width : expandIconCellWidth
2017-01-12 08:53:51 +08:00
} ,
expandIcon
) ) ;
}
2020-02-11 19:14:12 +08:00
// bugfix 设置expandRowByClick, 无法显示箭头, 去掉 expandRowByClick 判断
var isColumnHaveExpandIcon = expandIconAsCell || showSum ? false : i === expandIndexInThisTable ;
2017-01-12 08:53:51 +08:00
cells . push ( _react2 [ "default" ] . createElement ( _TableCell2 [ "default" ] , {
clsPrefix : clsPrefix ,
record : record ,
indentSize : indentSize ,
indent : indent ,
2018-12-26 16:59:12 +08:00
index : index ,
2017-01-12 08:53:51 +08:00
column : columns [ i ] ,
2019-03-20 12:38:43 +08:00
key : index + "_" + ( columns [ i ] . key || columns [ i ] . dataIndex || i ) ,
2018-09-12 14:14:05 +08:00
fixed : fixed ,
2018-12-16 22:22:45 +08:00
showSum : showSum ,
2019-04-23 16:04:02 +08:00
expandIcon : isColumnHaveExpandIcon ? expandIcon : null ,
2019-07-02 17:11:40 +08:00
bodyDisplayInRow : bodyDisplayInRow ,
lazyStartIndex : lazyStartIndex ,
2020-07-13 21:14:33 +08:00
lazyEndIndex : lazyEndIndex ,
onPaste : onPaste ,
2020-09-21 11:05:41 +08:00
stopRowDrag : this . stopRowDrag ,
2020-11-02 14:17:11 +08:00
col : i ,
getCellClassName : getCellClassName
2017-01-12 08:53:51 +08:00
} ) ) ;
}
2019-09-06 14:47:42 +08:00
var style = _extends ( { height : height } , record ? record . style : undefined ) ;
2017-01-12 08:53:51 +08:00
if ( ! visible ) {
style . display = 'none' ;
}
2019-08-27 17:12:43 +08:00
if ( record && record . _checked ) {
2019-08-27 16:45:52 +08:00
className += ' selected' ;
}
2020-09-21 11:05:41 +08:00
if ( rowDraggAble && ! useDragHandle && ! notRowDrag ) {
className += ' row-dragg-able' ;
}
2021-03-29 01:53:18 +08:00
var tdStyle = ! isEmptyTr ? { } : this . getLoadingStyle ( isPre , isSuf ) ;
2017-01-12 08:53:51 +08:00
return _react2 [ "default" ] . createElement (
'tr' ,
{
2020-09-21 11:05:41 +08:00
draggable : rowDraggAble && ! useDragHandle && ! notRowDrag ,
2017-01-12 08:53:51 +08:00
onClick : this . onRowClick ,
onDoubleClick : this . onRowDoubleClick ,
onMouseEnter : this . onMouseEnter ,
onMouseLeave : this . onMouseLeave ,
className : clsPrefix + ' ' + className + ' ' + clsPrefix + '-level-' + indent ,
2019-04-25 14:19:48 +08:00
style : style ,
2021-02-24 16:58:38 +08:00
'data-row-key' : record && record . key ? record . key : hoverKey ,
'data-row-index' : this . props . index
2019-01-16 15:18:20 +08:00
// key={hoverKey}
, ref : this . bindElement
2017-01-12 08:53:51 +08:00
} ,
2021-04-09 17:17:42 +08:00
cells . length > 0 ? cells : isEmptyTr ? // loading暂时去掉
_react2 [ "default" ] . createElement ( 'td' , { style : { width : 0 , padding : 0 } } ) : _react2 [ "default" ] . createElement ( 'td' , { style : { width : 0 , padding : 0 } } )
2017-01-12 08:53:51 +08:00
) ;
} ;
return TableRow ;
} ( _react . Component ) ;
;
TableRow . propTypes = propTypes ;
TableRow . defaultProps = defaultProps ;
exports [ "default" ] = TableRow ;
module . exports = exports [ 'default' ] ;