iview/src/components/table/table.vue

321 lines
12 KiB
Vue
Raw Normal View History

<template>
2016-11-24 17:32:43 +08:00
<div :class="classes" :style="styles">
<div :class="[prefixCls + '-title']" v-if="showSlotHeader" v-el:title><slot name="header"></slot></div>
2016-11-25 17:01:27 +08:00
<div :class="[prefixCls + '-header']" v-if="showHeader" v-el:header @mousewheel="handleMouseWheel">
2016-11-26 08:57:09 +08:00
<table-head
:prefix-cls="prefixCls"
:style="tableStyle"
:columns="cloneColumns"
:clone-data="cloneData"></table-head>
</div>
2016-11-25 22:51:50 +08:00
<div :class="[prefixCls + '-body']" :style="bodyStyle" v-el:body @scroll="handleBodyScroll">
2016-11-26 08:57:09 +08:00
<table-body
v-ref:tbody
:prefix-cls="prefixCls"
:style="tableStyle"
:columns="cloneColumns"
:data="data"
:clone-data="cloneData"></table-body>
2016-11-25 08:50:06 +08:00
</div>
<div :class="[prefixCls + '-fixed']">
2016-11-26 08:57:09 +08:00
<!--todo设置个div头部-->
<table-body
fixed
:prefix-cls="prefixCls"
:style="fixedTableStyle"
:columns="leftFixedColumns"
:data="data"
:clone-data="cloneData"></table-body>
2016-11-25 08:50:06 +08:00
</div>
<div :class="[prefixCls + '-fixed-right']">
2016-11-26 08:57:09 +08:00
<table-body
fixed
:prefix-cls="prefixCls"
:style="fixedRightTableStyle"
:columns="rightFixedColumns"
:data="data"
:clone-data="cloneData"></table-body>
</div>
2016-11-24 17:32:43 +08:00
<div :class="[prefixCls + '-footer']" v-if="showSlotFooter" v-el:footer><slot name="footer"></slot></div>
</div>
</template>
<script>
2016-11-26 08:57:09 +08:00
import tableHead from './table-head.vue';
import tableBody from './table-body.vue';
2016-11-24 15:27:46 +08:00
import { oneOf, getStyle, deepCopy } from '../../utils/assist';
const prefixCls = 'ivu-table';
export default {
2016-11-26 08:57:09 +08:00
components: { tableHead, tableBody },
props: {
data: {
type: Array,
default () {
return []
}
},
columns: {
type: Array,
default () {
return []
}
},
size: {
validator (value) {
return oneOf(value, ['small', 'large']);
}
},
2016-11-25 22:51:50 +08:00
width: {
type: [Number, String]
},
2016-11-24 17:32:43 +08:00
height: {
type: [Number, String]
},
stripe: {
type: Boolean,
default: false
},
border: {
type: Boolean,
default: false
},
showHeader: {
type: Boolean,
default: true
},
2016-11-24 15:27:46 +08:00
highlightRow: {
type: Boolean,
default: false
2016-11-24 17:32:43 +08:00
},
rowClassName: {
type: Function,
default () {
return '';
}
}
},
data () {
return {
tableWidth: 0,
columnsWidth: [],
prefixCls: prefixCls,
2016-11-24 15:27:46 +08:00
compiledUids: [],
2016-11-24 17:32:43 +08:00
cloneData: deepCopy(this.data),
2016-11-25 08:50:06 +08:00
cloneColumns: deepCopy(this.columns),
2016-11-25 15:47:28 +08:00
leftFixedColumns: [],
rightFixedColumns: [],
centerColumns: [],
2016-11-24 17:32:43 +08:00
showSlotHeader: true,
showSlotFooter: true,
bodyHeight: 0
}
},
computed: {
classes () {
return [
`${prefixCls}`,
{
2016-11-24 15:27:46 +08:00
[`${prefixCls}-${this.size}`]: !!this.size,
[`${prefixCls}-border`]: this.border,
2016-11-24 17:32:43 +08:00
[`${prefixCls}-stripe`]: this.stripe,
[`${prefixCls}-with-header`]: this.showSlotHeader,
[`${prefixCls}-with-footer`]: this.showSlotFooter,
[`${prefixCls}-with-fixed-top`]: !!this.height
}
]
2016-11-24 15:27:46 +08:00
},
2016-11-24 17:32:43 +08:00
styles () {
let style = {};
if (!!this.height) style.height = `${this.height}px`;
2016-11-25 22:51:50 +08:00
if (!!this.width) style.width = `${this.width}px`;
2016-11-24 17:32:43 +08:00
return style;
},
2016-11-24 15:27:46 +08:00
tableStyle () {
let style = {};
if (this.tableWidth !== 0) style.width = `${this.tableWidth}px`;
return style;
2016-11-24 17:32:43 +08:00
},
2016-11-26 08:57:09 +08:00
fixedTableStyle () {
let style = {};
if (this.leftFixedColumns.length) style.width = this.leftFixedColumns.reduce((a, b) => a + b);
return style;
},
fixedRightTableStyle () {
let style = {};
if (this.rightFixedColumns.length) style.width = this.rightFixedColumns.reduce((a, b) => a + b);
return style;
},
2016-11-24 17:32:43 +08:00
bodyStyle () {
let style = {};
if (this.bodyHeight !== 0) style.height = `${this.bodyHeight}px`;
return style;
}
},
methods: {
2016-11-24 17:32:43 +08:00
rowClsName (index) {
return this.rowClassName(this.data[index], index);
},
2016-11-25 15:47:28 +08:00
handleResize () {
this.$nextTick(() => {
2016-11-25 15:47:28 +08:00
const allWidth = !this.columns.some(cell => !cell.width);
if (allWidth) {
this.tableWidth = this.columns.map(cell => cell.width).reduce((a, b) => a + b);
} else {
this.tableWidth = parseInt(getStyle(this.$el, 'width')) - 1;
}
2016-11-25 15:47:28 +08:00
this.$nextTick(() => {
this.columnsWidth = [];
2016-11-25 17:01:27 +08:00
let autoWidthIndex = -1;
2016-11-25 15:47:28 +08:00
if (allWidth) autoWidthIndex = this.cloneColumns.findIndex(cell => !cell.width);
2016-11-25 17:01:27 +08:00
2016-11-26 08:57:09 +08:00
const $td = this.$refs.tbody.$el.querySelectorAll('tbody tr')[0].querySelectorAll('td');
2016-11-25 17:01:27 +08:00
for (let i = 0; i < $td.length; i++) { // can not use forEach in Firefox
if (i === autoWidthIndex) {
this.columnsWidth.push(parseInt(getStyle($td[i], 'width')) - 1);
2016-11-25 15:47:28 +08:00
} else {
2016-11-25 17:01:27 +08:00
this.columnsWidth.push(parseInt(getStyle($td[i], 'width')));
}
2016-11-25 17:01:27 +08:00
}
});
});
},
setCellWidth (column, index) {
return column.width ? column.width : this.columnsWidth[index];
2016-11-24 15:27:46 +08:00
},
2016-11-25 08:50:06 +08:00
assignRow (index, obj) {
return Object.assign({}, this.cloneData[index], obj);
},
handleMouseIn (index) {
if (this.cloneData[index]._isHover) return;
const row = this.assignRow(index, {
_isHover: true
});
this.cloneData.$set(index, row);
},
handleMouseOut (index) {
const row = this.assignRow(index, {
_isHover: false
});
this.cloneData.$set(index, row);
},
2016-11-24 15:27:46 +08:00
highlightCurrentRow (index) {
if (!this.highlightRow || this.cloneData[index]._isHighlight) return;
let oldIndex = -1;
this.cloneData.forEach((item, index) => {
if (item._isHighlight) {
oldIndex = index;
item._isHighlight = false;
return true;
}
});
2016-11-25 08:50:06 +08:00
const row = this.assignRow(index, {
2016-11-24 15:27:46 +08:00
_isHighlight: true
});
this.cloneData.$set(index, row);
const oldData = oldIndex < 0 ? null : JSON.parse(JSON.stringify(this.data[oldIndex]));
this.$emit('on-current-change', JSON.parse(JSON.stringify(this.data[index])), oldData);
},
getSelection () {
let selectionIndexes = [];
this.cloneData.forEach((data, index) => {
if (data._isChecked) selectionIndexes.push(index);
});
return JSON.parse(JSON.stringify(this.data.filter((data, index) => selectionIndexes.indexOf(index) > -1)));
},
toggleSelect (index) {
const status = !this.cloneData[index]._isChecked;
2016-11-25 08:50:06 +08:00
const row = this.assignRow(index, {
2016-11-24 15:27:46 +08:00
_isChecked: status
});
this.cloneData.$set(index, row);
const selection = this.getSelection();
if (status) {
this.$emit('on-select', selection, JSON.parse(JSON.stringify(this.data[index])));
}
this.$emit('on-selection-change', selection);
},
selectAll () {
this.$emit('on-select-all', this.getSelection());
2016-11-24 17:32:43 +08:00
},
fixedHeader () {
if (!!this.height) {
this.$nextTick(() => {
const titleHeight = parseInt(getStyle(this.$els.title, 'height')) || 0;
const headerHeight = parseInt(getStyle(this.$els.header, 'height')) || 0;
const footerHeight = parseInt(getStyle(this.$els.footer, 'height')) || 0;
this.bodyHeight = this.height - titleHeight - headerHeight - footerHeight;
})
}
2016-11-25 08:50:06 +08:00
},
parseColumns () {
let left = [];
let right = [];
let center = [];
this.cloneColumns.forEach((col) => {
if (col.fixed && col.fixed === 'left') {
left.push(col);
} else if (col.fixed && col.fixed === 'right') {
right.push(col);
} else {
center.push(col);
}
});
2016-11-25 15:47:28 +08:00
this.leftFixedColumns = left;
this.rightFixedColumns = right;
this.centerColumns = center;
2016-11-25 08:50:06 +08:00
this.cloneColumns = left.concat(center).concat(right);
2016-11-25 17:01:27 +08:00
},
handleBodyScroll (event) {
this.$els.header.scrollLeft = event.target.scrollLeft;
// todo 固定时上下滚动,固定的表头也滚动 scrollTop
},
2016-11-25 22:51:50 +08:00
handleMouseWheel (event) {
const deltaX = event.deltaX;
const $body = this.$els.body;
if (deltaX > 0) {
$body.scrollLeft = $body.scrollLeft + 10;
} else {
$body.scrollLeft = $body.scrollLeft - 10;
}
}
},
2016-11-24 17:32:43 +08:00
compiled () {
2016-11-25 08:50:06 +08:00
this.parseColumns();
2016-11-24 17:32:43 +08:00
this.showSlotHeader = this.$els.title.innerHTML.replace(/\n/g, '').replace(/<!--[\w\W\r\n]*?-->/gmi, '') !== '';
this.showSlotFooter = this.$els.footer.innerHTML.replace(/\n/g, '').replace(/<!--[\w\W\r\n]*?-->/gmi, '') !== '';
},
ready () {
2016-11-25 15:47:28 +08:00
this.handleResize();
2016-11-24 17:32:43 +08:00
this.fixedHeader();
window.addEventListener('resize', this.handleResize, false);
},
beforeDestroy () {
window.removeEventListener('resize', this.handleResize, false);
},
watch: {
data: {
handler () {
2016-11-24 15:27:46 +08:00
this.cloneData = deepCopy(this.data);
2016-11-25 15:47:28 +08:00
this.handleResize();
},
deep: true
},
columns: {
handler () {
2016-11-25 08:50:06 +08:00
this.parseColumns();
2016-11-25 15:47:28 +08:00
this.handleResize();
},
deep: true
2016-11-24 17:32:43 +08:00
},
height () {
this.fixedHeader();
}
}
}
</script>