|
|
import formatDate from "date-fns/format"; |
|
|
import { byString } from "./"; |
|
|
|
|
|
export default class DataManager { |
|
|
applyFilters = false; |
|
|
applySearch = false; |
|
|
applySort = false; |
|
|
currentPage = 0; |
|
|
detailPanelType = "multiple"; |
|
|
lastDetailPanelRow = undefined; |
|
|
lastEditingRow = undefined; |
|
|
orderBy = -1; |
|
|
orderDirection = ""; |
|
|
pageSize = 5; |
|
|
paging = true; |
|
|
parentFunc = null; |
|
|
searchText = ""; |
|
|
selectedCount = 0; |
|
|
treefiedDataLength = 0; |
|
|
treeDataMaxLevel = 0; |
|
|
groupedDataLength = 0; |
|
|
defaultExpanded = false; |
|
|
bulkEditOpen = false; |
|
|
bulkEditChangedRows = {}; |
|
|
|
|
|
data = []; |
|
|
columns = []; |
|
|
|
|
|
filteredData = []; |
|
|
searchedData = []; |
|
|
groupedData = []; |
|
|
treefiedData = []; |
|
|
sortedData = []; |
|
|
pagedData = []; |
|
|
renderData = []; |
|
|
|
|
|
filtered = false; |
|
|
searched = false; |
|
|
grouped = false; |
|
|
treefied = false; |
|
|
sorted = false; |
|
|
paged = false; |
|
|
|
|
|
rootGroupsIndex = {}; |
|
|
|
|
|
constructor() {} |
|
|
|
|
|
setData(data) { |
|
|
this.selectedCount = 0; |
|
|
|
|
|
this.data = data.map((row, index) => { |
|
|
row.tableData = { ...row.tableData, id: index }; |
|
|
if (row.tableData.checked) { |
|
|
this.selectedCount++; |
|
|
} |
|
|
return row; |
|
|
}); |
|
|
|
|
|
this.filtered = false; |
|
|
} |
|
|
|
|
|
setColumns(columns) { |
|
|
const undefinedWidthColumns = columns.filter((c) => |
|
|
c.width === undefined && c.columnDef |
|
|
? c.columnDef.tableData.width === undefined |
|
|
: true && !c.hidden |
|
|
); |
|
|
let usedWidth = ["0px"]; |
|
|
|
|
|
this.columns = columns.map((columnDef, index) => { |
|
|
columnDef.tableData = { |
|
|
columnOrder: index, |
|
|
filterValue: columnDef.defaultFilter, |
|
|
groupOrder: columnDef.defaultGroupOrder, |
|
|
groupSort: columnDef.defaultGroupSort || "asc", |
|
|
width: |
|
|
typeof columnDef.width === "number" |
|
|
? columnDef.width + "px" |
|
|
: columnDef.width, |
|
|
initialWidth: |
|
|
typeof columnDef.width === "number" |
|
|
? columnDef.width + "px" |
|
|
: columnDef.width, |
|
|
additionalWidth: 0, |
|
|
...columnDef.tableData, |
|
|
id: index, |
|
|
}; |
|
|
|
|
|
if (columnDef.tableData.initialWidth !== undefined) { |
|
|
usedWidth.push(columnDef.tableData.initialWidth); |
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return columnDef; |
|
|
}); |
|
|
|
|
|
usedWidth = "(" + usedWidth.join(" + ") + ")"; |
|
|
undefinedWidthColumns.forEach((columnDef) => { |
|
|
columnDef.tableData.width = `calc((100% - ${usedWidth}) / ${undefinedWidthColumns.length})`; |
|
|
|
|
|
}); |
|
|
} |
|
|
|
|
|
setDefaultExpanded(expanded) { |
|
|
this.defaultExpanded = expanded; |
|
|
} |
|
|
|
|
|
changeApplySearch(applySearch) { |
|
|
this.applySearch = applySearch; |
|
|
this.searched = false; |
|
|
} |
|
|
|
|
|
changeApplyFilters(applyFilters) { |
|
|
this.applyFilters = applyFilters; |
|
|
this.filtered = false; |
|
|
} |
|
|
|
|
|
changeApplySort(applySort) { |
|
|
this.applySort = applySort; |
|
|
this.sorted = false; |
|
|
} |
|
|
|
|
|
changePaging(paging) { |
|
|
this.paging = paging; |
|
|
this.paged = false; |
|
|
} |
|
|
|
|
|
changeCurrentPage(currentPage) { |
|
|
this.currentPage = currentPage; |
|
|
this.paged = false; |
|
|
} |
|
|
|
|
|
changePageSize(pageSize) { |
|
|
this.pageSize = pageSize; |
|
|
this.paged = false; |
|
|
} |
|
|
|
|
|
changeParentFunc(parentFunc) { |
|
|
this.parentFunc = parentFunc; |
|
|
} |
|
|
|
|
|
changeFilterValue(columnId, value) { |
|
|
this.columns[columnId].tableData.filterValue = value; |
|
|
this.filtered = false; |
|
|
} |
|
|
|
|
|
changeRowSelected(checked, path) { |
|
|
const rowData = this.findDataByPath(this.sortedData, path); |
|
|
rowData.tableData.checked = checked; |
|
|
this.selectedCount = this.selectedCount + (checked ? 1 : -1); |
|
|
|
|
|
const checkChildRows = (rowData) => { |
|
|
if (rowData.tableData.childRows) { |
|
|
rowData.tableData.childRows.forEach((childRow) => { |
|
|
if (childRow.tableData.checked !== checked) { |
|
|
childRow.tableData.checked = checked; |
|
|
this.selectedCount = this.selectedCount + (checked ? 1 : -1); |
|
|
} |
|
|
checkChildRows(childRow); |
|
|
}); |
|
|
} |
|
|
}; |
|
|
|
|
|
checkChildRows(rowData); |
|
|
|
|
|
this.filtered = false; |
|
|
} |
|
|
|
|
|
changeDetailPanelVisibility(path, render) { |
|
|
const rowData = this.findDataByPath(this.sortedData, path); |
|
|
|
|
|
if ( |
|
|
(rowData.tableData.showDetailPanel || "").toString() === render.toString() |
|
|
) { |
|
|
rowData.tableData.showDetailPanel = undefined; |
|
|
} else { |
|
|
rowData.tableData.showDetailPanel = render; |
|
|
} |
|
|
|
|
|
if ( |
|
|
this.detailPanelType === "single" && |
|
|
this.lastDetailPanelRow && |
|
|
this.lastDetailPanelRow != rowData |
|
|
) { |
|
|
this.lastDetailPanelRow.tableData.showDetailPanel = undefined; |
|
|
} |
|
|
|
|
|
this.lastDetailPanelRow = rowData; |
|
|
} |
|
|
|
|
|
changeGroupExpand(path) { |
|
|
const rowData = this.findDataByPath(this.sortedData, path); |
|
|
rowData.isExpanded = !rowData.isExpanded; |
|
|
} |
|
|
|
|
|
changeSearchText(searchText) { |
|
|
this.searchText = searchText; |
|
|
this.searched = false; |
|
|
this.currentPage = 0; |
|
|
} |
|
|
|
|
|
changeRowEditing(rowData, mode) { |
|
|
if (rowData) { |
|
|
rowData.tableData.editing = mode; |
|
|
|
|
|
if (this.lastEditingRow && this.lastEditingRow != rowData) { |
|
|
this.lastEditingRow.tableData.editing = undefined; |
|
|
} |
|
|
|
|
|
if (mode) { |
|
|
this.lastEditingRow = rowData; |
|
|
} else { |
|
|
this.lastEditingRow = undefined; |
|
|
} |
|
|
} else if (this.lastEditingRow) { |
|
|
this.lastEditingRow.tableData.editing = undefined; |
|
|
this.lastEditingRow = undefined; |
|
|
} |
|
|
} |
|
|
|
|
|
changeBulkEditOpen(bulkEditOpen) { |
|
|
this.bulkEditOpen = bulkEditOpen; |
|
|
} |
|
|
|
|
|
changeAllSelected(checked) { |
|
|
let selectedCount = 0; |
|
|
if (this.isDataType("group")) { |
|
|
const setCheck = (data) => { |
|
|
data.forEach((element) => { |
|
|
if (element.groups.length > 0) { |
|
|
setCheck(element.groups); |
|
|
} else { |
|
|
element.data.forEach((d) => { |
|
|
d.tableData.checked = d.tableData.disabled ? false : checked; |
|
|
selectedCount++; |
|
|
}); |
|
|
} |
|
|
}); |
|
|
}; |
|
|
|
|
|
setCheck(this.groupedData); |
|
|
} else { |
|
|
this.searchedData.map((row) => { |
|
|
row.tableData.checked = row.tableData.disabled ? false : checked; |
|
|
return row; |
|
|
}); |
|
|
selectedCount = this.searchedData.length; |
|
|
} |
|
|
|
|
|
this.selectedCount = checked ? selectedCount : 0; |
|
|
} |
|
|
|
|
|
changeOrder(orderBy, orderDirection) { |
|
|
this.orderBy = orderBy; |
|
|
this.orderDirection = orderDirection; |
|
|
this.currentPage = 0; |
|
|
|
|
|
this.sorted = false; |
|
|
} |
|
|
|
|
|
changeGroupOrder(columnId) { |
|
|
const column = this.columns.find((c) => c.tableData.id === columnId); |
|
|
|
|
|
if (column.tableData.groupSort === "asc") { |
|
|
column.tableData.groupSort = "desc"; |
|
|
} else { |
|
|
column.tableData.groupSort = "asc"; |
|
|
} |
|
|
|
|
|
this.sorted = false; |
|
|
} |
|
|
|
|
|
changeColumnHidden(column, hidden) { |
|
|
column.hidden = hidden; |
|
|
column.hiddenByColumnsButton = hidden; |
|
|
} |
|
|
|
|
|
changeTreeExpand(path) { |
|
|
const rowData = this.findDataByPath(this.sortedData, path); |
|
|
rowData.tableData.isTreeExpanded = !rowData.tableData.isTreeExpanded; |
|
|
} |
|
|
|
|
|
changeDetailPanelType(type) { |
|
|
this.detailPanelType = type; |
|
|
} |
|
|
|
|
|
changeByDrag(result) { |
|
|
let start = 0; |
|
|
|
|
|
let groups = this.columns |
|
|
.filter((col) => col.tableData.groupOrder > -1) |
|
|
.sort( |
|
|
(col1, col2) => col1.tableData.groupOrder - col2.tableData.groupOrder |
|
|
); |
|
|
|
|
|
if ( |
|
|
result.destination.droppableId === "groups" && |
|
|
result.source.droppableId === "groups" |
|
|
) { |
|
|
start = Math.min(result.destination.index, result.source.index); |
|
|
const end = Math.max(result.destination.index, result.source.index); |
|
|
|
|
|
groups = groups.slice(start, end + 1); |
|
|
|
|
|
if (result.destination.index < result.source.index) { |
|
|
|
|
|
const last = groups.pop(); |
|
|
groups.unshift(last); |
|
|
} else { |
|
|
|
|
|
const last = groups.shift(); |
|
|
groups.push(last); |
|
|
} |
|
|
} else if ( |
|
|
result.destination.droppableId === "groups" && |
|
|
result.source.droppableId === "headers" |
|
|
) { |
|
|
const newGroup = this.columns.find( |
|
|
(c) => c.tableData.id == result.draggableId |
|
|
); |
|
|
|
|
|
if (newGroup.grouping === false || !newGroup.field) { |
|
|
return; |
|
|
} |
|
|
|
|
|
groups.splice(result.destination.index, 0, newGroup); |
|
|
} else if ( |
|
|
result.destination.droppableId === "headers" && |
|
|
result.source.droppableId === "groups" |
|
|
) { |
|
|
const removeGroup = this.columns.find( |
|
|
(c) => c.tableData.id == result.draggableId |
|
|
); |
|
|
removeGroup.tableData.groupOrder = undefined; |
|
|
groups.splice(result.source.index, 1); |
|
|
} else if ( |
|
|
result.destination.droppableId === "headers" && |
|
|
result.source.droppableId === "headers" |
|
|
) { |
|
|
start = Math.min(result.destination.index, result.source.index); |
|
|
const end = Math.max(result.destination.index, result.source.index); |
|
|
|
|
|
|
|
|
const sorted = this.columns |
|
|
.sort((a, b) => a.tableData.columnOrder - b.tableData.columnOrder) |
|
|
.filter((column) => column.tableData.groupOrder === undefined); |
|
|
let numHiddenBeforeStart = 0; |
|
|
let numVisibleBeforeStart = 0; |
|
|
for ( |
|
|
let i = 0; |
|
|
i < sorted.length && numVisibleBeforeStart <= start; |
|
|
i++ |
|
|
) { |
|
|
if (sorted[i].hidden) { |
|
|
numHiddenBeforeStart++; |
|
|
} else { |
|
|
numVisibleBeforeStart++; |
|
|
} |
|
|
} |
|
|
const effectiveStart = start + numHiddenBeforeStart; |
|
|
|
|
|
let effectiveEnd = effectiveStart; |
|
|
for ( |
|
|
let numVisibleInRange = 0; |
|
|
numVisibleInRange < end - start && effectiveEnd < sorted.length; |
|
|
effectiveEnd++ |
|
|
) { |
|
|
if (!sorted[effectiveEnd].hidden) { |
|
|
numVisibleInRange++; |
|
|
} |
|
|
} |
|
|
const colsToMov = sorted.slice(effectiveStart, effectiveEnd + 1); |
|
|
|
|
|
if (result.destination.index < result.source.index) { |
|
|
|
|
|
const last = colsToMov.pop(); |
|
|
colsToMov.unshift(last); |
|
|
} else { |
|
|
|
|
|
const last = colsToMov.shift(); |
|
|
colsToMov.push(last); |
|
|
} |
|
|
|
|
|
for (let i = 0; i < colsToMov.length; i++) { |
|
|
colsToMov[i].tableData.columnOrder = effectiveStart + i; |
|
|
} |
|
|
|
|
|
return; |
|
|
} else { |
|
|
return; |
|
|
} |
|
|
|
|
|
for (let i = 0; i < groups.length; i++) { |
|
|
groups[i].tableData.groupOrder = start + i; |
|
|
} |
|
|
|
|
|
this.sorted = this.grouped = false; |
|
|
} |
|
|
|
|
|
startCellEditable = (rowData, columnDef) => { |
|
|
rowData.tableData.editCellList = [ |
|
|
...(rowData.tableData.editCellList || []), |
|
|
columnDef, |
|
|
]; |
|
|
}; |
|
|
|
|
|
finishCellEditable = (rowData, columnDef) => { |
|
|
if (rowData.tableData.editCellList) { |
|
|
var index = rowData.tableData.editCellList.findIndex( |
|
|
(c) => c.tableData.id === columnDef.tableData.id |
|
|
); |
|
|
if (index !== -1) { |
|
|
rowData.tableData.editCellList.splice(index, 1); |
|
|
} |
|
|
} |
|
|
}; |
|
|
|
|
|
clearBulkEditChangedRows = () => { |
|
|
this.bulkEditChangedRows = {}; |
|
|
}; |
|
|
|
|
|
onBulkEditRowChanged = (oldData, newData) => { |
|
|
this.bulkEditChangedRows[oldData.tableData.id] = { |
|
|
oldData, |
|
|
newData, |
|
|
}; |
|
|
}; |
|
|
|
|
|
onColumnResized(id, additionalWidth) { |
|
|
const column = this.columns.find((c) => c.tableData.id === id); |
|
|
if (!column) return; |
|
|
|
|
|
const nextColumn = this.columns.find((c) => c.tableData.id === id + 1); |
|
|
if (!nextColumn) return; |
|
|
|
|
|
column.tableData.additionalWidth = additionalWidth; |
|
|
column.tableData.width = `calc(${column.tableData.initialWidth} + ${column.tableData.additionalWidth}px)`; |
|
|
} |
|
|
|
|
|
expandTreeForNodes = (data) => { |
|
|
data.forEach((row) => { |
|
|
let currentRow = row; |
|
|
while (this.parentFunc(currentRow, this.data)) { |
|
|
let parent = this.parentFunc(currentRow, this.data); |
|
|
if (parent) { |
|
|
parent.tableData.isTreeExpanded = true; |
|
|
} |
|
|
currentRow = parent; |
|
|
} |
|
|
}); |
|
|
}; |
|
|
|
|
|
findDataByPath = (renderData, path) => { |
|
|
if (this.isDataType("tree")) { |
|
|
const node = path.reduce( |
|
|
(result, current) => { |
|
|
return ( |
|
|
result && |
|
|
result.tableData && |
|
|
result.tableData.childRows && |
|
|
result.tableData.childRows[current] |
|
|
); |
|
|
}, |
|
|
{ tableData: { childRows: renderData } } |
|
|
); |
|
|
|
|
|
return node; |
|
|
} else { |
|
|
const data = { groups: renderData }; |
|
|
|
|
|
const node = path.reduce((result, current) => { |
|
|
if (result.groups.length > 0) { |
|
|
return result.groups[current]; |
|
|
} else if (result.data) { |
|
|
return result.data[current]; |
|
|
} else { |
|
|
return undefined; |
|
|
} |
|
|
}, data); |
|
|
return node; |
|
|
} |
|
|
}; |
|
|
|
|
|
findGroupByGroupPath(renderData, path) { |
|
|
const data = { groups: renderData, groupsIndex: this.rootGroupsIndex }; |
|
|
|
|
|
const node = path.reduce((result, current) => { |
|
|
if (!result) { |
|
|
return undefined; |
|
|
} |
|
|
|
|
|
if (result.groupsIndex[current] !== undefined) { |
|
|
return result.groups[result.groupsIndex[current]]; |
|
|
} |
|
|
return undefined; |
|
|
|
|
|
|
|
|
}, data); |
|
|
return node; |
|
|
} |
|
|
|
|
|
getFieldValue = (rowData, columnDef, lookup = true) => { |
|
|
let value = |
|
|
typeof rowData[columnDef.field] !== "undefined" |
|
|
? rowData[columnDef.field] |
|
|
: byString(rowData, columnDef.field); |
|
|
if (columnDef.lookup && lookup) { |
|
|
value = columnDef.lookup[value]; |
|
|
} |
|
|
|
|
|
return value; |
|
|
}; |
|
|
|
|
|
isDataType(type) { |
|
|
let dataType = "normal"; |
|
|
|
|
|
if (this.parentFunc) { |
|
|
dataType = "tree"; |
|
|
} else if (this.columns.find((a) => a.tableData.groupOrder > -1)) { |
|
|
dataType = "group"; |
|
|
} |
|
|
|
|
|
return type === dataType; |
|
|
} |
|
|
|
|
|
sort(a, b, type) { |
|
|
if (type === "numeric") { |
|
|
return a - b; |
|
|
} else { |
|
|
if (a !== b) { |
|
|
|
|
|
if (!a) return -1; |
|
|
if (!b) return 1; |
|
|
} |
|
|
return a < b ? -1 : a > b ? 1 : 0; |
|
|
} |
|
|
} |
|
|
|
|
|
sortList(list) { |
|
|
const columnDef = this.columns.find((_) => _.tableData.id === this.orderBy); |
|
|
let result = list; |
|
|
|
|
|
if (columnDef.customSort) { |
|
|
if (this.orderDirection === "desc") { |
|
|
result = list.sort((a, b) => columnDef.customSort(b, a, "row", "desc")); |
|
|
} else { |
|
|
result = list.sort((a, b) => columnDef.customSort(a, b, "row")); |
|
|
} |
|
|
} else { |
|
|
result = list.sort( |
|
|
this.orderDirection === "desc" |
|
|
? (a, b) => |
|
|
this.sort( |
|
|
this.getFieldValue(b, columnDef), |
|
|
this.getFieldValue(a, columnDef), |
|
|
columnDef.type |
|
|
) |
|
|
: (a, b) => |
|
|
this.sort( |
|
|
this.getFieldValue(a, columnDef), |
|
|
this.getFieldValue(b, columnDef), |
|
|
columnDef.type |
|
|
) |
|
|
); |
|
|
} |
|
|
|
|
|
return result; |
|
|
} |
|
|
|
|
|
getRenderState = () => { |
|
|
if (this.filtered === false) { |
|
|
this.filterData(); |
|
|
} |
|
|
|
|
|
if (this.searched === false) { |
|
|
this.searchData(); |
|
|
} |
|
|
|
|
|
if (this.grouped === false && this.isDataType("group")) { |
|
|
this.groupData(); |
|
|
} |
|
|
|
|
|
if (this.treefied === false && this.isDataType("tree")) { |
|
|
this.treefyData(); |
|
|
} |
|
|
|
|
|
if (this.sorted === false) { |
|
|
this.sortData(); |
|
|
} |
|
|
|
|
|
if (this.paged === false) { |
|
|
this.pageData(); |
|
|
} |
|
|
|
|
|
return { |
|
|
columns: this.columns, |
|
|
currentPage: this.currentPage, |
|
|
data: this.sortedData, |
|
|
lastEditingRow: this.lastEditingRow, |
|
|
orderBy: this.orderBy, |
|
|
orderDirection: this.orderDirection, |
|
|
originalData: this.data, |
|
|
pageSize: this.pageSize, |
|
|
renderData: this.pagedData, |
|
|
searchText: this.searchText, |
|
|
selectedCount: this.selectedCount, |
|
|
treefiedDataLength: this.treefiedDataLength, |
|
|
treeDataMaxLevel: this.treeDataMaxLevel, |
|
|
groupedDataLength: this.groupedDataLength, |
|
|
}; |
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
filterData = () => { |
|
|
this.searched = this.grouped = this.treefied = this.sorted = this.paged = false; |
|
|
|
|
|
this.filteredData = [...this.data]; |
|
|
|
|
|
if (this.applyFilters) { |
|
|
this.columns |
|
|
.filter((columnDef) => columnDef.tableData.filterValue) |
|
|
.forEach((columnDef) => { |
|
|
const { lookup, type, tableData } = columnDef; |
|
|
if (columnDef.customFilterAndSearch) { |
|
|
this.filteredData = this.filteredData.filter( |
|
|
(row) => |
|
|
!!columnDef.customFilterAndSearch( |
|
|
tableData.filterValue, |
|
|
row, |
|
|
columnDef |
|
|
) |
|
|
); |
|
|
} else { |
|
|
if (lookup) { |
|
|
this.filteredData = this.filteredData.filter((row) => { |
|
|
const value = this.getFieldValue(row, columnDef, false); |
|
|
return ( |
|
|
!tableData.filterValue || |
|
|
tableData.filterValue.length === 0 || |
|
|
tableData.filterValue.indexOf( |
|
|
value !== undefined && value !== null && value.toString() |
|
|
) > -1 |
|
|
); |
|
|
}); |
|
|
} else if (type === "numeric") { |
|
|
this.filteredData = this.filteredData.filter((row) => { |
|
|
const value = this.getFieldValue(row, columnDef); |
|
|
return value + "" === tableData.filterValue; |
|
|
}); |
|
|
} else if (type === "boolean" && tableData.filterValue) { |
|
|
this.filteredData = this.filteredData.filter((row) => { |
|
|
const value = this.getFieldValue(row, columnDef); |
|
|
return ( |
|
|
(value && tableData.filterValue === "checked") || |
|
|
(!value && tableData.filterValue === "unchecked") |
|
|
); |
|
|
}); |
|
|
} else if (["date", "datetime"].includes(type)) { |
|
|
this.filteredData = this.filteredData.filter((row) => { |
|
|
const value = this.getFieldValue(row, columnDef); |
|
|
|
|
|
const currentDate = value ? new Date(value) : null; |
|
|
|
|
|
if (currentDate && currentDate.toString() !== "Invalid Date") { |
|
|
const selectedDate = tableData.filterValue; |
|
|
let currentDateToCompare = ""; |
|
|
let selectedDateToCompare = ""; |
|
|
|
|
|
if (type === "date") { |
|
|
currentDateToCompare = formatDate( |
|
|
currentDate, |
|
|
"MM/dd/yyyy" |
|
|
); |
|
|
selectedDateToCompare = formatDate( |
|
|
selectedDate, |
|
|
"MM/dd/yyyy" |
|
|
); |
|
|
} else if (type === "datetime") { |
|
|
currentDateToCompare = formatDate( |
|
|
currentDate, |
|
|
"MM/dd/yyyy - HH:mm" |
|
|
); |
|
|
selectedDateToCompare = formatDate( |
|
|
selectedDate, |
|
|
"MM/dd/yyyy - HH:mm" |
|
|
); |
|
|
} |
|
|
|
|
|
return currentDateToCompare === selectedDateToCompare; |
|
|
} |
|
|
|
|
|
return true; |
|
|
}); |
|
|
} else if (type === "time") { |
|
|
this.filteredData = this.filteredData.filter((row) => { |
|
|
const value = this.getFieldValue(row, columnDef); |
|
|
const currentHour = value || null; |
|
|
|
|
|
if (currentHour) { |
|
|
const selectedHour = tableData.filterValue; |
|
|
const currentHourToCompare = formatDate( |
|
|
selectedHour, |
|
|
"HH:mm" |
|
|
); |
|
|
|
|
|
return currentHour === currentHourToCompare; |
|
|
} |
|
|
|
|
|
return true; |
|
|
}); |
|
|
} else { |
|
|
this.filteredData = this.filteredData.filter((row) => { |
|
|
const value = this.getFieldValue(row, columnDef); |
|
|
return ( |
|
|
value && |
|
|
value |
|
|
.toString() |
|
|
.toUpperCase() |
|
|
.includes(tableData.filterValue.toUpperCase()) |
|
|
); |
|
|
}); |
|
|
} |
|
|
} |
|
|
}); |
|
|
} |
|
|
|
|
|
this.filtered = true; |
|
|
}; |
|
|
|
|
|
searchData = () => { |
|
|
this.grouped = this.treefied = this.sorted = this.paged = false; |
|
|
|
|
|
this.searchedData = [...this.filteredData]; |
|
|
|
|
|
if (this.searchText && this.applySearch) { |
|
|
const trimmedSearchText = this.searchText.trim(); |
|
|
this.searchedData = this.searchedData.filter((row) => { |
|
|
return this.columns |
|
|
.filter((columnDef) => { |
|
|
return columnDef.searchable === undefined |
|
|
? !columnDef.hidden |
|
|
: columnDef.searchable; |
|
|
}) |
|
|
.some((columnDef) => { |
|
|
if (columnDef.customFilterAndSearch) { |
|
|
return !!columnDef.customFilterAndSearch( |
|
|
trimmedSearchText, |
|
|
row, |
|
|
columnDef |
|
|
); |
|
|
} else if (columnDef.field) { |
|
|
const value = this.getFieldValue(row, columnDef); |
|
|
if (value) { |
|
|
return value |
|
|
.toString() |
|
|
.toUpperCase() |
|
|
.includes(trimmedSearchText.toUpperCase()); |
|
|
} |
|
|
} |
|
|
}); |
|
|
}); |
|
|
} |
|
|
this.searched = true; |
|
|
}; |
|
|
|
|
|
groupData() { |
|
|
this.sorted = this.paged = false; |
|
|
this.groupedDataLength = 0; |
|
|
|
|
|
const tmpData = [...this.searchedData]; |
|
|
|
|
|
const groups = this.columns |
|
|
.filter((col) => col.tableData.groupOrder > -1) |
|
|
.sort( |
|
|
(col1, col2) => col1.tableData.groupOrder - col2.tableData.groupOrder |
|
|
); |
|
|
|
|
|
const subData = tmpData.reduce( |
|
|
(result, currentRow) => { |
|
|
let object = result; |
|
|
object = groups.reduce((o, colDef) => { |
|
|
const value = |
|
|
currentRow[colDef.field] || byString(currentRow, colDef.field); |
|
|
|
|
|
let group; |
|
|
if (o.groupsIndex[value] !== undefined) { |
|
|
group = o.groups[o.groupsIndex[value]]; |
|
|
} |
|
|
|
|
|
if (!group) { |
|
|
const path = [...(o.path || []), value]; |
|
|
let oldGroup = this.findGroupByGroupPath( |
|
|
this.groupedData, |
|
|
path |
|
|
) || { |
|
|
isExpanded: |
|
|
typeof this.defaultExpanded === "boolean" |
|
|
? this.defaultExpanded |
|
|
: false, |
|
|
}; |
|
|
|
|
|
group = { |
|
|
value, |
|
|
groups: [], |
|
|
groupsIndex: {}, |
|
|
data: [], |
|
|
isExpanded: oldGroup.isExpanded, |
|
|
path: path, |
|
|
}; |
|
|
o.groups.push(group); |
|
|
o.groupsIndex[value] = o.groups.length - 1; |
|
|
} |
|
|
return group; |
|
|
}, object); |
|
|
|
|
|
object.data.push(currentRow); |
|
|
this.groupedDataLength++; |
|
|
|
|
|
return result; |
|
|
}, |
|
|
{ groups: [], groupsIndex: {} } |
|
|
); |
|
|
|
|
|
this.groupedData = subData.groups; |
|
|
this.grouped = true; |
|
|
this.rootGroupsIndex = subData.groupsIndex; |
|
|
} |
|
|
|
|
|
treefyData() { |
|
|
this.sorted = this.paged = false; |
|
|
this.data.forEach((a) => (a.tableData.childRows = null)); |
|
|
this.treefiedData = []; |
|
|
this.treefiedDataLength = 0; |
|
|
this.treeDataMaxLevel = 0; |
|
|
|
|
|
|
|
|
if ( |
|
|
this.searchText || |
|
|
this.columns.some((columnDef) => columnDef.tableData.filterValue) |
|
|
) { |
|
|
this.data.forEach((row) => { |
|
|
row.tableData.isTreeExpanded = false; |
|
|
}); |
|
|
|
|
|
|
|
|
this.expandTreeForNodes(this.searchedData); |
|
|
} |
|
|
|
|
|
const addRow = (rowData) => { |
|
|
rowData.tableData.markedForTreeRemove = false; |
|
|
let parent = this.parentFunc(rowData, this.data); |
|
|
if (parent) { |
|
|
parent.tableData.childRows = parent.tableData.childRows || []; |
|
|
if (!parent.tableData.childRows.includes(rowData)) { |
|
|
parent.tableData.childRows.push(rowData); |
|
|
this.treefiedDataLength++; |
|
|
} |
|
|
|
|
|
addRow(parent); |
|
|
|
|
|
rowData.tableData.path = [ |
|
|
...parent.tableData.path, |
|
|
parent.tableData.childRows.length - 1, |
|
|
]; |
|
|
this.treeDataMaxLevel = Math.max( |
|
|
this.treeDataMaxLevel, |
|
|
rowData.tableData.path.length |
|
|
); |
|
|
} else { |
|
|
if (!this.treefiedData.includes(rowData)) { |
|
|
this.treefiedData.push(rowData); |
|
|
this.treefiedDataLength++; |
|
|
rowData.tableData.path = [this.treefiedData.length - 1]; |
|
|
} |
|
|
} |
|
|
}; |
|
|
|
|
|
|
|
|
this.data.forEach((rowData) => { |
|
|
addRow(rowData); |
|
|
}); |
|
|
const markForTreeRemove = (rowData) => { |
|
|
let pointer = this.treefiedData; |
|
|
rowData.tableData.path.forEach((pathPart) => { |
|
|
if (pointer.tableData && pointer.tableData.childRows) { |
|
|
pointer = pointer.tableData.childRows; |
|
|
} |
|
|
pointer = pointer[pathPart]; |
|
|
}); |
|
|
if (pointer.tableData) { |
|
|
pointer.tableData.markedForTreeRemove = true; |
|
|
} |
|
|
}; |
|
|
|
|
|
const traverseChildrenAndUnmark = (rowData) => { |
|
|
if (rowData.tableData.childRows) { |
|
|
rowData.tableData.childRows.forEach((row) => { |
|
|
traverseChildrenAndUnmark(row); |
|
|
}); |
|
|
} |
|
|
rowData.tableData.markedForTreeRemove = false; |
|
|
}; |
|
|
|
|
|
|
|
|
this.data.forEach((rowData) => { |
|
|
if ( |
|
|
!this.searchText && |
|
|
!this.columns.some((columnDef) => columnDef.tableData.filterValue) |
|
|
) { |
|
|
if (rowData.tableData.isTreeExpanded === undefined) { |
|
|
var isExpanded = |
|
|
typeof this.defaultExpanded === "boolean" |
|
|
? this.defaultExpanded |
|
|
: this.defaultExpanded(rowData); |
|
|
rowData.tableData.isTreeExpanded = isExpanded; |
|
|
} |
|
|
} |
|
|
const hasSearchMatchedChildren = rowData.tableData.isTreeExpanded; |
|
|
|
|
|
if (!hasSearchMatchedChildren && this.searchedData.indexOf(rowData) < 0) { |
|
|
markForTreeRemove(rowData); |
|
|
} |
|
|
}); |
|
|
|
|
|
|
|
|
this.data.forEach((rowData) => { |
|
|
if (this.searchedData.indexOf(rowData) > -1) { |
|
|
traverseChildrenAndUnmark(rowData); |
|
|
} |
|
|
}); |
|
|
|
|
|
const traverseTreeAndDeleteMarked = (rowDataArray) => { |
|
|
for (var i = rowDataArray.length - 1; i >= 0; i--) { |
|
|
const item = rowDataArray[i]; |
|
|
if (item.tableData.childRows) { |
|
|
traverseTreeAndDeleteMarked(item.tableData.childRows); |
|
|
} |
|
|
if (item.tableData.markedForTreeRemove) rowDataArray.splice(i, 1); |
|
|
} |
|
|
}; |
|
|
|
|
|
traverseTreeAndDeleteMarked(this.treefiedData); |
|
|
this.treefied = true; |
|
|
} |
|
|
|
|
|
sortData() { |
|
|
this.paged = false; |
|
|
|
|
|
if (this.isDataType("group")) { |
|
|
this.sortedData = [...this.groupedData]; |
|
|
|
|
|
const groups = this.columns |
|
|
.filter((col) => col.tableData.groupOrder > -1) |
|
|
.sort( |
|
|
(col1, col2) => col1.tableData.groupOrder - col2.tableData.groupOrder |
|
|
); |
|
|
|
|
|
const sortGroups = (list, columnDef) => { |
|
|
if (columnDef.customSort) { |
|
|
return list.sort( |
|
|
columnDef.tableData.groupSort === "desc" |
|
|
? (a, b) => columnDef.customSort(b.value, a.value, "group") |
|
|
: (a, b) => columnDef.customSort(a.value, b.value, "group") |
|
|
); |
|
|
} else { |
|
|
return list.sort( |
|
|
columnDef.tableData.groupSort === "desc" |
|
|
? (a, b) => this.sort(b.value, a.value, columnDef.type) |
|
|
: (a, b) => this.sort(a.value, b.value, columnDef.type) |
|
|
); |
|
|
} |
|
|
}; |
|
|
|
|
|
this.sortedData = sortGroups(this.sortedData, groups[0]); |
|
|
|
|
|
const sortGroupData = (list, level) => { |
|
|
list.forEach((element) => { |
|
|
if (element.groups.length > 0) { |
|
|
const column = groups[level]; |
|
|
element.groups = sortGroups(element.groups, column); |
|
|
sortGroupData(element.groups, level + 1); |
|
|
} else { |
|
|
if (this.orderBy >= 0 && this.orderDirection) { |
|
|
element.data = this.sortList(element.data); |
|
|
} |
|
|
} |
|
|
}); |
|
|
}; |
|
|
|
|
|
sortGroupData(this.sortedData, 1); |
|
|
} else if (this.isDataType("tree")) { |
|
|
this.sortedData = [...this.treefiedData]; |
|
|
if (this.orderBy != -1) { |
|
|
this.sortedData = this.sortList(this.sortedData); |
|
|
|
|
|
const sortTree = (list) => { |
|
|
list.forEach((item) => { |
|
|
if (item.tableData.childRows) { |
|
|
item.tableData.childRows = this.sortList( |
|
|
item.tableData.childRows |
|
|
); |
|
|
sortTree(item.tableData.childRows); |
|
|
} |
|
|
}); |
|
|
}; |
|
|
|
|
|
sortTree(this.sortedData); |
|
|
} |
|
|
} else if (this.isDataType("normal")) { |
|
|
this.sortedData = [...this.searchedData]; |
|
|
if (this.orderBy != -1 && this.applySort) { |
|
|
this.sortedData = this.sortList(this.sortedData); |
|
|
} |
|
|
} |
|
|
|
|
|
this.sorted = true; |
|
|
} |
|
|
|
|
|
pageData() { |
|
|
this.pagedData = [...this.sortedData]; |
|
|
|
|
|
if (this.paging) { |
|
|
const startIndex = this.currentPage * this.pageSize; |
|
|
const endIndex = startIndex + this.pageSize; |
|
|
|
|
|
this.pagedData = this.pagedData.slice(startIndex, endIndex); |
|
|
} |
|
|
|
|
|
this.paged = true; |
|
|
} |
|
|
} |
|
|
|