2018-07-05 11:01:19 +08:00
'use strict' ;
2018-05-11 09:29:43 +08:00
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" ] = dragColumn ;
2018-07-05 11:01:19 +08:00
var _react = require ( 'react' ) ;
2018-05-11 09:29:43 +08:00
var _react2 = _interopRequireDefault ( _react ) ;
2018-07-05 11:01:19 +08:00
var _util = require ( './util' ) ;
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 ; }
2018-05-22 20:08:17 +08:00
function _objectWithoutProperties ( obj , keys ) { var target = { } ; for ( var i in obj ) { if ( keys . indexOf ( i ) >= 0 ) continue ; if ( ! Object . prototype . hasOwnProperty . call ( obj , i ) ) continue ; target [ i ] = obj [ i ] ; } return target ; }
2018-05-11 09:29:43 +08:00
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 ) ; }
/ * *
* 参数 : 列拖拽
* @ param { * } Table
* /
function dragColumn ( Table ) {
var _class , _temp , _initialiseProps ;
return _temp = _class = function ( _Component ) {
2018-05-22 19:38:15 +08:00
_inherits ( DragColumn , _Component ) ;
2018-05-11 09:29:43 +08:00
2018-05-22 19:38:15 +08:00
function DragColumn ( props ) {
_classCallCheck ( this , DragColumn ) ;
2018-05-11 09:29:43 +08:00
var _this = _possibleConstructorReturn ( this , _Component . call ( this , props ) ) ;
_initialiseProps . call ( _this ) ;
var columns = props . columns ;
_this . setColumOrderByIndex ( columns ) ;
return _this ;
}
2018-05-22 19:38:15 +08:00
DragColumn . prototype . componentWillReceiveProps = function componentWillReceiveProps ( nextProps ) {
2018-05-11 09:29:43 +08:00
if ( nextProps . columns != this . props . columns ) {
2018-07-05 11:01:19 +08:00
this . setColumOrderByIndex ( nextProps . columns ) ;
2018-05-11 09:29:43 +08:00
}
} ;
2018-05-22 19:38:15 +08:00
DragColumn . prototype . render = function render ( ) {
2018-05-11 09:29:43 +08:00
var _props = this . props ,
data = _props . data ,
dragborder = _props . dragborder ,
draggable = _props . draggable ,
2018-05-22 20:08:17 +08:00
className = _props . className ,
columns = _props . columns ,
onDragStart = _props . onDragStart ,
onDragEnter = _props . onDragEnter ,
onDragOver = _props . onDragOver ,
onDrop = _props . onDrop ,
2018-07-05 11:01:19 +08:00
others = _objectWithoutProperties ( _props , [ 'data' , 'dragborder' , 'draggable' , 'className' , 'columns' , 'onDragStart' , 'onDragEnter' , 'onDragOver' , 'onDrop' ] ) ;
2018-05-11 09:29:43 +08:00
2018-05-14 10:01:06 +08:00
var key = new Date ( ) . getTime ( ) ;
2018-05-22 20:08:17 +08:00
return _react2 [ "default" ] . createElement ( Table , _extends ( { } , others , {
columns : this . state . columns ,
data : data ,
2018-07-05 11:01:19 +08:00
className : className + ' u-table-drag-border' ,
2018-05-22 20:08:17 +08:00
onDragStart : this . onDragStart ,
onDragOver : this . onDragOver ,
onDrop : this . onDrop ,
2018-05-11 09:29:43 +08:00
onDragEnter : this . onDragEnter ,
2018-07-04 15:55:48 +08:00
draggable : draggable
// dragborder={dragborder}
, dragborder : false ,
2018-05-14 10:01:06 +08:00
dragborderKey : key
2018-05-11 09:29:43 +08:00
} ) ) ;
} ;
2018-05-22 19:38:15 +08:00
return DragColumn ;
2018-05-11 09:29:43 +08:00
} ( _react . Component ) , _initialiseProps = function _initialiseProps ( ) {
var _this2 = this ;
2018-07-05 11:01:19 +08:00
this . setColumOrderByIndex = function ( _column ) {
2018-05-11 09:29:43 +08:00
_column . forEach ( function ( da , i ) {
da . dragIndex = i ;
da . drgHover = false ;
} ) ;
_this2 . state = {
columns : _column
} ;
} ;
2018-05-22 20:08:17 +08:00
this . onDragStart = function ( event , data ) {
2018-07-05 11:01:19 +08:00
if ( _this2 . props . onDragStart ) {
_this2 . props . onDragStart ( event , data ) ;
}
2018-05-22 20:08:17 +08:00
} ;
2018-05-11 09:29:43 +08:00
2018-05-22 20:08:17 +08:00
this . onDragOver = function ( event , data ) {
2018-07-05 11:01:19 +08:00
if ( _this2 . props . onDragOver ) {
_this2 . props . onDragOver ( event , data ) ;
}
2018-05-22 20:08:17 +08:00
} ;
2018-05-11 09:29:43 +08:00
this . onDragEnter = function ( event , data ) {
2018-07-05 11:01:19 +08:00
if ( data . key == "checkbox" ) return ;
2018-05-11 09:29:43 +08:00
var _columns = _this2 . state . columns ;
var columns = [ ] ;
_extends ( columns , _columns ) ;
columns . forEach ( function ( da ) {
return da . drgHover = false ;
} ) ;
var current = columns . find ( function ( da ) {
return da . key == data . key ;
} ) ;
2018-07-05 11:01:19 +08:00
if ( current . fixed ) return ;
2018-05-11 09:29:43 +08:00
current . drgHover = true ;
_this2 . setState ( {
columns : columns
} ) ;
2018-07-05 11:01:19 +08:00
if ( _this2 . props . onDragEnter ) {
_this2 . props . onDragEnter ( event , data ) ;
}
2018-05-11 09:29:43 +08:00
} ;
this . onDrop = function ( event , data ) {
2018-07-05 11:01:19 +08:00
if ( data . key == "checkbox" ) return ;
2018-05-11 09:29:43 +08:00
var columns = _this2 . state . columns ;
var id = event . dataTransfer . getData ( "Text" ) ;
var objIndex = columns . findIndex ( function ( _da , i ) {
return _da . key == id ;
} ) ;
var targetIndex = columns . findIndex ( function ( _da , i ) {
return _da . key == data . key ;
} ) ;
2018-07-05 11:01:19 +08:00
if ( columns [ objIndex ] . fixed ) return ; //固定列不让拖拽
if ( columns [ targetIndex ] . fixed ) return ; //固定列不让拖拽
2018-05-11 09:29:43 +08:00
columns . forEach ( function ( da , i ) {
da . drgHover = false ;
if ( da . key == id ) {
//obj
da . dragIndex = targetIndex ;
}
if ( da . key == data . key ) {
//targetObj
da . dragIndex = objIndex ;
}
} ) ;
2018-07-05 11:01:19 +08:00
var _columns = columns . sort ( ( 0 , _util . compare ) ( 'dragIndex' ) ) ;
2018-05-11 09:29:43 +08:00
_this2 . setState ( {
2018-07-05 11:01:19 +08:00
columns : JSON . parse ( JSON . stringify ( _columns ) )
2018-05-11 09:29:43 +08:00
} ) ;
2018-07-05 11:01:19 +08:00
if ( _this2 . props . onDrop ) {
_this2 . props . onDrop ( event , data ) ;
}
2018-05-11 09:29:43 +08:00
} ;
this . getTarget = function ( evt ) {
return evt . target || evt . srcElement ;
} ;
} , _temp ;
}
2018-07-05 11:01:19 +08:00
module . exports = exports [ 'default' ] ;