2017-01-12 08:53:51 +08:00
'use strict' ;
Object . defineProperty ( exports , "__esModule" , {
value : true
} ) ;
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 ) ;
2017-01-12 08:53:51 +08:00
var _shallowequal = require ( 'shallowequal' ) ;
var _shallowequal2 = _interopRequireDefault ( _shallowequal ) ;
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
record : _propTypes2 [ "default" ] . object ,
clsPrefix : _propTypes2 [ "default" ] . string ,
expandable : _propTypes2 [ "default" ] . any ,
expanded : _propTypes2 [ "default" ] . bool ,
needIndentSpaced : _propTypes2 [ "default" ] . bool ,
onExpand : _propTypes2 [ "default" ] . func
2017-01-12 08:53:51 +08:00
} ;
var ExpandIcon = function ( _Component ) {
_inherits ( ExpandIcon , _Component ) ;
function ExpandIcon ( props ) {
_classCallCheck ( this , ExpandIcon ) ;
2019-08-27 16:45:52 +08:00
var _this = _possibleConstructorReturn ( this , _Component . call ( this , props ) ) ;
_this . onExpand = function ( status , record , e ) {
var onExpand = _this . props . onExpand ;
e . stopPropagation ( ) ;
onExpand ( status , record , e ) ;
} ;
return _this ;
2017-01-12 08:53:51 +08:00
}
ExpandIcon . prototype . shouldComponentUpdate = function shouldComponentUpdate ( nextProps ) {
return ! ( 0 , _shallowequal2 [ "default" ] ) ( nextProps , this . props ) ;
} ;
ExpandIcon . prototype . render = function render ( ) {
2019-08-27 16:45:52 +08:00
var _this2 = this ;
2017-01-12 08:53:51 +08:00
var _props = this . props ,
expandable = _props . expandable ,
clsPrefix = _props . clsPrefix ,
onExpand = _props . onExpand ,
needIndentSpaced = _props . needIndentSpaced ,
expanded = _props . expanded ,
2018-01-31 19:46:40 +08:00
record = _props . record ,
2019-05-10 09:40:48 +08:00
isHiddenExpandIcon = _props . isHiddenExpandIcon ,
expandedIcon = _props . expandedIcon ,
collapsedIcon = _props . collapsedIcon ;
2017-01-12 08:53:51 +08:00
2018-01-31 19:46:40 +08:00
if ( expandable && ! isHiddenExpandIcon ) {
2017-01-12 08:53:51 +08:00
var expandClassName = expanded ? 'expanded' : 'collapsed' ;
2019-05-13 19:02:23 +08:00
var currentIcon = _react2 [ "default" ] . createElement ( 'span' , {
className : clsPrefix + '-expand-icon ' + clsPrefix + '-' + expandClassName
2017-01-12 08:53:51 +08:00
} ) ;
2019-05-10 09:40:48 +08:00
if ( expanded && expandedIcon ) {
currentIcon = expandedIcon ;
} else if ( ! expanded && collapsedIcon ) {
currentIcon = collapsedIcon ;
}
return _react2 [ "default" ] . createElement (
'span' ,
{ onClick : function onClick ( e ) {
2019-08-27 16:45:52 +08:00
return _this2 . onExpand ( ! expanded , record , e ) ;
2019-05-10 09:40:48 +08:00
} , className : 'expand-icon-con' } ,
currentIcon
) ;
2018-01-31 19:46:40 +08:00
} else if ( needIndentSpaced || isHiddenExpandIcon ) {
2017-01-12 08:53:51 +08:00
return _react2 [ "default" ] . createElement ( 'span' , { className : clsPrefix + '-expand-icon ' + clsPrefix + '-spaced' } ) ;
}
return null ;
} ;
return ExpandIcon ;
} ( _react . Component ) ;
;
ExpandIcon . propTypes = propTypes ;
exports [ "default" ] = ExpandIcon ;
module . exports = exports [ 'default' ] ;