Merge pull request #4008 from andrewguy/improve-datatable-performance
Improve datatable performancepull/4295/head
commit
956bf9fce2
|
@ -517,9 +517,15 @@ export default {
|
||||||
|
|
||||||
let data = [...value];
|
let data = [...value];
|
||||||
|
|
||||||
|
let lookupMap = new Map();
|
||||||
|
|
||||||
|
for (let item of data) {
|
||||||
|
lookupMap.set(item, ObjectUtils.resolveFieldData(item, this.d_sortField));
|
||||||
|
}
|
||||||
|
|
||||||
data.sort((data1, data2) => {
|
data.sort((data1, data2) => {
|
||||||
let value1 = ObjectUtils.resolveFieldData(data1, this.d_sortField);
|
let value1 = lookupMap.get(data1);
|
||||||
let value2 = ObjectUtils.resolveFieldData(data2, this.d_sortField);
|
let value2 = lookupMap.get(data2);
|
||||||
|
|
||||||
let result = null;
|
let result = null;
|
||||||
|
|
||||||
|
@ -586,16 +592,39 @@ export default {
|
||||||
|
|
||||||
this.d_multiSortMeta = [...this.d_multiSortMeta];
|
this.d_multiSortMeta = [...this.d_multiSortMeta];
|
||||||
},
|
},
|
||||||
|
getActiveFilters(filters) {
|
||||||
|
const removeEmptyFilters = ([key, value]) => {
|
||||||
|
if (value.constraints) {
|
||||||
|
const filteredConstraints = value.constraints.filter((constraint) => constraint.value !== null);
|
||||||
|
|
||||||
|
if (filteredConstraints.length > 0) {
|
||||||
|
return [key, { ...value, constraints: filteredConstraints }];
|
||||||
|
}
|
||||||
|
} else if (value.value !== null) {
|
||||||
|
return [key, value];
|
||||||
|
}
|
||||||
|
|
||||||
|
return undefined;
|
||||||
|
};
|
||||||
|
|
||||||
|
const filterValidEntries = (entry) => entry !== undefined;
|
||||||
|
|
||||||
|
const entries = Object.entries(filters).map(removeEmptyFilters).filter(filterValidEntries);
|
||||||
|
|
||||||
|
return Object.fromEntries(entries);
|
||||||
|
},
|
||||||
filter(data) {
|
filter(data) {
|
||||||
if (!data) {
|
if (!data) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
let activeFilters = this.getActiveFilters(this.filters);
|
||||||
|
|
||||||
this.clearEditingMetaData();
|
this.clearEditingMetaData();
|
||||||
|
|
||||||
let globalFilterFieldsArray;
|
let globalFilterFieldsArray;
|
||||||
|
|
||||||
if (this.filters['global']) {
|
if (activeFilters['global']) {
|
||||||
globalFilterFieldsArray = this.globalFilterFields || this.columns.map((col) => this.columnProp(col, 'filterField') || this.columnProp(col, 'field'));
|
globalFilterFieldsArray = this.globalFilterFields || this.columns.map((col) => this.columnProp(col, 'filterField') || this.columnProp(col, 'field'));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -606,11 +635,11 @@ export default {
|
||||||
let globalMatch = false;
|
let globalMatch = false;
|
||||||
let localFiltered = false;
|
let localFiltered = false;
|
||||||
|
|
||||||
for (let prop in this.filters) {
|
for (let prop in activeFilters) {
|
||||||
if (Object.prototype.hasOwnProperty.call(this.filters, prop) && prop !== 'global') {
|
if (Object.prototype.hasOwnProperty.call(activeFilters, prop) && prop !== 'global') {
|
||||||
localFiltered = true;
|
localFiltered = true;
|
||||||
let filterField = prop;
|
let filterField = prop;
|
||||||
let filterMeta = this.filters[filterField];
|
let filterMeta = activeFilters[filterField];
|
||||||
|
|
||||||
if (filterMeta.operator) {
|
if (filterMeta.operator) {
|
||||||
for (let filterConstraint of filterMeta.constraints) {
|
for (let filterConstraint of filterMeta.constraints) {
|
||||||
|
@ -630,11 +659,11 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (this.filters['global'] && !globalMatch && globalFilterFieldsArray) {
|
if (localMatch && activeFilters['global'] && !globalMatch && globalFilterFieldsArray) {
|
||||||
for (let j = 0; j < globalFilterFieldsArray.length; j++) {
|
for (let j = 0; j < globalFilterFieldsArray.length; j++) {
|
||||||
let globalFilterField = globalFilterFieldsArray[j];
|
let globalFilterField = globalFilterFieldsArray[j];
|
||||||
|
|
||||||
globalMatch = FilterService.filters[this.filters['global'].matchMode || FilterMatchMode.CONTAINS](ObjectUtils.resolveFieldData(data[i], globalFilterField), this.filters['global'].value, this.filterLocale);
|
globalMatch = FilterService.filters[activeFilters['global'].matchMode || FilterMatchMode.CONTAINS](ObjectUtils.resolveFieldData(data[i], globalFilterField), activeFilters['global'].value, this.filterLocale);
|
||||||
|
|
||||||
if (globalMatch) {
|
if (globalMatch) {
|
||||||
break;
|
break;
|
||||||
|
@ -644,7 +673,7 @@ export default {
|
||||||
|
|
||||||
let matches;
|
let matches;
|
||||||
|
|
||||||
if (this.filters['global']) {
|
if (activeFilters['global']) {
|
||||||
matches = localFiltered ? localFiltered && localMatch && globalMatch : globalMatch;
|
matches = localFiltered ? localFiltered && localMatch && globalMatch : globalMatch;
|
||||||
} else {
|
} else {
|
||||||
matches = localFiltered && localMatch;
|
matches = localFiltered && localMatch;
|
||||||
|
@ -655,7 +684,7 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (filteredValue.length === this.value.length) {
|
if (filteredValue.length === this.value.length || Object.keys(activeFilters).length == 0) {
|
||||||
filteredValue = data;
|
filteredValue = data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue