Files
sigpro-grid/README.md
2026-04-30 14:45:42 +02:00

275 lines
6.4 KiB
Markdown

# SigPro Grid
A lightweight, reactive wrapper for AG Grid built for SigProUI.
## Features
- **Lightweight wrapper** - AG Grid bundled inside
- **Reactive** - Automatically updates when data changes
- **Theme aware** - Automatically switches between light/dark themes
- **Custom themes** - Create custom themes with `themeQuartz`
- **TypeScript support** - Full type definitions included
- **Auto cleanup** - Proper resource disposal
## Requirements
- [SigProUI](https://github.com/natxocc/sigpro-ui)
## Installation
```bash
npm install sigpro-ui
npm install sigpro-grid
```
**No additional dependencies needed** - AG Grid is already bundled!
## Quick Start
```javascript
import "sigproui";
import { Grid } from 'sigpro-grid';
const gridApi = { current: null };
mount(() => Grid({
api: gridApi,
data: [
{ id: 1, name: 'John Doe', email: 'john@example.com' },
{ id: 2, name: 'Jane Smith', email: 'jane@example.com' }
],
options: {
columnDefs: [
{ field: 'id', headerName: 'ID', width: 100 },
{ field: 'name', headerName: 'Name', flex: 1 },
{ field: 'email', headerName: 'Email', flex: 1 }
],
pagination: true,
paginationPageSize: 20,
rowSelection: 'multiple'
},
on: {
onGridReady: (params) => {
console.log('Grid ready', params.api);
},
onSelectionChanged: (params) => {
const selected = params.api.getSelectedRows();
console.log('Selected rows:', selected);
}
}
}), '#app');
// Export data
const exportToExcel = () => {
gridApi.current?.exportDataAsExcel({
fileName: 'data.xlsx'
});
};
```
## API
### Props
| Prop | Type | Default | Description |
|------|------|---------|-------------|
| `data` | `Array \| () => Array` | `[]` | Grid data (reactive if function) |
| `options` | `Object \| () => Object` | `{}` | AG Grid options (reactive if function) |
| `api` | `{ current: GridApi \| null }` | - | Mutable reference to grid API |
| `on` | `Object` | - | Event handlers |
| `class` | `string` | - | Additional CSS classes |
| `style` | `string` | `"height: 100%; width: 100%;"` | Inline styles |
| `dark` | `boolean \| () => boolean` | - | Force dark mode (overrides auto-detection) |
### Events
| Event | Description |
|-------|-------------|
| `onGridReady` | Grid initialized and ready |
| `onFirstDataRendered` | First data rendered |
| `onRowDataUpdated` | Row data updated |
| `onSelectionChanged` | Selection changed |
| `onCellClicked` | Cell clicked |
| `onCellDoubleClicked` | Cell double-clicked |
| `onCellValueChanged` | Cell value changed |
| `onCellEditingStarted` | Cell editing started |
| `onCellEditingStopped` | Cell editing stopped |
| `onRowClicked` | Row clicked |
| `onRowValueChanged` | Row value changed |
| `onSortChanged` | Sorting changed |
| `onFilterChanged` | Filter changed |
| `onModelUpdated` | Model updated |
| `onGridSizeChanged` | Grid size changed |
| `onColumnResized` | Column resized |
| `onColumnMoved` | Column moved |
| `onPaginationChanged` | Pagination changed |
| `onBodyScroll` | Body scrolled |
| `onContextMenu` | Context menu opened |
## Theme
Uses **AG Grid Balham** theme by default:
- Light: `ag-theme-balham`
- Dark: `ag-theme-balham-dark`
The grid automatically detects and adapts to dark mode via:
- `data-theme="dark"` attribute on HTML element
- System preference `prefers-color-scheme: dark`
- Manual override with `dark` prop
### Custom Themes
Create custom themes with `themeQuartz`:
```javascript
import { Grid, themeQuartz } from 'sigpro-grid';
const myTheme = themeQuartz.withParams({
accentColor: "#8B5CF6",
backgroundColor: "#1E1E2E",
borderColor: "#313244",
borderRadius: 8,
chromeBackgroundColor: "#181825",
fontFamily: "Inter, sans-serif",
fontSize: "14px",
headerBackgroundColor: "#1E1E2E",
headerTextColor: "#CDD6F4",
oddRowBackgroundColor: "#1E1E2E",
rowBorderColor: "transparent",
textColor: "#CDD6F4",
});
mount(() => Grid({
api: gridApi,
data: [...],
options: {
theme: myTheme,
columnDefs: [...]
}
}), '#app');
```
## Grid API Methods
Once you have the API reference, you can use all AG Grid methods:
```javascript
// Export
gridApi.current?.exportDataAsExcel();
gridApi.current?.exportDataAsCsv();
// Data
gridApi.current?.setGridOption('rowData', newData);
gridApi.current?.getSelectedRows();
// Columns
gridApi.current?.autoSizeColumns(gridApi.current.getColumns());
gridApi.current?.setColumnVisible('field', false);
// Selection
gridApi.current?.selectAll();
gridApi.current?.deselectAll();
// Filter
gridApi.current?.setFilterModel(null);
```
## Master/Detail Example
```javascript
mount(() => Grid({
api: gridApi,
data: masterData,
options: {
columnDefs: [
{ field: 'id', headerName: 'ID' },
{ field: 'name', headerName: 'Customer' }
],
masterDetail: true,
detailCellRendererParams: {
detailGridOptions: {
columnDefs: [
{ field: 'product', headerName: 'Product' },
{ field: 'quantity', headerName: 'Quantity' }
]
},
getDetailRowData: (params) => {
fetch(`/api/orders/${params.data.id}`)
.then(res => res.json())
.then(details => params.successCallback(details));
}
}
}
}), '#app');
```
## With TypeScript
```typescript
import { Grid, GridApi, GridOptions } from 'sigpro-grid';
interface User {
id: number;
name: string;
email: string;
}
const gridApi = { current: null as GridApi | null };
mount(() => Grid({
api: gridApi,
data: () => users,
options: {
columnDefs: [
{ field: 'id', headerName: 'ID' },
{ field: 'name', headerName: 'Name' },
{ field: 'email', headerName: 'Email' }
]
} as GridOptions<User>
}), '#app');
```
## Reactive Data Example
```javascript
const users = $([]);
// Data updates automatically reflect in grid
const addUser = (user) => {
users([...users(), user]);
};
mount(() => Grid({
api: gridApi,
data: () => users(),
options: { columnDefs: [...] }
}), '#app');
```
## Included AG Grid Modules
The bundled AG Grid includes:
**Community:**
- Validation, Column Auto-Size, Cell Style, Quick Filter
- Row Selection, Text Editor, Client Side Row Model
**Enterprise:**
- Multi Filter, Cell Selection, Pivot, Master Detail
- Side Bar, Columns Tool Panel, Column Menu
- Status Bar, Excel Export, Clipboard
## Building from Source
```bash
# Install dev dependencies
npm install
# Build AG Grid bundle
npm run build
```
## License
MIT