iview/src/components/table/table-head.vue

229 lines
11 KiB
Vue
Raw Normal View History

<template>
2017-01-05 14:10:08 +08:00
<table cellspacing="0" cellpadding="0" border="0" :style="styles">
2016-11-26 08:57:09 +08:00
<colgroup>
2018-03-27 22:26:56 +08:00
<col v-for="(column, index) in columns" :width="setCellWidth(column)">
<col v-if="$parent.showVerticalScrollBar" :width="$parent.scrollBarWidth"/>
2016-11-26 08:57:09 +08:00
</colgroup>
<thead>
2018-03-23 15:32:58 +08:00
<tr v-for="(cols, rowIndex) in headRows">
<th
v-for="(column, index) in cols"
:colspan="column.colSpan"
:rowspan="column.rowSpan"
:class="alignCls(column)">
2016-11-27 01:42:39 +08:00
<div :class="cellClasses(column)">
<template v-if="column.type === 'expand'">
<span v-if="!column.renderHeader">{{ column.title || '' }}</span>
<render-header v-else :render="column.renderHeader" :column="column" :index="index"></render-header>
</template>
<template v-else-if="column.type === 'selection'"><Checkbox :value="isSelectAll" :disabled="isSelectDisabled" @on-change="selectAll"></Checkbox></template>
2016-11-27 22:56:05 +08:00
<template v-else>
2018-03-26 16:56:48 +08:00
<span v-if="!column.renderHeader" :class="{[prefixCls + '-cell-sort']: column.sortable}" @click="handleSortByHead(getColumn(rowIndex, index)._index)">{{ column.title || '#' }}</span>
2017-07-18 14:15:57 +08:00
<render-header v-else :render="column.renderHeader" :column="column" :index="index"></render-header>
2016-11-27 22:56:05 +08:00
<span :class="[prefixCls + '-sort']" v-if="column.sortable">
2018-06-25 13:03:08 +08:00
<i class="ivu-icon ivu-icon-md-arrow-dropup" :class="{on: getColumn(rowIndex, index)._sortType === 'asc'}" @click="handleSort(getColumn(rowIndex, index)._index, 'asc')"></i>
<i class="ivu-icon ivu-icon-md-arrow-dropdown" :class="{on: getColumn(rowIndex, index)._sortType === 'desc'}" @click="handleSort(getColumn(rowIndex, index)._index, 'desc')"></i>
2016-11-27 22:56:05 +08:00
</span>
2016-11-29 11:04:48 +08:00
<Poptip
2016-11-30 13:17:55 +08:00
v-if="isPopperShow(column)"
v-model="getColumn(rowIndex, index)._filterVisible"
2016-11-29 11:04:48 +08:00
placement="bottom"
popper-class="ivu-table-popper"
transfer
@on-popper-hide="handleFilterHide(getColumn(rowIndex, index)._index)">
2016-11-28 21:30:59 +08:00
<span :class="[prefixCls + '-filter']">
2018-06-25 13:03:08 +08:00
<i class="ivu-icon ivu-icon-ios-funnel" :class="{on: getColumn(rowIndex, index)._isFiltered}"></i>
2016-11-28 21:30:59 +08:00
</span>
2018-04-11 11:20:00 +08:00
<div slot="content" :class="[prefixCls + '-filter-list']" v-if="getColumn(rowIndex, index)._filterMultiple">
2016-11-29 08:43:47 +08:00
<div :class="[prefixCls + '-filter-list-item']">
<checkbox-group v-model="getColumn(rowIndex, index)._filterChecked">
2017-12-25 10:26:54 +08:00
<checkbox v-for="(item, index) in column.filters" :key="index" :label="item.value">{{ item.label }}</checkbox>
2016-11-29 08:43:47 +08:00
</checkbox-group>
</div>
<div :class="[prefixCls + '-filter-footer']">
<i-button type="text" size="small" :disabled="!getColumn(rowIndex, index)._filterChecked.length" @click.native="handleFilter(getColumn(rowIndex, index)._index)">{{ t('i.table.confirmFilter') }}</i-button>
<i-button type="text" size="small" @click.native="handleReset(getColumn(rowIndex, index)._index)">{{ t('i.table.resetFilter') }}</i-button>
2016-11-29 08:43:47 +08:00
</div>
2016-11-28 21:30:59 +08:00
</div>
2016-11-29 11:04:48 +08:00
<div slot="content" :class="[prefixCls + '-filter-list']" v-else>
<ul :class="[prefixCls + '-filter-list-single']">
2016-11-29 13:25:25 +08:00
<li
:class="itemAllClasses(getColumn(rowIndex, index))"
@click="handleReset(getColumn(rowIndex, index)._index)">{{ t('i.table.clearFilter') }}</li>
2016-11-29 13:25:25 +08:00
<li
:class="itemClasses(getColumn(rowIndex, index), item)"
2016-11-29 13:25:25 +08:00
v-for="item in column.filters"
@click="handleSelect(getColumn(rowIndex, index)._index, item.value)">{{ item.label }}</li>
2016-11-29 11:04:48 +08:00
</ul>
</div>
2016-11-28 21:30:59 +08:00
</Poptip>
2016-11-27 22:56:05 +08:00
</template>
2016-11-26 08:57:09 +08:00
</div>
</th>
2018-03-27 23:39:47 +08:00
<th v-if="$parent.showVerticalScrollBar && rowIndex===0" :class='scrollBarCellClass()' :rowspan="headRows.length"></th>
2016-11-26 08:57:09 +08:00
</tr>
</thead>
</table>
</template>
<script>
2016-11-29 08:43:47 +08:00
import CheckboxGroup from '../checkbox/checkbox-group.vue';
2016-11-24 15:27:46 +08:00
import Checkbox from '../checkbox/checkbox.vue';
2016-11-28 21:30:59 +08:00
import Poptip from '../poptip/poptip.vue';
2016-11-29 08:43:47 +08:00
import iButton from '../button/button.vue';
2017-07-18 14:15:57 +08:00
import renderHeader from './header';
2016-11-24 15:27:46 +08:00
import Mixin from './mixin';
import Locale from '../../mixins/locale';
2016-11-24 15:27:46 +08:00
export default {
2017-03-09 14:11:22 +08:00
name: 'TableHead',
mixins: [ Mixin, Locale ],
2017-07-18 14:15:57 +08:00
components: { CheckboxGroup, Checkbox, Poptip, iButton, renderHeader },
props: {
prefixCls: String,
2017-03-09 14:11:22 +08:00
styleObject: Object,
2016-11-24 15:27:46 +08:00
columns: Array,
2016-11-28 15:43:19 +08:00
objData: Object,
2016-11-29 16:29:52 +08:00
data: Array, // rebuildData
columnsWidth: Object,
2016-11-30 13:17:55 +08:00
fixed: {
type: [Boolean, String],
default: false
2018-03-23 15:32:58 +08:00
},
2018-03-23 17:35:19 +08:00
columnRows: Array,
fixedColumnRows: Array
},
computed: {
2017-01-05 14:10:08 +08:00
styles () {
2017-03-09 14:11:22 +08:00
const style = Object.assign({}, this.styleObject);
2018-03-27 22:26:56 +08:00
const width = parseInt(this.styleObject.width) ;
2017-01-05 14:10:08 +08:00
style.width = `${width}px`;
return style;
},
2016-11-24 15:27:46 +08:00
isSelectAll () {
2016-11-28 15:43:19 +08:00
let isSelectAll = true;
2016-12-23 10:31:37 +08:00
if (!this.data.length) isSelectAll = false;
2017-09-03 12:26:16 +08:00
if (!this.data.find(item => !item._disabled)) isSelectAll = false; // #1751
2016-11-29 16:29:52 +08:00
for (let i = 0; i < this.data.length; i++) {
if (!this.objData[this.data[i]._index]._isChecked && !this.objData[this.data[i]._index]._isDisabled) {
2016-11-29 16:29:52 +08:00
isSelectAll = false;
break;
}
2016-11-28 15:43:19 +08:00
}
return isSelectAll;
2018-03-23 15:32:58 +08:00
},
headRows () {
const isGroup = this.columnRows.length > 1;
2018-03-23 17:35:19 +08:00
if (isGroup) {
return this.fixed ? this.fixedColumnRows : this.columnRows;
} else {
return [this.columns];
}
},
isSelectDisabled () {
let isSelectDisabled = false;
if (!this.data.length) isSelectDisabled = true;
2019-05-21 11:18:04 +08:00
if (!this.data.find(item => !item._disabled)) isSelectDisabled = true;
return isSelectDisabled;
2016-11-24 15:27:46 +08:00
}
},
methods: {
2016-11-27 01:42:39 +08:00
cellClasses (column) {
return [
`${this.prefixCls}-cell`,
{
[`${this.prefixCls}-hidden`]: !this.fixed && column.fixed && (column.fixed === 'left' || column.fixed === 'right'),
[`${this.prefixCls}-cell-with-selection`]: column.type === 'selection'
2016-11-27 01:42:39 +08:00
}
2016-12-25 22:49:42 +08:00
];
2016-11-27 01:42:39 +08:00
},
2018-03-27 23:39:47 +08:00
scrollBarCellClass(){
let hasRightFixed = false;
2018-04-11 11:20:00 +08:00
for(let i in this.headRows){
for(let j in this.headRows[i]){
2018-03-27 23:39:47 +08:00
if(this.headRows[i][j].fixed === 'right') {
hasRightFixed=true;
break;
}
if(hasRightFixed) break;
}
}
return [
{
[`${this.prefixCls}-hidden`]: hasRightFixed
}
];
},
itemClasses (column, item) {
return [
`${this.prefixCls}-filter-select-item`,
{
[`${this.prefixCls}-filter-select-item-selected`]: column._filterChecked[0] === item.value
}
2016-12-25 22:49:42 +08:00
];
},
itemAllClasses (column) {
return [
`${this.prefixCls}-filter-select-item`,
{
[`${this.prefixCls}-filter-select-item-selected`]: !column._filterChecked.length
}
2016-12-25 22:49:42 +08:00
];
},
2016-11-24 15:27:46 +08:00
selectAll () {
const status = !this.isSelectAll;
2016-11-26 10:50:24 +08:00
this.$parent.selectAll(status);
2016-11-27 22:56:05 +08:00
},
2016-11-28 16:53:19 +08:00
handleSort (index, type) {
2019-04-09 14:46:25 +08:00
// 在固定列时,寻找正确的 index #5580
const column = this.columns.find(item => item._index === index);
2018-01-19 17:34:02 +08:00
const _index = column._index;
if (column._sortType === type) {
2016-11-28 16:53:19 +08:00
type = 'normal';
2016-11-28 14:23:49 +08:00
}
2018-01-19 17:34:02 +08:00
this.$parent.handleSort(_index, type);
2016-11-28 21:30:59 +08:00
},
2017-07-18 15:03:27 +08:00
handleSortByHead (index) {
2019-04-09 14:46:25 +08:00
// 在固定列时,寻找正确的 index #5580
const column = this.columns.find(item => item._index === index);
2017-07-18 15:03:27 +08:00
if (column.sortable) {
const type = column._sortType;
if (type === 'normal') {
this.handleSort(index, 'asc');
} else if (type === 'asc') {
this.handleSort(index, 'desc');
} else {
this.handleSort(index, 'normal');
}
}
},
2016-11-28 21:30:59 +08:00
handleFilter (index) {
2016-11-29 11:04:48 +08:00
this.$parent.handleFilter(index);
2016-11-29 08:43:47 +08:00
},
2016-11-29 13:25:25 +08:00
handleSelect (index, value) {
this.$parent.handleFilterSelect(index, value);
},
2016-11-29 08:43:47 +08:00
handleReset (index) {
2016-11-29 11:04:48 +08:00
this.$parent.handleFilterReset(index);
2016-11-29 08:43:47 +08:00
},
2016-11-29 11:04:48 +08:00
handleFilterHide (index) {
this.$parent.handleFilterHide(index);
},
// 因为表头嵌套不是深拷贝,所以没有 _ 开头的方法,在 isGroup 下用此列
getColumn (rowIndex, index) {
const isGroup = this.columnRows.length > 1;
2018-04-11 11:20:00 +08:00
if (isGroup) {
const id = this.headRows[rowIndex][index].__id;
return this.columns.filter(item => item.__id === id)[0];
} else {
return this.headRows[rowIndex][index];
}
}
}
2016-12-25 22:49:42 +08:00
};
</script>