Skip to content

Sovgut/datagrid

Repository files navigation

@sovgut/datagrid

A powerful, flexible, and headless data grid solution for React applications. It provides the logic, state management, and hooks needed to build highly custom and type-safe data grids.

npm version npm downloads license TypeScript

Key Features

  • 🏭 Headless & Unstyled - Provides the hooks and logic, you provide the UI components.

  • 💪 TypeScript Ready - Fully typed API to ensure type safety and excellent editor support.

  • 🪝 Hook-Based API - Use the useDataGrid hook to easily access state and actions anywhere in your table.

  • 📄 Pagination - Built-in state for page and limit management.

  • 📊 Single-Column Sorting - Simple and efficient single-column sorting logic.

  • 🔍 Filtering Support - Define custom filter elements on a per-column basis.

  • 🚀 Advanced Filtering - Define complex filter interactions, including dynamic props (deriveProps) and state synchronization (deriveState), via filterConfig.

  • 🔌 Flexible State Management - Use the powerful internal Zustand store or provide your own external store.

  • 🕹️ Imperative API - Use a ref to programmatically control the grid's state from a parent component.

Note

This package provides only the logic and state management for data grids. It is headless and unstyled by design. You bring your own components and styles to create the final UI, giving you complete control over the look and feel.

Installation

npm install @sovgut/datagrid
# or
yarn add @sovgut/datagrid
# or
pnpm add @sovgut/datagrid

Core Concepts

This library is built around three core concepts:

  1. <DataGrid /> Component: This is the context provider. You wrap your custom table components with <DataGrid> and pass it your columns, rows, and total size.

  2. useDataGrid() Hook: This is the consumer. Call this hook within any child of <DataGrid> to get access to the grid's state (page, limit, sort, filter), the processed data (rows, columns), and action dispatchers (setPagination, setSorting, setFilter).

  3. Column Definitions: You define your grid's structure by passing an array of DataGridColumn objects. Here you specify keys, labels, and behavior like sorting, filtering, and custom rendering.

Basic Usage

Here's how to create a simple table with sorting. The MyTableUI component shows how to use the useDataGrid hook to build your own render logic.

import { DataGrid, useDataGrid, type DataGridColumn, type DataGridRow } from "@sovgut/datagrid";
import type { FC } from "react";

// 1. Define your data structure
interface User extends DataGridRow {
  id: number;
  name: string;
  email: string;
}

// 2. Define your columns
const columns: DataGridColumn<User>[] = [
  { key: "id", label: "ID" },
  { key: "name", label: "Name", sortable: true },
  { key: "email", label: "Email", sortable: true },
];

// 3. Create your data source
const rows: User[] = [
  { id: 1, name: "John Doe", email: "john@example.com" },
  { id: 2, name: "Jane Smith", email: "jane@example.com" },
  // ... more users
];

// 4. Create your own UI component that consumes the grid state
const MyTableUI: FC = () => {
  // useDataGrid provides all the state and actions you need
  const { columns, rows, sort, order, setSorting } = useDataGrid<User>();

  const handleSort = (key: string) => {
    const newOrder = sort === key && order === "asc" ? "desc" : "asc";
    setSorting(key, newOrder);
  };

  return (
    <table>
      <thead>
        <tr>
          {columns.map((col) => (
            <th key={String(col.key)} onClick={() => col.sortable && handleSort(String(col.key))}>
              {col.label}
              {sort === col.key ? (order === "asc" ? " ▲" : " ▼") : ""}
            </th>
          ))}
        </tr>
      </thead>
      <tbody>
        {rows.map((row) => (
          <tr key={row.id}>
            {columns.map((col) => (
              <td key={String(col.key)}>{row[col.key as keyof User]}</td>
            ))}
          </tr>
        ))}
      </tbody>
    </table>
  );
};

// 5. Put it all together
export function SimpleExample() {
  return (
    <DataGrid
      columns={columns}
      rows={rows}
      size={rows.length}
      onChange={(state) => {
        console.log("Grid state changed:", state);
      }}
    >
      <MyTableUI />
    </DataGrid>
  );
}

Advanced Usage

Custom Rendering and Basic Filtering

Provide a render function for custom cell content and a filter element (or render function) for each column. Use the query prop to set the initial state.

The filter property accepts two forms:

  • ReactElement — a plain JSX element. Your custom table component receives the element from column.filter and is responsible for injecting controlled props (e.g. value, onChange) into it, typically via React.cloneElement.
  • Render function (ctx: T) => ReactElement — a function that receives a context object you define and returns a ReactElement, giving full control over how the element is built without relying on cloneElement.
import { DataGrid, type DataGridColumn, type ColumnFilter, useDataGrid } from "@sovgut/datagrid";

// Define the shape of the context your table will pass to render-function filters
interface MyFilterContext {
  value: string | undefined;
  onChange: (value: string | undefined) => void;
  onBlur: () => void;
}

// Pass MyFilterContext as the third type parameter so every render-function
// filter on this array has `ctx` inferred — no per-column annotation needed.
const columns: DataGridColumn<MyData, Record<string, unknown>, MyFilterContext>[] = [
  {
    key: "name",
    label: "Name",
    sortable: true,
    // Render a custom element in the cell
    render: (row) => <strong>{row.name}</strong>,
    // Plain element: your table component injects value/onChange via cloneElement
    filter: <input type="text" placeholder="Filter by name..." />,
  },
  {
    key: "status",
    label: "Status",
    // Render function: `ctx` is inferred as MyFilterContext from the column type
    filter: (ctx) => (
      <select
        value={ctx.value ?? ""}
        onChange={(e) => ctx.onChange(e.target.value || undefined)}
        onBlur={ctx.onBlur}
      >
        <option value="">All</option>
        <option value="active">Active</option>
        <option value="inactive">Inactive</option>
      </select>
    ),
  },
];

function AdvancedExample() {
  return (
    <DataGrid
      columns={columns}
      rows={myRows}
      size={totalCount}
      // Use the `query` prop to set initial state
      query={{ limit: 25 }}
      // Reset to page 1 when filters or sorting change
      resetPageOnQueryChange={true}
    >
      <MyTableUI />
    </DataGrid>
  );
}

Advanced Filtering with filterConfig

For complex scenarios, like dependent filters, you can use the filterConfig property. This allows you to define functions to dynamically derive props for your filter component (deriveProps) and to synchronize the filter state (deriveState).

// Example: A 'Method' filter that depends on a 'Currency' filter
const allMethods = [
  { id: 1, name: "Credit Card", currency: "USD" },
  { id: 2, name: "Bank Transfer", currency: "USD" },
  { id: 3, name: "PayPal", currency: "EUR" },
];

const columns: DataGridColumn<Transaction>[] = [
  {
    key: "currency",
    label: "Currency",
    filter: <Select items={allCurrencies} />,
  },
  {
    key: "method",
    label: "Method",
    filter: <Select items={allMethods} />,
    filterConfig: {
      deriveProps: (props, state) => {
        const { currency } = state.filter;
        if (!currency) {
          return { ...props, items: [], disabled: true };
        }
        const filteredMethods = allMethods.filter(m => m.currency === currency);
        return { ...props, items: filteredMethods };
      },
      deriveState: (state) => {
        const { currency, method } = state.filter;
        if (currency && method) {
          const methodIsValid = allMethods.some(m => m.id === method && m.currency === currency);
          if (!methodIsValid) {
            const newFilterState = { ...state.filter, method: undefined };
            return { ...state, filter: newFilterState };
          }
        }
        return state;
      }
    }
  }
];

⚠️ IMPORTANT: Implementation Responsibility

This package (@sovgut/datagrid) provides the type definitions and data structure for filterConfig deriveProps as a convention.

The package itself does NOT implement the handler logic for these functions.

You, as the developer using this package, are responsible for implementing the logic in your custom DataGrid component that:

Handles deriveProps: Calls this function during your render phase and merges the resulting props with the filter element (e.g., using React.cloneElement).

Imperative Control with ref

You can control the grid from the outside by using a ref.

import { useRef } from "react";
import { DataGrid, type DataGridRef } from "@sovgut/datagrid";

function RefExample() {
  const dataGridRef = useRef<DataGridRef>(null);

  const handleClearFilters = () => {
    // Access the grid's API via the ref
    dataGridRef.current?.clear();
  };

  const handleGoToPageTwo = () => {
    if (dataGridRef.current) {
      dataGridRef.current.setPagination(2, dataGridRef.current.limit);
    }
  };

  return (
    <div>
      <button onClick={handleClearFilters}>Clear All State</button>
      <button onClick={handleGoToPageTwo}>Go to Page 2</button>
      <DataGrid ref={dataGridRef} columns={columns} rows={rows} size={totalCount}>
        <MyTableUI />
      </DataGrid>
    </div>
  );
}

API Reference

DataGrid Props

Prop Type Description
columns DataGridColumn<TData, TMetadata, TFilterContext>[] Required. An array of column definition objects.
rows DataGridRow[] Required. The array of data to display. Each object must have a unique id.
size number Required. The total number of items available, used for pagination.
query Partial<DataGridState> An object to set the initial state of the grid (page, limit, sort, etc.).
store DataGridReducer An external store to control the grid's state completely.
ref Ref<DataGridRef> A ref to imperatively control the grid's state.
onChange (state: DataGridState) => void A callback fired whenever the grid's state changes.
onSelect (selected: string[]) => void A callback fired when row selection changes.
resetPageOnQueryChange boolean If true, resets to page 1 when sorting or filtering changes. Defaults to true.

DataGridColumn Properties

DataGridColumn<TData, TMetadata, TFilterContext> accepts three type parameters:

  • TData — the shape of a row object.
  • TMetadata — the shape of the metadata field. Defaults to Record<string, any>.
  • TFilterContext — the context object type passed to a render-function filter. Defaults to any. Declare it here once so TypeScript infers the argument in every render-function filter on the column array, instead of annotating each one individually.
Property Type Description
key keyof TData | string Required. A unique key, usually matching a property in your data row object.
label string Required. The text to display in the column header.
sortable boolean If true, enables sorting for this column.
render (row: TData, ...) => ReactNode A function to render custom content for a cell.
component ComponentType<DataGridComponentProps<TData>> A React component to render for the cell. Alternative to render.
filter ColumnFilter<TFilterContext> (ReactElement | ((ctx: TFilterContext) => ReactElement)) A plain JSX element or a render function. When using the render-function form, ctx is inferred as TFilterContext.
filterConfig ColumnFilterConfig An advanced configuration object for filters, enabling dynamic props (deriveProps) and state synchronization (deriveState).
visibility DataGridColumnVisibility Controls the visibility of the column. Defaults to Visible.
multiple boolean Indicates if the filter for this column can accept multiple values.
metadata TMetadata A place to store any other custom data you need for the column.

License

MIT

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

About

A powerful, flexible, and headless data grid solution for React applications. It provides the logic, state management, and hooks needed to build highly custom and type-safe data grids.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors