mirror of
https://github.com/gosticks/react-table.git
synced 2026-08-19 08:20:30 +00:00
- Fixed an issue where dependency hooks were not being reduced properly, thus the table would rerender unnecessarily - Renamed `toggleRowSelectedAll` to `toggleAllRowsSelected`. Duh... - Added an `indeterminate` boolean prop to the default props for row selection toggle prop getters - Renamed `selectedRowPaths` to `selectedRowIds`, which also no longer contains paths, but row IDs - Grouped or nested row selection actions and state are now derived, instead of tracked in state. - Rows now have a new property called `id`, which existed before and was derived from the `getRowId` option - Rows now also have an `isSomeSelected` prop when using the `useRowSelect` hook, which denotes that at least one subRow is selected (if applicable) - Rows' `path` property has been deprecated in favor of `id` - Expanded state is now tracked with row IDs instead of paths - RowState is now tracked with row IDs instead of paths - `toggleExpandedByPath` has been renamed to `toggleExpandedById`, and thus accepts a row ID now, instead of a row path
311 lines
7.8 KiB
JavaScript
Executable File
311 lines
7.8 KiB
JavaScript
Executable File
import React from 'react'
|
|
|
|
import * as aggregations from '../aggregations'
|
|
import {
|
|
actions,
|
|
makePropGetter,
|
|
defaultGroupByFn,
|
|
getFirstDefined,
|
|
ensurePluginOrder,
|
|
useMountedLayoutEffect,
|
|
useGetLatest,
|
|
} from '../utils'
|
|
import { useConsumeHookGetter } from '../publicUtils'
|
|
|
|
// Actions
|
|
actions.resetGroupBy = 'resetGroupBy'
|
|
actions.toggleGroupBy = 'toggleGroupBy'
|
|
|
|
export const useGroupBy = hooks => {
|
|
hooks.getGroupByToggleProps = [defaultGetGroupByToggleProps]
|
|
hooks.stateReducers.push(reducer)
|
|
hooks.flatColumnsDeps.push((deps, instance) => [
|
|
...deps,
|
|
instance.state.groupBy,
|
|
])
|
|
hooks.flatColumns.push(flatColumns)
|
|
hooks.useInstance.push(useInstance)
|
|
}
|
|
|
|
useGroupBy.pluginName = 'useGroupBy'
|
|
|
|
const defaultGetGroupByToggleProps = (props, instance, header) => [
|
|
props,
|
|
{
|
|
onClick: header.canGroupBy
|
|
? e => {
|
|
e.persist()
|
|
header.toggleGroupBy()
|
|
}
|
|
: undefined,
|
|
style: {
|
|
cursor: header.canGroupBy ? 'pointer' : undefined,
|
|
},
|
|
title: 'Toggle GroupBy',
|
|
},
|
|
]
|
|
|
|
// Reducer
|
|
function reducer(state, action) {
|
|
if (action.type === actions.init) {
|
|
return {
|
|
groupBy: [],
|
|
...state,
|
|
}
|
|
}
|
|
|
|
if (action.type === actions.resetGroupBy) {
|
|
return {
|
|
...state,
|
|
groupBy: [],
|
|
}
|
|
}
|
|
|
|
if (action.type === actions.toggleGroupBy) {
|
|
const { columnId, toggle } = action
|
|
|
|
const resolvedToggle =
|
|
typeof toggle !== 'undefined' ? toggle : !state.groupBy.includes(columnId)
|
|
|
|
if (resolvedToggle) {
|
|
return {
|
|
...state,
|
|
groupBy: [...state.groupBy, columnId],
|
|
}
|
|
}
|
|
|
|
return {
|
|
...state,
|
|
groupBy: state.groupBy.filter(d => d !== columnId),
|
|
}
|
|
}
|
|
}
|
|
|
|
function flatColumns(flatColumns, { state: { groupBy } }) {
|
|
// Sort grouped columns to the start of the column list
|
|
// before the headers are built
|
|
|
|
const groupByColumns = groupBy.map(g => flatColumns.find(col => col.id === g))
|
|
const nonGroupByColumns = flatColumns.filter(col => !groupBy.includes(col.id))
|
|
|
|
// If a groupByBoundary column is found, place the groupBy's after it
|
|
const groupByBoundaryColumnIndex =
|
|
flatColumns.findIndex(column => column.groupByBoundary) + 1
|
|
|
|
return [
|
|
...nonGroupByColumns.slice(0, groupByBoundaryColumnIndex),
|
|
...groupByColumns,
|
|
...nonGroupByColumns.slice(groupByBoundaryColumnIndex),
|
|
]
|
|
}
|
|
|
|
const defaultUserAggregations = {}
|
|
|
|
function useInstance(instance) {
|
|
const {
|
|
data,
|
|
rows,
|
|
flatRows,
|
|
flatColumns,
|
|
flatHeaders,
|
|
groupByFn = defaultGroupByFn,
|
|
manualGroupBy,
|
|
defaultCanGroupBy,
|
|
disableGroupBy,
|
|
aggregations: userAggregations = defaultUserAggregations,
|
|
hooks,
|
|
plugins,
|
|
state: { groupBy },
|
|
dispatch,
|
|
autoResetGroupBy = true,
|
|
manaulGroupBy,
|
|
} = instance
|
|
|
|
ensurePluginOrder(plugins, [], 'useGroupBy', ['useSortBy', 'useExpanded'])
|
|
|
|
const getInstance = useGetLatest(instance)
|
|
|
|
flatColumns.forEach(column => {
|
|
const {
|
|
id,
|
|
accessor,
|
|
defaultGroupBy: defaultColumnGroupBy,
|
|
disableGroupBy: columnDisableGroupBy,
|
|
} = column
|
|
column.isGrouped = groupBy.includes(id)
|
|
column.groupedIndex = groupBy.indexOf(id)
|
|
|
|
column.canGroupBy = accessor
|
|
? getFirstDefined(
|
|
columnDisableGroupBy === true ? false : undefined,
|
|
disableGroupBy === true ? false : undefined,
|
|
true
|
|
)
|
|
: getFirstDefined(defaultColumnGroupBy, defaultCanGroupBy, false)
|
|
|
|
if (column.canGroupBy) {
|
|
column.toggleGroupBy = () => toggleGroupBy(column.id)
|
|
}
|
|
|
|
column.Aggregated = column.Aggregated || column.Cell
|
|
})
|
|
|
|
const toggleGroupBy = (columnId, toggle) => {
|
|
dispatch({ type: actions.toggleGroupBy, columnId, toggle })
|
|
}
|
|
|
|
const getGroupByTogglePropsHooks = useConsumeHookGetter(
|
|
getInstance().hooks,
|
|
'getGroupByToggleProps'
|
|
)
|
|
|
|
flatHeaders.forEach(header => {
|
|
header.getGroupByToggleProps = makePropGetter(
|
|
getGroupByTogglePropsHooks(),
|
|
getInstance(),
|
|
header
|
|
)
|
|
})
|
|
|
|
hooks.prepareRow.push(row => {
|
|
row.cells.forEach(cell => {
|
|
// Grouped cells are in the groupBy and the pivot cell for the row
|
|
cell.isGrouped = cell.column.isGrouped && cell.column.id === row.groupByID
|
|
// Repeated cells are any columns in the groupBy that are not grouped
|
|
cell.isRepeatedValue = !cell.isGrouped && cell.column.isGrouped
|
|
// Aggregated cells are not grouped, not repeated, but still have subRows
|
|
cell.isAggregated =
|
|
!cell.isGrouped && !cell.isRepeatedValue && row.canExpand
|
|
})
|
|
})
|
|
|
|
const [groupedRows, groupedFlatRows] = React.useMemo(() => {
|
|
if (manualGroupBy || !groupBy.length) {
|
|
return [rows, flatRows]
|
|
}
|
|
|
|
// Find the columns that can or are aggregating
|
|
// Uses each column to aggregate rows into a single value
|
|
const aggregateRowsToValues = (rows, isAggregated) => {
|
|
const values = {}
|
|
|
|
flatColumns.forEach(column => {
|
|
// Don't aggregate columns that are in the groupBy
|
|
if (groupBy.includes(column.id)) {
|
|
values[column.id] = rows[0] ? rows[0].values[column.id] : null
|
|
return
|
|
}
|
|
|
|
const columnValues = rows.map(d => d.values[column.id])
|
|
|
|
let aggregator = column.aggregate
|
|
|
|
if (Array.isArray(aggregator)) {
|
|
if (aggregator.length !== 2) {
|
|
console.info({ column })
|
|
throw new Error(
|
|
`React Table: Complex aggregators must have 2 values, eg. aggregate: ['sum', 'count']. More info above...`
|
|
)
|
|
}
|
|
if (isAggregated) {
|
|
aggregator = aggregator[1]
|
|
} else {
|
|
aggregator = aggregator[0]
|
|
}
|
|
}
|
|
|
|
let aggregateFn =
|
|
typeof aggregator === 'function'
|
|
? aggregator
|
|
: userAggregations[aggregator] || aggregations[aggregator]
|
|
|
|
if (aggregateFn) {
|
|
values[column.id] = aggregateFn(columnValues, rows, isAggregated)
|
|
} else if (aggregator) {
|
|
console.info({ column })
|
|
throw new Error(
|
|
`React Table: Invalid aggregate option for column listed above`
|
|
)
|
|
} else {
|
|
values[column.id] = null
|
|
}
|
|
})
|
|
return values
|
|
}
|
|
|
|
let groupedFlatRows = []
|
|
|
|
// Recursively group the data
|
|
const groupRecursively = (rows, depth = 0) => {
|
|
// This is the last level, just return the rows
|
|
if (depth >= groupBy.length) {
|
|
groupedFlatRows = groupedFlatRows.concat(rows)
|
|
return rows
|
|
}
|
|
|
|
const columnId = groupBy[depth]
|
|
|
|
// Group the rows together for this level
|
|
let groupedRows = groupByFn(rows, columnId)
|
|
|
|
// Recurse to sub rows before aggregation
|
|
groupedRows = Object.entries(groupedRows).map(
|
|
([groupByVal, subRows], index) => {
|
|
const id = `${columnId}:${groupByVal}`
|
|
|
|
subRows = groupRecursively(subRows, depth + 1)
|
|
|
|
const values = aggregateRowsToValues(subRows, depth < groupBy.length)
|
|
|
|
const row = {
|
|
id,
|
|
isAggregated: true,
|
|
groupByID: columnId,
|
|
groupByVal,
|
|
values,
|
|
subRows,
|
|
depth,
|
|
index,
|
|
}
|
|
|
|
groupedFlatRows.push(row)
|
|
|
|
return row
|
|
}
|
|
)
|
|
|
|
return groupedRows
|
|
}
|
|
|
|
const groupedRows = groupRecursively(rows)
|
|
|
|
// Assign the new data
|
|
return [groupedRows, groupedFlatRows]
|
|
}, [
|
|
manualGroupBy,
|
|
groupBy,
|
|
rows,
|
|
flatRows,
|
|
flatColumns,
|
|
userAggregations,
|
|
groupByFn,
|
|
])
|
|
|
|
const getAutoResetGroupBy = useGetLatest(autoResetGroupBy)
|
|
|
|
useMountedLayoutEffect(() => {
|
|
if (getAutoResetGroupBy()) {
|
|
dispatch({ type: actions.resetGroupBy })
|
|
}
|
|
}, [dispatch, manaulGroupBy ? null : data])
|
|
|
|
Object.assign(instance, {
|
|
groupedRows,
|
|
groupedFlatRows,
|
|
toggleGroupBy,
|
|
rows: groupedRows,
|
|
flatRows: groupedFlatRows,
|
|
preGroupedRows: rows,
|
|
})
|
|
}
|