Skip to content

Commit 7dbfe6b

Browse files
committed
feat(VDataTable): highlight filter matches
1 parent c00184b commit 7dbfe6b

File tree

6 files changed

+17
-4
lines changed

6 files changed

+17
-4
lines changed

packages/vuetify/src/components/VDataTable/VDataTable.sass

+3
Original file line numberDiff line numberDiff line change
@@ -164,3 +164,6 @@
164164

165165
&-active
166166
color: $data-table-header-mobile-chip-icon-color-active
167+
168+
.v-data-table__mask
169+
background: rgb(var(--v-theme-on-surface-variant))

packages/vuetify/src/components/VDataTable/VDataTable.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ export const VDataTable = genericComponent<new <T extends readonly any[], V>(
147147
const { items } = useDataTableItems(props, columns)
148148

149149
const search = toRef(props, 'search')
150-
const { filteredItems } = useFilter(props, items, search, {
150+
const { filteredItems, getMatches } = useFilter(props, items, search, {
151151
transform: item => item.columns,
152152
customKeyFilter: filterFunctions,
153153
})
@@ -262,6 +262,7 @@ export const VDataTable = genericComponent<new <T extends readonly any[], V>(
262262
{ ...attrs }
263263
{ ...dataTableRowsProps }
264264
items={ paginatedItems.value }
265+
getMatches={ getMatches }
265266
v-slots={ slots }
266267
/>
267268
)}

packages/vuetify/src/components/VDataTable/VDataTableRow.tsx

+7-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import { useHeaders } from './composables/headers'
99
import { useSelection } from './composables/select'
1010
import { useSort } from './composables/sort'
1111
import { makeDisplayProps, useDisplay } from '@/composables/display'
12+
import { highlightResult } from '@/composables/filter'
1213

1314
// Utilities
1415
import { toDisplayString, withModifiers } from 'vue'
@@ -34,6 +35,7 @@ export const makeVDataTableRowProps = propsFactory({
3435
index: Number,
3536
item: Object as PropType<DataTableItem>,
3637
cellProps: [Object, Function] as PropType<CellProps<any>>,
38+
getMatches: Function,
3739
onClick: EventProp<[MouseEvent]>(),
3840
onContextmenu: EventProp<[MouseEvent]>(),
3941
onDblclick: EventProp<[MouseEvent]>(),
@@ -159,7 +161,11 @@ export const VDataTableRow = genericComponent<new <T>(
159161
)
160162
}
161163

162-
const displayValue = toDisplayString(slotProps.value)
164+
const displayValue = highlightResult(
165+
'v-data-table',
166+
toDisplayString(slotProps.value),
167+
props.getMatches!(item)?.[column.key!]
168+
)
163169

164170
return !mobile.value ? displayValue : (
165171
<>

packages/vuetify/src/components/VDataTable/VDataTableRows.tsx

+2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ export const makeVDataTableRowsProps = propsFactory({
4747
},
4848
rowProps: [Object, Function] as PropType<RowProps<any>>,
4949
cellProps: [Object, Function] as PropType<CellProps<any>>,
50+
getMatches: Function,
5051

5152
...makeDisplayProps(),
5253
}, 'VDataTableRows')
@@ -164,6 +165,7 @@ export const VDataTableRows = genericComponent<new <T>(
164165
{ slots.item ? slots.item(itemSlotProps) : (
165166
<VDataTableRow
166167
{ ...itemSlotProps.props }
168+
getMatches={ props.getMatches }
167169
v-slots={ slots }
168170
/>
169171
)}

packages/vuetify/src/components/VDataTable/VDataTableVirtual.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ export const VDataTableVirtual = genericComponent<new <T extends readonly any[],
104104
const { items } = useDataTableItems(props, columns)
105105

106106
const search = toRef(props, 'search')
107-
const { filteredItems } = useFilter(props, items, search, {
107+
const { filteredItems, getMatches } = useFilter(props, items, search, {
108108
transform: item => item.columns,
109109
customKeyFilter: filterFunctions,
110110
})
@@ -231,6 +231,7 @@ export const VDataTableVirtual = genericComponent<new <T extends readonly any[],
231231
{ ...attrs }
232232
{ ...dataTableRowsProps }
233233
items={ displayItems.value }
234+
getMatches={ getMatches }
234235
>
235236
{{
236237
...slots,

packages/vuetify/src/composables/filter.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ export function useFilter <T extends InternalItem> (
160160
customKeyFilter?: MaybeRef<FilterKeyFunctions | undefined>
161161
}
162162
) {
163-
const filteredItems= shallowRef<T[]>([])
163+
const filteredItems = shallowRef<T[]>([])
164164
const filteredMatches = shallowRef(new Map<unknown, Record<string, FilterMatchArrayMultiple | undefined>>())
165165
const transformedItems = computed(() => (
166166
options?.transform

0 commit comments

Comments
 (0)