Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: move stories to components, add BaseTable readme, add jsdoc #44

Merged
merged 1 commit into from
Sep 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const config: StorybookConfig = {
'@storybook/addon-webpack5-compiler-babel',
],
framework: '@storybook/react-webpack5',
stories: ['../src/**/*.stories.@(ts|tsx)'],
stories: ['../src/**/*.mdx', '../src/**/*.stories.@(ts|tsx)'],
typescript: {
reactDocgen: 'react-docgen-typescript',
},
Expand Down
27 changes: 17 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ npm install --save @gravity-ui/table

```tsx
import React from 'react';
import {BaseTable, useTable} from '@gravity-ui/table';
import {Table, useTable} from '@gravity-ui/table';
import type {ColumnDef} from '@tanstack/react-table';

interface Person {
Expand All @@ -35,10 +35,17 @@ const BasicExample = () => {
data,
});

return <BaseTable table={table} />;
return <Table table={table} />;
};
```

## Components

There are two Table components that you can use:

- `BaseTable` - a component with basic styles only;
- `Table` - a component with Gravity UI based styles.

### Row selection

```tsx
Expand Down Expand Up @@ -68,7 +75,7 @@ const RowSelectionExample = () => {
},
});

return <BaseTable table={table} />;
return <Table table={table} />;
};
```

Expand Down Expand Up @@ -101,7 +108,7 @@ const SortingExample = () => {
},
});

return <BaseTable table={table} />;
return <Table table={table} />;
};
```

Expand Down Expand Up @@ -173,7 +180,7 @@ const GroupingExample = () => {
},
});

return <BaseTable table={table} getGroupTitle={getGroupTitle} />;
return <Table table={table} getGroupTitle={getGroupTitle} />;
};
```

Expand Down Expand Up @@ -207,7 +214,7 @@ const ReorderingExample = () => {
targetItemKey,
baseItemKey,
baseNextItemKey,
nestingEnabled,
enableNesting,
nextChild,
pullFromParent,
}) => {
Expand All @@ -218,7 +225,7 @@ const ReorderingExample = () => {

return (
<ReorderingProvider table={table} onReorder={handleReorder}>
<BaseTable table={table} />
<Table table={table} />
</ReorderingProvider>
);
};
Expand Down Expand Up @@ -257,7 +264,7 @@ const VirtualizationExample = () => {

return (
<div ref={containerRef} style={{height: '500px', overflow: 'auto'}}>
<BaseTable table={table} rowVirtualizer={rowVirtualizer} />
<Table table={table} rowVirtualizer={rowVirtualizer} />
</div>
);
};
Expand Down Expand Up @@ -315,7 +322,7 @@ const WindowVirtualizationExample = () => {
overscan: 5,
});

return <BaseTable table={table} rowVirtualizer={rowVirtualizer} />;
return <Table table={table} rowVirtualizer={rowVirtualizer} />;
};
```

Expand All @@ -338,7 +345,7 @@ const ResizingDemo = () => {
columnResizeMode: 'onChange',
});

return <BaseTable table={table} />;
return <Table table={table} />;
};
```

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"lint:styles:fix": "npm run lint:styles -- --fix",
"prepare": "husky",
"prepublishOnly": "npm run build",
"start": "storybook dev",
"start": "storybook dev -p 6006",
"test": "jest --passWithNoTests",
"test-storybook": "test-storybook",
"test:coverage": "jest --coverage",
Expand Down
39 changes: 39 additions & 0 deletions src/components/BaseTable/BaseTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,44 +18,83 @@ import {b} from './BaseTable.classname';
import './BaseTable.scss';

export interface BaseTableProps<TData, TScrollElement extends Element | Window = HTMLDivElement> {
/** The table instance returned from the `useTable` hook */
table: Table<TData>;
/** HTML attributes for the `<table>` element */
attributes?: React.TableHTMLAttributes<HTMLTableElement>;
/** HTML attributes for the `<tbody>` element */
bodyAttributes?: React.HTMLAttributes<HTMLTableSectionElement>;
/** CSS classes for the `<tbody>` element */
bodyClassName?: string;
/** HTML attributes for the `<td>` elements inside `<tbody>` */
cellAttributes?: BaseRowProps<TData>['cellAttributes'];
/** CSS classes for the `<td>` elements inside `<tbody>` */
cellClassName?: BaseRowProps<TData>['cellClassName'];
/** CSS classes for the `<table>` element */
className?: string;
/** Content displayed when the table has no data rows */
emptyContent?: React.ReactNode | (() => React.ReactNode);
/** HTML attributes for the `<tfoot>` element */
footerAttributes?: React.HTMLAttributes<HTMLTableSectionElement>;
/** HTML attributes for the `<th>` elements inside `<tfoot>` */
footerCellAttributes?: BaseFooterRowProps<TData>['cellAttributes'];
/** CSS classes for the `<th>` elements inside `<tfoot>` */
footerCellClassName?: BaseFooterRowProps<TData>['cellClassName'];
/** CSS classes for the `<tfoot>` element */
footerClassName?: string;
/** HTML attributes for the `<tr>` elements inside `<tfoot>` */
footerRowAttributes?: BaseFooterRowProps<TData>['attributes'];
/** CSS classes for the `<tr>` elements inside `<tfoot>` */
footerRowClassName?: BaseFooterRowProps<TData>['className'];
/** Returns the title for a group header row */
getGroupTitle?: BaseRowProps<TData>['getGroupTitle'];
/** Checks if the row is custom and should be rendered using `renderCustomRowContent` */
getIsCustomRow?: BaseRowProps<TData>['getIsCustomRow'];
/** Checks if the row should be rendered as a group header */
getIsGroupHeaderRow?: BaseRowProps<TData>['getIsGroupHeaderRow'];
/** CSS classes for the group header elements */
groupHeaderClassName?: BaseRowProps<TData>['groupHeaderClassName'];
/** HTML attributes for the `<thead>` element */
headerAttributes?: React.HTMLAttributes<HTMLTableSectionElement>;
/** HTML attributes for the `<th>` elements inside `<thead>` */
headerCellAttributes?: BaseHeaderRowProps<TData>['cellAttributes'];
/** CSS classes for the `<th>` elements inside `<thead>` */
headerCellClassName?: BaseHeaderRowProps<TData>['cellClassName'];
/** CSS classes for the `<thead>` element */
headerClassName?: string;
/** HTML attributes for the `<tr>` elements inside `<thead>` */
headerRowAttributes?: BaseHeaderRowProps<TData>['attributes'];
/** CSS classes for the `<tr>` elements inside `<thead>` */
headerRowClassName?: BaseHeaderRowProps<TData>['className'];
/** Click handler for rows inside `<tbody>` */
onRowClick?: BaseRowProps<TData>['onClick'];
/** Function to render custom rows */
renderCustomRowContent?: BaseRowProps<TData>['renderCustomRowContent'];
/** Function to override the default rendering of group headers */
renderGroupHeader?: BaseRowProps<TData>['renderGroupHeader'];
/** Function to override the default rendering of the entire group header row */
renderGroupHeaderRowContent?: BaseRowProps<TData>['renderGroupHeaderRowContent'];
/** Function to override the default rendering of resize handles */
renderResizeHandle?: BaseHeaderRowProps<TData>['renderResizeHandle'];
/** Function to override the default rendering of sort indicators */
renderSortIndicator?: BaseHeaderRowProps<TData>['renderSortIndicator'];
/** CSS classes for resize handles in `<th>` elements */
resizeHandleClassName?: BaseHeaderRowProps<TData>['resizeHandleClassName'];
/** HTML attributes for `<tr>` elements inside `<tbody>` */
rowAttributes?: BaseRowProps<TData>['attributes'];
/** CSS classes for `<tr>` elements inside `<tbody>` */
rowClassName?: BaseRowProps<TData>['className'];
/** The row virtualizer instance returned from `useRowVirtualizer` or `useWindowRowVirtualizer` hooks */
rowVirtualizer?: Virtualizer<TScrollElement, HTMLTableRowElement>;
/** CSS classes for the sort indicator inside `<th>` elements */
sortIndicatorClassName?: BaseHeaderRowProps<TData>['sortIndicatorClassName'];
/** Makes the `<tfoot>` element sticky */
stickyFooter?: boolean;
/** Makes the `<thead>` element sticky */
stickyHeader?: boolean;
/** Determines whether the `<tfoot>` element should be rendered */
withFooter?: boolean;
/** Determines whether the `<thead>` element should be rendered */
withHeader?: boolean;
}

Expand Down
Loading
Loading