'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); var _react = require('react'); var _react2 = _interopRequireDefault(_react); var _propTypes = require('prop-types'); var _propTypes2 = _interopRequireDefault(_propTypes); var _objectPath = require('object-path'); var _objectPath2 = _interopRequireDefault(_objectPath); 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 = { 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 }; var TableCell = function (_Component) { _inherits(TableCell, _Component); function TableCell(props) { _classCallCheck(this, TableCell); var _this = _possibleConstructorReturn(this, _Component.call(this, props)); _this.renderLinkType = function (data, record) { var config = arguments.length > 2 && arguments[2] !== undefined ? arguments[2] : {}; var index = arguments[3]; 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; }; _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); } }; // 渲染链接类型 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, column = _props2.column, fixed = _props2.fixed, showSum = _props2.showSum, bodyDisplayInRow = _props2.bodyDisplayInRow, lazyStartIndex = _props2.lazyStartIndex, lazyEndIndex = _props2.lazyEndIndex; var dataIndex = column.dataIndex, render = column.render, fieldType = column.fieldType, linkConfig = column.linkConfig; var _column$className = column.className, className = _column$className === undefined ? '' : _column$className; var text = _objectPath2["default"].get(record, dataIndex); var tdProps = void 0; var colSpan = void 0; var rowSpan = void 0, title = void 0; if (render && !showSum) { text = render(text, record, index); if (this.isInvalidRenderCellText(text)) { tdProps = text.props || {}; rowSpan = tdProps.rowSpan > lazyEndIndex && lazyEndIndex > 5 ? lazyEndIndex - index : tdProps.rowSpan; colSpan = tdProps.colSpan; text = text.children; } } // 根据 fieldType 来渲染数据 if (!render) { switch (column.fieldType) { case 'link': { text = this.renderLinkType(text, record, column.linkConfig, index); break; } default: { break; } } } 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; if (lazyStartIndex !== index && (rowSpan === 0 || colSpan === 0)) { return null; } if (tdProps && tdProps.mergeEndIndex && index < tdProps.mergeEndIndex && rowSpan === 0) { rowSpan = tdProps.mergeEndIndex - index; text = ''; } //不是固定表格并且当前列是固定,则隐藏当前列 if (column.fixed && !fixed) { className = className + (' ' + clsPrefix + '-fixed-columns-in-body'); } if (column.textAlign) { className = className + (' text-' + column.textAlign); } if (typeof text == 'string' && bodyDisplayInRow) { title = text; } if (expandIcon && expandIcon.props.expandable) { className = className + (' ' + clsPrefix + '-has-expandIcon'); } return _react2["default"].createElement( 'td', { colSpan: colSpan, rowSpan: rowSpan, className: className, onClick: this.handleClick, title: title }, indentText, expandIcon, text ); }; return TableCell; }(_react.Component); ; TableCell.propTypes = propTypes; exports["default"] = TableCell; module.exports = exports['default'];