Skip to content

Commit

Permalink
docs: more state docs for other frameworks (#5428)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinVandy committed Mar 22, 2024
1 parent ea14655 commit 4faa788
Show file tree
Hide file tree
Showing 7 changed files with 916 additions and 1 deletion.
47 changes: 46 additions & 1 deletion docs/config.json
Expand Up @@ -32,7 +32,7 @@
"children": [
{
"label": "Qwik Table",
"to": "framework/react/qwik-table"
"to": "framework/qwik/qwik-table"
}
]
},
Expand Down Expand Up @@ -116,6 +116,15 @@
}
],
"frameworks": [
{
"label": "qwik",
"children": [
{
"label": "Table State",
"to": "framework/qwik/guide/table-state"
}
]
},
{
"label": "react",
"children": [
Expand All @@ -124,6 +133,42 @@
"to": "framework/react/guide/table-state"
}
]
},
{
"label": "solid",
"children": [
{
"label": "Table State",
"to": "framework/solid/guide/table-state"
}
]
},
{
"label": "svelte",
"children": [
{
"label": "Table State",
"to": "framework/svelte/guide/table-state"
}
]
},
{
"label": "vue",
"children": [
{
"label": "Table State",
"to": "framework/vue/guide/table-state"
}
]
},
{
"label": "vanilla",
"children": [
{
"label": "Table State",
"to": "framework/vanilla/guide/table-state"
}
]
}
]
},
Expand Down
178 changes: 178 additions & 0 deletions docs/framework/qwik/guide/table-state.md
@@ -0,0 +1,178 @@
---
title: Table State (Qwik) Guide
---

## Table State (Qwik) Guide

TanStack Table has a simple underlying internal state management system to store and manage the state of the table. It also lets you selectively pull out any state that you need to manage in your own state management. This guide will walk you through the different ways in which you can interact with and manage the state of the table.

### Accessing Table State

You do not need to set up anything special in order for the table state to work. If you pass nothing into either `state`, `initialState`, or any of the `on[State]Change` table options, the table will manage its own state internally. You can access any part of this internal state by using the `table.getState()` table instance API.

```jsx
const table = useQwikTable({
columns,
data,
//...
})

console.log(table.getState()) //access the entire internal state
console.log(table.getState().rowSelection) //access just the row selection state
```

### Custom Initial State

If all you need to do for certain states is customize their initial default values, you still do not need to manage any of the state yourself. You can simply set values in the `initialState` option of the table instance.

```jsx
const table = useQwikTable({
columns,
data,
initialState: {
columnOrder: ['age', 'firstName', 'lastName'], //customize the initial column order
columnVisibility: {
id: false //hide the id column by default
},
expanded: true, //expand all rows by default
sorting: [
{
id: 'age',
desc: true //sort by age in descending order by default
}
]
},
//...
})
```

> **Note**: Only specify each particular state in either `initialState` or `state`, but not both. If you pass in a particular state value to both `initialState` and `state`, the initialized state in `state` will take overwrite any corresponding value in `initialState`.
### Controlled State

If you need easy access to the table state in other areas of your application, TanStack Table makes it easy to control and manage any or all of the table state in your own state management system. You can do this by passing in your own state and state management functions to the `state` and `on[State]Change` table options.

#### Individual Controlled State

You can control just the state that you need easy access to. You do NOT have to control all of the table state if you do not need to. It is recommended to only control the state that you need on a case-by-case basis.

In order to control a particular state, you need to both pass in the corresponding `state` value and the `on[State]Change` function to the table instance.

Let's take filtering, sorting, and pagination as an example in a "manual" server-side data fetching scenario. You can store the filtering, sorting, and pagination state in your own state management, but leave out any other state like column order, column visibility, etc. if your API does not care about those values.

```jsx
const columnFilters = Qwik.useSignal([]) //no default filters
const sorting = Qwik.useSignal([{
id: 'age',
desc: true, //sort by age in descending order by default
}])
const pagination = Qwik.useSignal({ pageIndex: 0, pageSize: 15 })

//Use our controlled state values to fetch data
const tableQuery = useQuery({
queryKey: ['users', columnFilters.value, sorting.value, pagination.value],
queryFn: () => fetchUsers(columnFilters.value, sorting.value, pagination.value),
//...
})

const table = useQwikTable({
columns: columns.value,
data: tableQuery.data,
//...
state: {
columnFilters: columnFilters.value, //pass controlled state back to the table (overrides internal state)
sorting: sorting.value,
pagination: pagination.value,
},
onColumnFiltersChange: updater => {
columnFilters.value = updater instanceOf Function ? updater(columnFilters.value) : updater //hoist columnFilters state into our own state management
},
onSortingChange: updater => {
sorting.value = updater instanceOf Function ? updater(sorting.value) : updater
},
onPaginationChange: updater => {
pagination.value = updater instanceOf Function ? updater(pagination.value) : updater
},
})
//...
```

#### Fully Controlled State

Alternatively, you can control the entire table state with the `onStateChange` table option. It will hoist out the entire table state into your own state management system. Be careful with this approach, as you might find that raising some frequently changing state values up a component tree, like `columnSizingInfo` state`, might cause bad performance issues.

A couple of more tricks may be needed to make this work. If you use the `onStateChange` table option, the initial values of the `state` must be populated with all of the relevant state values for all of the features that you want to use. You can either manually type out all of the initial state values, or use the `table.setOptions` API in a special way as shown below.

```jsx
//create a table instance with default state values
const table = useQwikTable({
columns,
data,
//... Note: `state` values are NOT passed in yet
})


const sate = Qwik.useSignal({
...table.initialState, //populate the initial state with all of the default state values from the table instance
pagination: {
pageIndex: 0,
pageSize: 15 //optionally customize the initial pagination state.
}
})

//Use the table.setOptions API to merge our fully controlled state onto the table instance
table.setOptions(prev => ({
...prev, //preserve any other options that we have set up above
state: state.value, //our fully controlled state overrides the internal state
onStateChange: updater => {
state.value = updater instanceOf Function ? updater(state.value) : updater //any state changes will be pushed up to our own state management
},
}))
```

### On State Change Callbacks

So far, we have seen the `on[State]Change` and `onStateChange` table options work to "hoist" the table state changes into our own state management. However, there are a few things about these using these options that you should be aware of.

#### 1. **State Change Callbacks MUST have their corresponding state value in the `state` option**.

Specifying an `on[State]Change` callback tells the table instance that this will be a controlled state. If you do not specify the corresponding `state` value, that state will be "frozen" with its initial value.

```jsx
const sorting = Qwik.useSignal([])
//...
const table = useQwikTable({
columns,
data,
//...
state: {
sorting: sorting.value, //required because we are using `onSortingChange`
},
onSortingChange: updater => {
sorting.value = updater instanceOf Function ? updater(sorting) : updater //makes the `state.sorting` controlled
},
})
```

#### 2. **Updaters can either be raw values or callback functions**.

The `on[State]Change` and `onStateChange` callbacks work exactly like the `setState` functions in React. The updater values can either be a new state value or a callback function that takes the previous state value and returns the new state value.

What implications does this have? It means that if you want to add in some extra logic in any of the `on[State]Change` callbacks, you can do so, but you need to check whether or not the new incoming updater value is a function or value.

This is why you will see the `updater instanceOf Function ? updater(state.value) : updater` pattern in the examples above. This pattern checks if the updater is a function, and if it is, it calls the function with the previous state value to get the new state value.

### State Types

All complex states in TanStack Table have their own TypeScript types that you can import and use. This can be handy for ensuring that you are using the correct data structures and properties for the state values that you are controlling.

```tsx
import { useQwikTable, SortingState } from '@tanstack/qwik-table'
//...
const sorting = Qwik.useSignal<SortingState[]>([
{
id: 'age', //you should get autocomplete for the `id` and `desc` properties
desc: true,
}
])
```

0 comments on commit 4faa788

Please sign in to comment.