2017-01-12 08:53:51 +08:00
'use strict' ;
Object . defineProperty ( exports , "__esModule" , {
value : true
} ) ;
2019-08-26 13:58:29 +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 ) ;
2017-01-12 08:53:51 +08:00
var _objectPath = require ( 'object-path' ) ;
var _objectPath2 = _interopRequireDefault ( _objectPath ) ;
2019-08-26 13:58:29 +08:00
var _i18n = require ( './lib/i18n' ) ;
var _i18n2 = _interopRequireDefault ( _i18n ) ;
var _tool = require ( 'bee-locale/build/tool' ) ;
var _utils = require ( './lib/utils' ) ;
2017-01-12 08:53:51 +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 ) ; }
var propTypes = {
2017-06-03 20:34:07 +08:00
record : _propTypes2 [ "default" ] . object ,
clsPrefix : _propTypes2 [ "default" ] . string ,
index : _propTypes2 [ "default" ] . number ,
indent : _propTypes2 [ "default" ] . number ,
indentSize : _propTypes2 [ "default" ] . number ,
column : _propTypes2 [ "default" ] . object ,
expandIcon : _propTypes2 [ "default" ] . node
2017-01-12 08:53:51 +08:00
} ;
var TableCell = function ( _Component ) {
_inherits ( TableCell , _Component ) ;
function TableCell ( props ) {
_classCallCheck ( this , TableCell ) ;
var _this = _possibleConstructorReturn ( this , _Component . call ( this , props ) ) ;
2019-08-26 13:58:29 +08:00
_this . renderLinkType = function ( data , record , index ) {
var config = arguments . length > 3 && arguments [ 3 ] !== undefined ? arguments [ 3 ] : { } ;
2019-08-23 13:48:27 +08:00
var url = config . url ,
urlIndex = config . urlIndex ,
linkType = config . linkType ,
className = config . className ,
underline = config . underline ,
descIndex = config . descIndex ,
desc = config . desc ,
linkColor = config . linkColor ;
var linkUrl = '' ;
if ( url ) {
linkUrl = url ( data , record , index ) ;
} else if ( urlIndex ) {
linkUrl = record [ urlIndex ] ;
}
if ( linkUrl ) {
var link = function link ( ) {
window . open ( linkUrl , linkType || '_blank' ) ;
} ;
var cls = 'u-table-link ' ;
if ( className ) {
cls += className + ' ' ;
}
if ( underline ) {
cls += 'u-table-link-underline ' ;
}
var title = '' ;
if ( desc === true ) {
title = linkUrl ;
} else if ( typeof desc === 'string' ) {
title = desc ;
} else if ( typeof desc === 'function' ) {
title = desc ( data , record , index ) ;
} else if ( descIndex ) {
title = record [ descIndex ] ;
}
return _react2 [ "default" ] . createElement (
'span' ,
{ onClick : link , className : cls , style : { color : linkColor || '' } , title : title } ,
data
) ;
}
return data ;
} ;
2019-08-26 13:58:29 +08:00
_this . renderBoolType = function ( data ) {
var config = arguments . length > 1 && arguments [ 1 ] !== undefined ? arguments [ 1 ] : { } ;
var locale = ( 0 , _tool . getComponentLocale ) ( _this . props , _this . context , 'Table' , function ( ) {
return _i18n2 [ "default" ] ;
} ) ;
var boolConfig = _extends ( { trueText : locale [ 'bool_true' ] , falseText : locale [ 'bool_false' ] } , config ) ;
if ( typeof data === 'string' ) {
if ( data === 'false' || data === '0' ) {
return boolConfig . falseText ;
}
} else if ( ! data ) {
return boolConfig . falseText ;
}
return boolConfig . trueText ;
} ;
_this . renderNumber = function ( data ) {
var config = arguments . length > 1 && arguments [ 1 ] !== undefined ? arguments [ 1 ] : { } ;
var width = arguments . length > 2 && arguments [ 2 ] !== undefined ? arguments [ 2 ] : 200 ;
console . log ( config ) ;
var number = ( 0 , _utils . formatMoney ) ( data , config . precision , config . thousand ) ;
if ( config . makeUp === false && number !== '0' ) {
number = number . replace ( /0*$/ , '' ) . replace ( /\.$/ , '' ) ;
}
var numberWidth = parseInt ( width ) - 16 ; // 减去默认的左右padding共计16px
var res = _react2 [ "default" ] . createElement (
'span' ,
{ className : 'u-table-currency-number' } ,
number
) ;
var pre = config . preSymbol ? _react2 [ "default" ] . createElement (
'span' ,
{ className : 'u-table-currency-pre' } ,
config . preSymbol
) : null ;
var next = config . nextSymbol ? _react2 [ "default" ] . createElement (
'span' ,
{ className : 'u-table-currency-next' } ,
config . nextSymbol
) : null ;
return _react2 [ "default" ] . createElement (
'span' ,
{ className : 'u-table-currency' , style : { width : numberWidth } } ,
pre ,
res ,
next
) ;
} ;
2017-01-12 08:53:51 +08:00
_this . isInvalidRenderCellText = _this . isInvalidRenderCellText . bind ( _this ) ;
_this . handleClick = _this . handleClick . bind ( _this ) ;
return _this ;
}
TableCell . prototype . isInvalidRenderCellText = function isInvalidRenderCellText ( text ) {
return text && ! _react2 [ "default" ] . isValidElement ( text ) && Object . prototype . toString . call ( text ) === '[object Object]' ;
} ;
TableCell . prototype . handleClick = function handleClick ( e ) {
var _props = this . props ,
record = _props . record ,
onCellClick = _props . column . onCellClick ;
if ( onCellClick ) {
onCellClick ( record , e ) ;
}
} ;
2019-08-23 13:48:27 +08:00
// 渲染链接类型
2019-08-26 13:58:29 +08:00
// 渲染布尔类型
// 渲染整数/货币类型
2017-01-12 08:53:51 +08:00
TableCell . prototype . render = function render ( ) {
var _props2 = this . props ,
record = _props2 . record ,
indentSize = _props2 . indentSize ,
clsPrefix = _props2 . clsPrefix ,
indent = _props2 . indent ,
index = _props2 . index ,
expandIcon = _props2 . expandIcon ,
2018-09-12 14:14:05 +08:00
column = _props2 . column ,
2018-12-16 22:22:45 +08:00
fixed = _props2 . fixed ,
2019-04-23 16:04:02 +08:00
showSum = _props2 . showSum ,
2019-07-02 17:11:40 +08:00
bodyDisplayInRow = _props2 . bodyDisplayInRow ,
lazyStartIndex = _props2 . lazyStartIndex ,
lazyEndIndex = _props2 . lazyEndIndex ;
2017-01-12 08:53:51 +08:00
var dataIndex = column . dataIndex ,
2019-08-23 13:48:27 +08:00
render = column . render ,
fieldType = column . fieldType ,
2019-08-26 13:58:29 +08:00
linkConfig = column . linkConfig ,
fontColor = column . fontColor ,
bgColor = column . bgColor ;
2018-09-12 14:14:05 +08:00
var _column$className = column . className ,
2017-01-12 08:53:51 +08:00
className = _column$className === undefined ? '' : _column$className ;
var text = _objectPath2 [ "default" ] . get ( record , dataIndex ) ;
var tdProps = void 0 ;
var colSpan = void 0 ;
2019-04-23 16:04:02 +08:00
var rowSpan = void 0 ,
title = void 0 ;
2017-01-12 08:53:51 +08:00
2018-12-16 22:22:45 +08:00
if ( render && ! showSum ) {
2017-01-12 08:53:51 +08:00
text = render ( text , record , index ) ;
if ( this . isInvalidRenderCellText ( text ) ) {
tdProps = text . props || { } ;
2019-07-02 17:11:40 +08:00
rowSpan = tdProps . rowSpan > lazyEndIndex && lazyEndIndex > 5 ? lazyEndIndex - index : tdProps . rowSpan ;
2017-01-12 08:53:51 +08:00
colSpan = tdProps . colSpan ;
text = text . children ;
}
}
2019-08-23 13:48:27 +08:00
// 根据 fieldType 来渲染数据
if ( ! render ) {
switch ( column . fieldType ) {
case 'link' :
{
2019-08-26 13:58:29 +08:00
text = this . renderLinkType ( text , record , index , column . linkConfig ) ;
break ;
}
case 'bool' :
{
text = this . renderBoolType ( text , column . boolConfig ) ;
break ;
}
case 'currency' :
{
var config = {
precision : 2 , // 精度值,需要大于0
thousand : true , // 是否显示千分符号
makeUp : true , // 末位是否补零
preSymbol : '' , // 前置符号
nextSymbol : '' // 后置符号
} ;
text = this . renderNumber ( text , _extends ( { } , config , column . currencyConfig ) , column . width ) ;
break ;
}
case 'number' :
{
var _config = {
precision : 2 , // 精度值,需要大于0
thousand : true , // 是否显示千分符号
makeUp : false , // 末位是否补零
preSymbol : '' , // 前置符号
nextSymbol : '' // 后置符号
} ;
text = this . renderNumber ( text , _extends ( { } , _config , column . numberConfig ) , column . width ) ;
2019-08-23 13:48:27 +08:00
break ;
}
default :
{
break ;
}
}
}
2017-01-12 08:53:51 +08:00
if ( this . isInvalidRenderCellText ( text ) ) {
text = null ;
}
var indentText = expandIcon ? _react2 [ "default" ] . createElement ( 'span' , {
style : { paddingLeft : indentSize * indent + 'px' } ,
className : clsPrefix + '-indent indent-level-' + indent
} ) : null ;
2019-07-02 17:11:40 +08:00
if ( lazyStartIndex !== index && ( rowSpan === 0 || colSpan === 0 ) ) {
2017-01-12 08:53:51 +08:00
return null ;
}
2019-07-02 17:11:40 +08:00
if ( tdProps && tdProps . mergeEndIndex && index < tdProps . mergeEndIndex && rowSpan === 0 ) {
rowSpan = tdProps . mergeEndIndex - index ;
text = '' ;
}
2018-09-12 14:14:05 +08:00
//不是固定表格并且当前列是固定,则隐藏当前列
if ( column . fixed && ! fixed ) {
2018-12-20 09:41:51 +08:00
className = className + ( ' ' + clsPrefix + '-fixed-columns-in-body' ) ;
2018-09-12 14:14:05 +08:00
}
2019-08-26 13:58:29 +08:00
if ( column . contentAlign ) {
className = className + ( ' text-' + column . contentAlign ) ;
} else if ( column . textAlign ) {
2019-01-17 18:42:57 +08:00
className = className + ( ' text-' + column . textAlign ) ;
}
2019-04-23 16:04:02 +08:00
if ( typeof text == 'string' && bodyDisplayInRow ) {
title = text ;
}
2019-07-03 21:12:17 +08:00
if ( expandIcon && expandIcon . props . expandable ) {
className = className + ( ' ' + clsPrefix + '-has-expandIcon' ) ;
}
2017-01-12 08:53:51 +08:00
return _react2 [ "default" ] . createElement (
'td' ,
{
colSpan : colSpan ,
rowSpan : rowSpan ,
className : className ,
2019-04-23 16:04:02 +08:00
onClick : this . handleClick ,
2019-08-26 13:58:29 +08:00
title : title ,
style : { color : fontColor , backgroundColor : bgColor }
2017-01-12 08:53:51 +08:00
} ,
indentText ,
expandIcon ,
text
) ;
} ;
return TableCell ;
} ( _react . Component ) ;
;
TableCell . propTypes = propTypes ;
exports [ "default" ] = TableCell ;
module . exports = exports [ 'default' ] ;