mirror of https://github.com/ElemeFE/element
Table: not trigger sort-change event when mounted (#17113)
parent
747334f06e
commit
c3a2d417f4
|
@ -68,13 +68,13 @@ Watcher.prototype.mutations = {
|
||||||
},
|
},
|
||||||
|
|
||||||
sort(states, options) {
|
sort(states, options) {
|
||||||
const { prop, order } = options;
|
const { prop, order, init } = options;
|
||||||
if (prop) {
|
if (prop) {
|
||||||
const column = arrayFind(states.columns, column => column.property === prop);
|
const column = arrayFind(states.columns, column => column.property === prop);
|
||||||
if (column) {
|
if (column) {
|
||||||
column.order = order;
|
column.order = order;
|
||||||
this.updateSort(column, prop, order);
|
this.updateSort(column, prop, order);
|
||||||
this.commit('changeSortCondition');
|
this.commit('changeSortCondition', { init });
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -89,7 +89,7 @@ Watcher.prototype.mutations = {
|
||||||
const ingore = { filter: true };
|
const ingore = { filter: true };
|
||||||
this.execQuery(ingore);
|
this.execQuery(ingore);
|
||||||
|
|
||||||
if (!options || !options.silent) {
|
if (!options || !(options.silent || options.init)) {
|
||||||
this.table.$emit('sort-change', {
|
this.table.$emit('sort-change', {
|
||||||
column,
|
column,
|
||||||
prop,
|
prop,
|
||||||
|
|
|
@ -555,6 +555,38 @@ describe('Table', () => {
|
||||||
done();
|
done();
|
||||||
}, DELAY);
|
}, DELAY);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('sort-change', async() => {
|
||||||
|
const vm = createVue({
|
||||||
|
template: `
|
||||||
|
<el-table ref="table" :data="testData" :default-sort = "{prop: 'runtime', order: 'ascending'}">
|
||||||
|
<el-table-column prop="name" />
|
||||||
|
<el-table-column prop="release" />
|
||||||
|
<el-table-column prop="director" />
|
||||||
|
<el-table-column prop="runtime" sortable/>
|
||||||
|
</el-table>
|
||||||
|
`,
|
||||||
|
|
||||||
|
created() {
|
||||||
|
this.testData = getTestData();
|
||||||
|
},
|
||||||
|
|
||||||
|
data() {
|
||||||
|
return { testData: this.testData };
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
const spy = sinon.spy();
|
||||||
|
vm.$refs.table.$on('sort-change', spy);
|
||||||
|
await waitImmediate();
|
||||||
|
expect(spy.notCalled).to.be.true;// not emit when mounted
|
||||||
|
|
||||||
|
const elm = vm.$el.querySelector('.caret-wrapper');
|
||||||
|
elm.click();
|
||||||
|
await waitImmediate();
|
||||||
|
expect(spy.calledOnce).to.be.true;
|
||||||
|
destroyVM(vm);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('column attributes', () => {
|
describe('column attributes', () => {
|
||||||
|
@ -1144,27 +1176,6 @@ describe('Table', () => {
|
||||||
}, DELAY);
|
}, DELAY);
|
||||||
}, DELAY);
|
}, DELAY);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('sort-change', done => {
|
|
||||||
let result;
|
|
||||||
const vm = createTable('sortable="custom"', '', '', '', {
|
|
||||||
methods: {
|
|
||||||
sortChange(...args) {
|
|
||||||
result = args;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}, '@sort-change="sortChange"');
|
|
||||||
setTimeout(_ => {
|
|
||||||
const elm = vm.$el.querySelector('.caret-wrapper');
|
|
||||||
|
|
||||||
elm.click();
|
|
||||||
setTimeout(_ => {
|
|
||||||
expect(result).to.exist;
|
|
||||||
destroyVM(vm);
|
|
||||||
done();
|
|
||||||
}, DELAY);
|
|
||||||
}, DELAY);
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('click sortable column', () => {
|
describe('click sortable column', () => {
|
||||||
|
|
Loading…
Reference in New Issue