import { getValueByPath, getCell, getColumnByCell, getRowIdentity } from './util';
export default {
props: {
store: {
required: true
},
layout: {
required: true
},
rowClassName: [String, Function],
fixed: String,
highlight: Boolean
},
render(h) {
return (
{
this._l(this.columns, column =>
)
}
{
this._l(this.data, (row, $index) =>
this.handleClick($event, row) }
on-mouseenter={ _ => this.handleMouseEnter($index) }
on-mouseleave={ _ => this.handleMouseLeave() }
class={ this.getRowClass(row, $index) }>
{
this._l(this.columns, (column, cellIndex) =>
this.handleCellMouseEnter($event, row) }
on-mouseleave={ this.handleCellMouseLeave }>
{
column.renderCell.call(this._renderProxy, h, { row, column, $index, store: this.store, _self: this.$parent.$vnode.context })
}
|
)
}
{
!this.fixed && this.layout.scrollY && this.layout.gutterWidth ? | : ''
}
)
}
);
},
watch: {
'store.states.hoverRow'(newVal, oldVal) {
const el = this.$el;
if (!el) return;
const rows = el.querySelectorAll('tr');
const oldRow = rows[oldVal];
const newRow = rows[newVal];
if (oldRow) {
oldRow.classList.remove('hover-row');
}
if (newRow) {
newRow.classList.add('hover-row');
}
},
'store.states.currentRow'(newVal, oldVal) {
if (!this.highlight) return;
const el = this.$el;
if (!el) return;
const data = this.store.states.data;
const rows = el.querySelectorAll('tr');
const oldRow = rows[data.indexOf(oldVal)];
const newRow = rows[data.indexOf(newVal)];
if (oldRow) {
oldRow.classList.remove('current-row');
}
if (newRow) {
newRow.classList.add('current-row');
}
}
},
computed: {
data() {
return this.store.states.data;
},
columnsCount() {
return this.store.states.columns.length;
},
leftFixedCount() {
return this.store.states.fixedColumns.length;
},
rightFixedCount() {
return this.store.states.rightFixedColumns.length;
},
columns() {
return this.store.states.columns;
}
},
data() {
return {
tooltipDisabled: true
};
},
methods: {
getKeyOfRow(row, index) {
const rowKey = this.$parent.rowKey;
if (rowKey) {
return getRowIdentity(row, rowKey);
}
return index;
},
isCellHidden(index) {
if (this.fixed === true || this.fixed === 'left') {
return index >= this.leftFixedCount;
} else if (this.fixed === 'right') {
return index < this.columnsCount - this.rightFixedCount;
} else {
return (index < this.leftFixedCount) || (index >= this.columnsCount - this.rightFixedCount);
}
},
getRowClass(row, index) {
const classes = [];
const rowClassName = this.rowClassName;
if (typeof rowClassName === 'string') {
classes.push(rowClassName);
} else if (typeof rowClassName === 'function') {
classes.push(rowClassName.apply(null, [row, index]) || '');
}
return classes.join(' ');
},
handleCellMouseEnter(event, row) {
const table = this.$parent;
const cell = getCell(event);
if (cell) {
const column = getColumnByCell(table, cell);
const hoverState = table.hoverState = { cell, column, row };
table.$emit('cell-mouse-enter', hoverState.row, hoverState.column, hoverState.cell, event);
}
// 判断是否text-overflow, 如果是就显示tooltip
const cellChild = event.target.querySelector('.cell');
this.tooltipDisabled = cellChild.scrollWidth <= cellChild.offsetWidth;
},
handleCellMouseLeave(event) {
const cell = getCell(event);
if (!cell) return;
const oldHoverState = this.$parent.hoverState;
this.$parent.$emit('cell-mouse-leave', oldHoverState.row, oldHoverState.column, oldHoverState.cell, event);
},
handleMouseEnter(index) {
this.store.commit('setHoverRow', index);
},
handleMouseLeave() {
this.store.commit('setHoverRow', null);
},
handleClick(event, row) {
const table = this.$parent;
const cell = getCell(event);
if (cell) {
const column = getColumnByCell(table, cell);
if (column) {
table.$emit('cell-click', row, column, cell, event);
}
}
this.store.commit('setCurrentRow', row);
table.$emit('row-click', row, event);
},
getCellContent(row, property, column) {
if (column && column.formatter) {
return column.formatter(row, column);
}
if (property && property.indexOf('.') === -1) {
return row[property];
}
return getValueByPath(row, property);
}
}
};