想跳过直接看实现?查看这些示例
有 3 个表格功能可以重新排序列,它们按以下顺序发生
TanStack table 中的分组是一个应用于列的功能,允许您基于特定列对表格行进行分类和组织。当您有大量数据并希望根据某些条件将它们分组在一起时,这会很有用。
要使用分组功能,您需要使用分组行模型。此模型负责根据分组状态对行进行分组。
import { getGroupedRowModel } from '@tanstack/react-table'
const table = useReactTable({
// other options...
getGroupedRowModel: getGroupedRowModel(),
})
import { getGroupedRowModel } from '@tanstack/react-table'
const table = useReactTable({
// other options...
getGroupedRowModel: getGroupedRowModel(),
})
当分组状态处于活动状态时,表格会将匹配的行作为 subRows 添加到分组行。分组行将添加到表格行中,索引与第一个匹配行相同。匹配的行将从表格行中删除。为了允许用户展开和折叠分组行,您可以使用展开功能。
import { getGroupedRowModel, getExpandedRowModel} from '@tanstack/react-table'
const table = useReactTable({
// other options...
getGroupedRowModel: getGroupedRowModel(),
getExpandedRowModel: getExpandedRowModel(),
})
import { getGroupedRowModel, getExpandedRowModel} from '@tanstack/react-table'
const table = useReactTable({
// other options...
getGroupedRowModel: getGroupedRowModel(),
getExpandedRowModel: getExpandedRowModel(),
})
分组状态是一个字符串数组,其中每个字符串是要分组的列的 ID。数组中字符串的顺序决定了分组的顺序。例如,如果分组状态是 ['column1', 'column2'],则表格将首先按 column1 分组,然后在每个组内,它将按 column2 分组。您可以使用 setGrouping 函数控制分组状态
table.setGrouping(['column1', 'column2']);
table.setGrouping(['column1', 'column2']);
您还可以使用 resetGrouping 函数将分组状态重置为其初始状态
table.resetGrouping();
table.resetGrouping();
默认情况下,当列被分组时,它会被移动到表格的开头。您可以使用 groupedColumnMode 选项控制此行为。如果将其设置为 'reorder',则分组列将移动到表格的开头。如果将其设置为 'remove',则分组列将从表格中删除。如果将其设置为 false,则分组列将不会移动或删除。
const table = useReactTable({
// other options...
groupedColumnMode: 'reorder',
})
const table = useReactTable({
// other options...
groupedColumnMode: 'reorder',
})
当行被分组时,您可以使用 aggregationFn 选项按列聚合分组行中的数据。这是一个字符串,它是聚合函数的 ID。您可以使用 aggregationFns 选项定义聚合函数。
const column = columnHelper.accessor('key', {
aggregationFn: 'sum',
})
const column = columnHelper.accessor('key', {
aggregationFn: 'sum',
})
在上面的示例中,sum 聚合函数将用于聚合分组行中的数据。默认情况下,数字列将使用 sum 聚合函数,非数字列将使用 count 聚合函数。您可以通过在列定义中指定 aggregationFn 选项来覆盖此行为。
有几个内置的聚合函数可以使用
当行被分组时,您可以使用 aggregationFns 选项聚合分组行中的数据。这是一个记录,其中键是聚合函数的 ID,值是聚合函数本身。然后,您可以在列的 aggregationFn 选项中引用这些聚合函数。
const table = useReactTable({
// other options...
aggregationFns: {
myCustomAggregation: (columnId, leafRows, childRows) => {
// return the aggregated value
},
},
})
const table = useReactTable({
// other options...
aggregationFns: {
myCustomAggregation: (columnId, leafRows, childRows) => {
// return the aggregated value
},
},
})
在上面的示例中,myCustomAggregation 是一个自定义聚合函数,它接受列 ID、叶子行和子行,并返回聚合值。然后,您可以在列的 aggregationFn 选项中使用此聚合函数
const column = columnHelper.accessor('key', {
aggregationFn: 'myCustomAggregation',
})
const column = columnHelper.accessor('key', {
aggregationFn: 'myCustomAggregation',
})
如果您正在进行服务器端分组和聚合,则可以使用 manualGrouping 选项启用手动分组。当此选项设置为 true 时,表格将不会使用 getGroupedRowModel() 自动分组行,而是希望您在将行传递给表格之前手动分组行。
const table = useReactTable({
// other options...
manualGrouping: true,
})
const table = useReactTable({
// other options...
manualGrouping: true,
})
注意:目前还没有很多已知的简单方法可以使用 TanStack Table 进行服务器端分组。您需要进行大量的自定义单元格渲染才能使其工作。
如果您想自己管理分组状态,可以使用 onGroupingChange 选项。此选项是一个函数,当分组状态更改时会被调用。您可以通过 tableOptions.state.grouping 选项将托管状态传递回表格。
const [grouping, setGrouping] = useState<string[]>([])
const table = useReactTable({
// other options...
state: {
grouping: grouping,
},
onGroupingChange: setGrouping
})
const [grouping, setGrouping] = useState<string[]>([])
const table = useReactTable({
// other options...
state: {
grouping: grouping,
},
onGroupingChange: setGrouping
})
您的每周 JavaScript 新闻。每周一免费发送给超过 100,000 名开发者。