mirror of https://github.com/ElemeFE/element
256 lines
5.8 KiB
JavaScript
256 lines
5.8 KiB
JavaScript
![]() |
import ElCheckbox from 'packages/checkbox/index.js';
|
||
|
import ElTag from 'packages/tag/index.js';
|
||
|
import objectAssign from 'object-assign';
|
||
|
|
||
|
let columnIdSeed = 1;
|
||
|
|
||
|
const defaults = {
|
||
|
default: {
|
||
|
direction: ''
|
||
|
},
|
||
|
selection: {
|
||
|
width: 48,
|
||
|
minWidth: 48,
|
||
|
realWidth: 48,
|
||
|
direction: ''
|
||
|
},
|
||
|
index: {
|
||
|
width: 48,
|
||
|
minWidth: 48,
|
||
|
realWidth: 48,
|
||
|
direction: ''
|
||
|
},
|
||
|
filter: {
|
||
|
headerTemplate: function(h) { return <span>filter header</span>; },
|
||
|
direction: ''
|
||
|
}
|
||
|
};
|
||
|
|
||
|
const forced = {
|
||
|
selection: {
|
||
|
headerTemplate: function(h) { return <div><el-checkbox nativeOn-click={ this.toggleAllSelection } domProps-value={ this.allSelected } on-input={ ($event) => this.$emit('allselectedchange', $event) } /></div>; },
|
||
|
template: function(h, { row }) { return <el-checkbox domProps-value={ row.$selected } on-input={ ($event) => {row.$selected = $event;} } />; },
|
||
|
sortable: false,
|
||
|
resizable: false
|
||
|
},
|
||
|
index: {
|
||
|
headerTemplate: function(h) { return <div>#</div>; },
|
||
|
template: function(h, { row, $index }) { return <div>{ $index + 1 }</div>; },
|
||
|
sortable: false
|
||
|
},
|
||
|
filter: {
|
||
|
headerTemplate: function(h) { return <div>#</div>; },
|
||
|
template: function(h, { row, column }) { return <el-tag type="primary" style="height: 16px; line-height: 16px; min-width: 40px; text-align: center">{ row[column.property] }</el-tag>; },
|
||
|
resizable: false
|
||
|
}
|
||
|
};
|
||
|
|
||
|
const getDefaultColumn = function(type, options) {
|
||
|
const column = {};
|
||
|
|
||
|
objectAssign(column, defaults[type || 'default']);
|
||
|
|
||
|
for (let name in options) {
|
||
|
if (options.hasOwnProperty(name)) {
|
||
|
const value = options[name];
|
||
|
if (typeof value !== 'undefined') {
|
||
|
column[name] = value;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return column;
|
||
|
};
|
||
|
|
||
|
export default {
|
||
|
name: 'el-table-column',
|
||
|
|
||
|
props: {
|
||
|
type: {
|
||
|
type: String,
|
||
|
default: 'default'
|
||
|
},
|
||
|
label: String,
|
||
|
property: String,
|
||
|
width: {},
|
||
|
minWidth: {},
|
||
|
template: String,
|
||
|
sortable: {
|
||
|
type: Boolean,
|
||
|
default: false
|
||
|
},
|
||
|
resizable: {
|
||
|
type: Boolean,
|
||
|
default: true
|
||
|
},
|
||
|
showTooltipWhenOverflow: Boolean,
|
||
|
formatter: Function
|
||
|
},
|
||
|
|
||
|
render(h) {
|
||
|
return <div />;
|
||
|
},
|
||
|
|
||
|
data() {
|
||
|
return {
|
||
|
isChildColumn: false,
|
||
|
columns: [],
|
||
|
row: {}
|
||
|
};
|
||
|
},
|
||
|
|
||
|
components: {
|
||
|
ElCheckbox,
|
||
|
ElTag
|
||
|
},
|
||
|
|
||
|
created() {
|
||
|
let columnId = this.columnId = (this.$parent.gridId || (this.$parent.columnId + '_')) + 'column_' + columnIdSeed++;
|
||
|
|
||
|
let parent = this.$parent;
|
||
|
if (!parent.gridId) {
|
||
|
this.isChildColumn = true;
|
||
|
}
|
||
|
|
||
|
let type = this.type;
|
||
|
|
||
|
let width = this.width;
|
||
|
if (width !== undefined) {
|
||
|
width = parseInt(width, 10);
|
||
|
if (isNaN(width)) {
|
||
|
width = null;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
let minWidth = this.minWidth;
|
||
|
if (minWidth !== undefined) {
|
||
|
minWidth = parseInt(minWidth, 10);
|
||
|
if (isNaN(minWidth)) {
|
||
|
minWidth = 80;
|
||
|
}
|
||
|
} else {
|
||
|
minWidth = 80;
|
||
|
}
|
||
|
|
||
|
let isColumnGroup = false;
|
||
|
let template;
|
||
|
|
||
|
let property = this.property;
|
||
|
if (property) {
|
||
|
template = function(h, { row }) {
|
||
|
return <span>{ this.$getPropertyText(row, property, columnId) }</span>;
|
||
|
};
|
||
|
}
|
||
|
|
||
|
let column = getDefaultColumn(type, {
|
||
|
id: columnId,
|
||
|
label: this.label,
|
||
|
property: this.property,
|
||
|
type,
|
||
|
template,
|
||
|
minWidth,
|
||
|
width,
|
||
|
isColumnGroup,
|
||
|
realWidth: width || minWidth,
|
||
|
sortable: this.sortable,
|
||
|
resizable: this.resizable,
|
||
|
formatter: this.formatter
|
||
|
});
|
||
|
|
||
|
objectAssign(column, forced[type] || {});
|
||
|
|
||
|
let renderColumn = column.template;
|
||
|
let _self = this;
|
||
|
column.template = function(h, data) {
|
||
|
if (_self.$vnode.data.inlineTemplate) {
|
||
|
let costomRender = _self.$options.render;
|
||
|
|
||
|
renderColumn = function(_h) {
|
||
|
return costomRender.call(data, _h);
|
||
|
};
|
||
|
};
|
||
|
|
||
|
return _self.showTooltipWhenOverflow
|
||
|
? <el-tooltip
|
||
|
on-created={ this.handleCreate }
|
||
|
effect={ this.effect }
|
||
|
placement="top"
|
||
|
disabled={ this.tooltipDisabled }>
|
||
|
<div class="cell">{ renderColumn.call(this._renderProxy, h, data) }</div>
|
||
|
<span slot="content">{ renderColumn.call(this._renderProxy, h, data) }</span>
|
||
|
</el-tooltip>
|
||
|
: <div class="cell">{ renderColumn.call(this._renderProxy, h, data) }</div>;
|
||
|
};
|
||
|
|
||
|
this.columnConfig = column;
|
||
|
},
|
||
|
|
||
|
destroyed() {
|
||
|
if (!this.$parent) {
|
||
|
return;
|
||
|
}
|
||
|
let columns = this.$parent.columns;
|
||
|
if (columns) {
|
||
|
let columnId = this.columnId;
|
||
|
for (let i = 0, j = columns.length; i < j; i++) {
|
||
|
let column = columns[i];
|
||
|
|
||
|
if (column.id === columnId) {
|
||
|
columns.splice(i, 1);
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if (this.isChildColumn) {
|
||
|
if (this.$parent.$parent.$ready) {
|
||
|
this.$parent.$parent.debouncedReRender();
|
||
|
}
|
||
|
} else {
|
||
|
if (this.$parent.$ready) {
|
||
|
this.$parent.debouncedReRender();
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
|
||
|
watch: {
|
||
|
label(newVal) {
|
||
|
if (this.columnConfig) {
|
||
|
this.columnConfig.label = newVal;
|
||
|
}
|
||
|
},
|
||
|
|
||
|
property(newVal) {
|
||
|
if (this.columnConfig) {
|
||
|
this.columnConfig.property = newVal;
|
||
|
}
|
||
|
}
|
||
|
},
|
||
|
|
||
|
mounted() {
|
||
|
let parent = this.$parent;
|
||
|
let columnConfig = this.columnConfig;
|
||
|
let columnIndex;
|
||
|
|
||
|
if (!this.isChildColumn) {
|
||
|
columnIndex = [].indexOf.call(parent.$refs.hiddenColumns.children, this.$el);
|
||
|
} else {
|
||
|
columnIndex = [].indexOf.call(parent.$el.children, this.$el);
|
||
|
}
|
||
|
|
||
|
parent.columns.splice(columnIndex, 0, columnConfig);
|
||
|
|
||
|
if (this.isChildColumn) {
|
||
|
parent.columnConfig.columns = parent.columns;
|
||
|
|
||
|
if (parent.$parent.$ready) {
|
||
|
parent.$parent.debouncedReRender();
|
||
|
}
|
||
|
} else {
|
||
|
if (parent.$ready) {
|
||
|
parent.debouncedReRender();
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
};
|