-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathutils.ts
More file actions
208 lines (183 loc) · 7.07 KB
/
utils.ts
File metadata and controls
208 lines (183 loc) · 7.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
/*
* Copyright (c) 2024. Devtron Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { SortingOrder } from '@Common/Constants'
import { showError } from '@Common/Helper'
import { isNullOrUndefined } from '@Shared/Helpers'
import {
LOCAL_STORAGE_EXISTS,
LOCAL_STORAGE_KEY_FOR_VISIBLE_COLUMNS,
SEARCH_SORT_CHANGE_DEBOUNCE_TIME,
} from './constants'
import {
Column,
ConfigurableColumnsConfigType,
ConfigurableColumnsType,
FiltersTypeEnum,
GetFilteringPromiseProps,
RowsType,
TableProps,
UseFiltersReturnType,
} from './types'
export const searchAndSortRows = <
RowData extends unknown,
FilterVariant extends FiltersTypeEnum,
AdditionalProps extends Record<string, any>,
>(
rows: TableProps<RowData, FilterVariant, AdditionalProps>['rows'],
filter: TableProps<RowData, FilterVariant, AdditionalProps>['filter'],
filterData: UseFiltersReturnType,
additionalProps: AdditionalProps,
comparator?: Column<RowData, FilterVariant, AdditionalProps>['comparator'],
): Awaited<ReturnType<TableProps<RowData>['getRows']>> => {
const { sortBy, sortOrder } = filterData ?? {}
const filteredRows = filter ? rows.filter((row) => filter(row, filterData, additionalProps)) : rows
return {
rows:
comparator && sortBy
? filteredRows.sort(
(rowA, rowB) =>
(sortOrder === SortingOrder.ASC ? 1 : -1) * comparator(rowA.data[sortBy], rowB.data[sortBy]),
)
: filteredRows,
totalRows: filteredRows.length,
}
}
export const getVisibleColumnsFromLocalStorage = <
RowData extends unknown,
FilterVariant extends FiltersTypeEnum,
AdditionalProps extends Record<string, any>,
>({
allColumns,
id,
}: Pick<ConfigurableColumnsType<RowData, FilterVariant, AdditionalProps>, 'allColumns'> &
Pick<TableProps<RowData, FilterVariant, AdditionalProps>, 'id'>) => {
if (!LOCAL_STORAGE_EXISTS) {
// NOTE: show all headers by default
return allColumns
}
try {
const configurableColumnsConfig: ConfigurableColumnsConfigType<RowData, FilterVariant, AdditionalProps> =
JSON.parse(localStorage.getItem(LOCAL_STORAGE_KEY_FOR_VISIBLE_COLUMNS))
if (!configurableColumnsConfig?.[id]) {
throw new Error()
}
const visibleColumns = configurableColumnsConfig[id]
if (
!Array.isArray(visibleColumns) ||
visibleColumns.some((column) => !column || isNullOrUndefined(column.field))
) {
throw new Error()
}
const visibleColumnsFieldSet = new Set(visibleColumns.map((column) => column.field))
return allColumns.filter((column) => visibleColumnsFieldSet.has(column.field))
} catch {
// NOTE: show all headers by default
return allColumns
}
}
export const setVisibleColumnsToLocalStorage = <
RowData extends unknown,
FilterVariant extends FiltersTypeEnum,
AdditionalProps extends Record<string, any>,
>({
id,
visibleColumns,
}: Pick<ConfigurableColumnsType<RowData, FilterVariant, AdditionalProps>, 'visibleColumns'> &
Pick<TableProps<RowData, FilterVariant, AdditionalProps>, 'id'>) => {
if (!LOCAL_STORAGE_EXISTS || !Array.isArray(visibleColumns)) {
return
}
try {
const configurableColumnsConfig: ConfigurableColumnsConfigType<RowData, FilterVariant, AdditionalProps> =
JSON.parse(localStorage.getItem(LOCAL_STORAGE_KEY_FOR_VISIBLE_COLUMNS)) ?? {}
localStorage.setItem(
LOCAL_STORAGE_KEY_FOR_VISIBLE_COLUMNS,
JSON.stringify({ ...configurableColumnsConfig, [id]: visibleColumns }),
)
} catch {
localStorage.removeItem(LOCAL_STORAGE_KEY_FOR_VISIBLE_COLUMNS)
}
}
export const getVisibleColumns = <
RowData extends unknown,
FilterVariant extends FiltersTypeEnum,
AdditionalProps extends Record<string, any>,
>({
areColumnsConfigurable,
columns,
id,
}: Pick<TableProps<RowData, FilterVariant, AdditionalProps>, 'areColumnsConfigurable' | 'columns' | 'id'>) =>
areColumnsConfigurable ? getVisibleColumnsFromLocalStorage({ allColumns: columns, id }) : columns
export const getFilteringPromise = <RowData extends unknown>({
searchSortTimeoutRef,
callback,
}: GetFilteringPromiseProps<RowData>) =>
new Promise<RowsType<RowData>>((resolve, reject) => {
if (searchSortTimeoutRef.current !== -1) {
clearTimeout(searchSortTimeoutRef.current)
}
// eslint-disable-next-line no-param-reassign
searchSortTimeoutRef.current = setTimeout(async () => {
try {
resolve(await callback())
} catch (error) {
showError(error)
reject(error)
}
// eslint-disable-next-line no-param-reassign
searchSortTimeoutRef.current = -1
}, SEARCH_SORT_CHANGE_DEBOUNCE_TIME)
})
export const getStickyColumnConfig = (gridTemplateColumns: string, columnIndex: number) => ({
className: `dc__position-sticky dc__zi-1 generic-table__cell--sticky`,
// NOTE: container has a padding left of 20px and the gap between columns is 16px
// so we want each sticky column to stick to the left of the previous column
left: `${
Number(
gridTemplateColumns
.split(' ')
.slice(0, columnIndex)
.reduce((acc, num) => acc + Number(num.split('px')[0]), 0) ?? 1,
) +
20 +
16 * columnIndex
}px`,
})
export const scrollToShowActiveElementIfNeeded = (
activeElement: HTMLDivElement,
parent: HTMLDivElement,
topMargin: number,
) => {
if (!activeElement || !parent) {
return
}
// NOTE: we can't use scrollIntoView since that will also scroll it vertically
// therefore we need to conditionally scroll and that too in the horizontal direction only
const { bottom, top } = activeElement.getBoundingClientRect()
const { bottom: parentBottom, top: parentTop } = parent.getBoundingClientRect()
let { scrollTop } = parent
// NOTE: please look into https://developer.mozilla.org/en-US/docs/Web/API/Element/getBoundingClientRect
// for more information what left and right pertain to
if (top < parentTop) {
// eslint-disable-next-line no-param-reassign
scrollTop += top - parentTop - topMargin
}
if (bottom > parentBottom) {
// eslint-disable-next-line no-param-reassign
scrollTop += bottom - parentBottom
}
parent.scrollTo({ top: scrollTop, behavior: 'auto' })
}