mirror of
https://github.com/gosticks/react-table.git
synced 2026-08-19 16:30:21 +00:00
Compare commits
45
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
cdcf11b4b0 | ||
|
|
b3a4a9db72 | ||
|
|
df30b97956 | ||
|
|
58028e45fc | ||
|
|
108ea1d358 | ||
|
|
aea60278b1 | ||
|
|
27cd93f4bf | ||
|
|
ed3dd9e6b5 | ||
|
|
1b3730f5cb | ||
|
|
81faac54ac | ||
|
|
50b00b67c5 | ||
|
|
1be9f59180 | ||
|
|
6ccdce9908 | ||
|
|
dd0d6d6640 | ||
|
|
ae37a77c9b | ||
|
|
a5e9653165 | ||
|
|
3b03ea32f5 | ||
|
|
61f0ded1d9 | ||
|
|
4c013ba214 | ||
|
|
1d0c6f5b34 | ||
|
|
e00704fbce | ||
|
|
8ca57779a3 | ||
|
|
1ba08abf74 | ||
|
|
c1b7abd886 | ||
|
|
c4d3ff79cb | ||
|
|
7b4a3cb3ec | ||
|
|
43f116da76 | ||
|
|
00f223d78d | ||
|
|
3747f26a3f | ||
|
|
9698677982 | ||
|
|
0e92ec2415 | ||
|
|
bb505aad58 | ||
|
|
c4ac495d55 | ||
|
|
e0c85b8b02 | ||
|
|
578af7964e | ||
|
|
4b7c85624b | ||
|
|
1ea677331c | ||
|
|
83ee60d715 | ||
|
|
9c7b1e3313 | ||
|
|
62924dea9b | ||
|
|
062a8c12b5 | ||
|
|
720fb21d60 | ||
|
|
777aa2b863 | ||
|
|
51aa8e2eff | ||
|
|
0d7a0d5aea |
@@ -0,0 +1,27 @@
|
||||
name: CI
|
||||
on:
|
||||
push:
|
||||
branches: [master]
|
||||
pull_request:
|
||||
branches: [master]
|
||||
jobs:
|
||||
build-and-test:
|
||||
name: '${{ matrix.platform }}: node.js ${{ matrix.node-version }}'
|
||||
strategy:
|
||||
matrix:
|
||||
platform: [ubuntu-latest, windows-latest, macos-latest]
|
||||
node-version: [10, 12]
|
||||
runs-on: ${{ matrix.platform }}
|
||||
env:
|
||||
CI: true
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@master
|
||||
- name: Set up Node.js
|
||||
uses: actions/setup-node@master
|
||||
with:
|
||||
node-version: ${{ matrix.node-version }}
|
||||
- name: Build and test
|
||||
run: |
|
||||
yarn install
|
||||
yarn test
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
module.exports = {
|
||||
hooks: {
|
||||
'pre-commit': 'lint-staged && yarn test:ci',
|
||||
'commit-msg': 'commitlint -E HUSKY_GIT_PARAMS',
|
||||
// 'commit-msg': 'commitlint -E HUSKY_GIT_PARAMS',
|
||||
},
|
||||
}
|
||||
|
||||
@@ -1,3 +1,23 @@
|
||||
## 7.0.0-beta.14
|
||||
|
||||
## 7.0.0-beta.13
|
||||
|
||||
- Added options
|
||||
- `defaultCanSort`
|
||||
- `defaultCanFilter`
|
||||
- `defaultCanGroupBy`
|
||||
- `column.defaultCanSort`
|
||||
- `column.defaultCanFilter`
|
||||
- `column.defaultCanGroupBy`
|
||||
- Renamed
|
||||
- `disableGrouping` to `disableGroupBy`
|
||||
- `disableSorting` to `disableSortBy`
|
||||
- `disableGroupBy` to `disableGroupBy`
|
||||
- `column.disableGrouping` to `column.disableGroupBy`
|
||||
- `column.disableSorting` to `column.disableSortBy`
|
||||
- `column.disableGroupBy` to `column.disableGroupBy`
|
||||
- Removed propType definitions. Since types are now being maintained, it makes little sense to also maintain these. Cooincidentally, this also saves some bundle size in some scenarios where they may not be removed properly by a developer's bundler.
|
||||
|
||||
## 7.0.0-beta.0
|
||||
|
||||
- Massive changes to the entire project and library. Please consult the README and documentation for more information regarding these changes.
|
||||
|
||||
@@ -4,32 +4,20 @@
|
||||
|
||||
Hooks for building **lightweight, fast and extendable datagrids** for React
|
||||
|
||||
<a href="https://travis-ci.org/tannerlinsley/react-table" target="\_parent">
|
||||
<img alt="" src="https://travis-ci.org/tannerlinsley/react-table.svg?branch=master" />
|
||||
</a>
|
||||
<a href="https://bundlephobia.com/result?p=react-table@next" target="\_parent">
|
||||
<img alt="" src="https://badgen.net/bundlephobia/minzip/react-table@next" />
|
||||
</a>
|
||||
<a href="https://npmjs.com/package/react-table" target="\_parent">
|
||||
<img alt="" src="https://img.shields.io/npm/dm/react-table.svg" />
|
||||
</a>
|
||||
<a href="https://spectrum.chat/react-table">
|
||||
<img alt="Join the community on Spectrum" src="https://withspectrum.github.io/badge/badge.svg" />
|
||||
</a>
|
||||
<a href="https://github.com/tannerlinsley/react-table" target="\_parent">
|
||||
<img alt="" src="https://img.shields.io/github/stars/tannerlinsley/react-table.svg?style=social&label=Star" />
|
||||
</a>
|
||||
<a href="https://twitter.com/tannerlinsley" target="\_parent">
|
||||
<img alt="" src="https://img.shields.io/twitter/follow/tannerlinsley.svg?style=social&label=Follow" />
|
||||
</a>
|
||||
<br />
|
||||
<br />
|
||||
<a href="https://patreon.com/tannerlinsley">
|
||||
<img width="180" alt="" src="https://raw.githubusercontent.com/tannerlinsley/files/master/images/patreon/become-a-patron.png" />
|
||||
</a>
|
||||
[](https://twitter.com/intent/tweet?button_hashtag=TanStack)
|
||||
|
||||
<br />
|
||||
<br />
|
||||
<!-- [](https://github.com/tannerlinsley/react-table/actions) -->
|
||||
|
||||
[](https://travis-ci.org/tannerlinsley/react-table)
|
||||
[](https://bundlephobia.com/result?p=react-table@next)
|
||||
[](https://npmjs.com/package/react-table)
|
||||
[](https://spectrum.chat/react-table)
|
||||
[](https://github.com/tannerlinsley/react-table)
|
||||
[](https://twitter.com/tannerlinsley)
|
||||
|
||||
Enjoy this library? Try them all! [React Query](https://github.com/tannerlinsley/react-query), [React Form](https://github.com/tannerlinsley/react-form), [React Charts](https://github.com/tannerlinsley/react-charts)
|
||||
|
||||
### [Become a Sponsor](https://github.com/sponsors/tannerlinsley/)
|
||||
|
||||
## Features
|
||||
|
||||
@@ -71,6 +59,8 @@ Please [visit the v6 branch](https://github.com/tannerlinsley/react-table/tree/v
|
||||
|
||||
The differences between the 2 versions are incredibly massive. Unfortunately, I cannot write a one-to-one upgrade guide for any of v6's API, simply because much of it is irrelevant with v7's headless approach. The best approach for migrating to v7 is to learn its API by reading the documentation and then following some of the examples to begin building your own table component.
|
||||
|
||||
In case you would need to have both v6 and v7 in one app during the migration process (large codebase, complex use cases), you can install an official [`react-table-6` package](https://www.npmjs.com/package/react-table-6) alongside the `react-table`.
|
||||
|
||||
## Documentation
|
||||
|
||||
- [Installation](./docs/installation.md) - Walk through how to install React Table
|
||||
@@ -82,24 +72,46 @@ The differences between the 2 versions are incredibly massive. Unfortunately, I
|
||||
|
||||
## Sponsors
|
||||
|
||||
**React Table v7** is being built and maintained by me, @tannerlinsley and I am always in need of more Patreon support to keep this project afloat. If you would like to contribute to my Patreon goal for v7 and beyond, [visit my Patreon and help me out!](https://patreon.com/tannerlinsley)
|
||||
This library is being built and maintained by me, @tannerlinsley and I am always in need of more support to keep this project afloat. If you would like to get additional support, add your logo or name on this README, or simply just contribute to my open source Sponsorship goal, [visit my Github Sponsors page!](https://github.com/sponsors/tannerlinsley/)
|
||||
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td align="center" valign="middle">
|
||||
<a href="https://patreon.com/tannerlinsley" target="_blank">
|
||||
<img width='200' src="https://raw.githubusercontent.com/tannerlinsley/files/master/images/patreon/platinum.png">
|
||||
<a href="https://github.com/sponsors/tannerlinsley" target="_blank">
|
||||
<img width='150' src="https://raw.githubusercontent.com/tannerlinsley/files/master/images/patreon/diamond.png">
|
||||
</a>
|
||||
</td>
|
||||
<td align="center" valign="middle">
|
||||
<a href="https://github.com/sponsors/tannerlinsley" target="_blank">
|
||||
Become a Sponsor!
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td align="center" valign="middle">
|
||||
<a href="https://github.com/sponsors/tannerlinsley/" target="_blank">
|
||||
<img width='150' src="https://raw.githubusercontent.com/tannerlinsley/files/master/images/patreon/platinum.png">
|
||||
</a>
|
||||
</td>
|
||||
<td align="center" valign="middle">
|
||||
<a href="https://tryretool.com/?utm_source=sponsor&utm_campaign=react_table" target="_blank">
|
||||
<img width='350' src="https://raw.githubusercontent.com/tannerlinsley/files/master/images/patreon/sponsor-retool.png">
|
||||
<img width='225' src="https://raw.githubusercontent.com/tannerlinsley/files/master/images/patreon/sponsor-retool.png">
|
||||
</a>
|
||||
</td>
|
||||
<td align="center" valign="middle">
|
||||
<a href="http://bjntech.com/index.html?utm_campaign=react_table" target="_blank">
|
||||
<img width='250' src="https://raw.githubusercontent.com/tannerlinsley/files/master/images/patreon/sponsor-bjn.png">
|
||||
<img width='225' src="https://raw.githubusercontent.com/tannerlinsley/files/master/images/patreon/sponsor-bjn.png">
|
||||
</a>
|
||||
</td>
|
||||
<td align="center" valign="middle">
|
||||
<a href="https://github.com/sponsors/tannerlinsley" target="_blank">
|
||||
Become a Sponsor!
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
@@ -110,18 +122,23 @@ The differences between the 2 versions are incredibly massive. Unfortunately, I
|
||||
<tbody>
|
||||
<tr>
|
||||
<td align="center" valign="middle">
|
||||
<a href="https://patreon.com/tannerlinsley" target="_blank">
|
||||
<img width='200' src="https://raw.githubusercontent.com/tannerlinsley/files/master/images/patreon/gold.png">
|
||||
<a href="https://github.com/sponsors/tannerlinsley/" target="_blank">
|
||||
<img width='150' src="https://raw.githubusercontent.com/tannerlinsley/files/master/images/patreon/gold.png">
|
||||
</a>
|
||||
</td>
|
||||
<td align="center" valign="middle">
|
||||
<a href="https://nozzle.io" target="_blank">
|
||||
<img width='230' src="https://nozzle.io/img/logo-blue.png">
|
||||
<img width='225' src="https://nozzle.io/img/logo-blue.png">
|
||||
</a>
|
||||
</td>
|
||||
<td align="center" valign="middle">
|
||||
<a href="https://zappi.io/web/" target="_blank">
|
||||
<img width='230' src="https://raw.githubusercontent.com/tannerlinsley/files/master/images/patreon/sponsor-zappi.png">
|
||||
<img width='225' src="https://raw.githubusercontent.com/tannerlinsley/files/master/images/patreon/sponsor-zappi.png">
|
||||
</a>
|
||||
</td>
|
||||
<td align="center" valign="middle">
|
||||
<a href="https://github.com/sponsors/tannerlinsley" target="_blank">
|
||||
Become a Sponsor!
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
@@ -132,13 +149,13 @@ The differences between the 2 versions are incredibly massive. Unfortunately, I
|
||||
<tbody>
|
||||
<tr>
|
||||
<td align="center" valign="middle">
|
||||
<a href="https://patreon.com/tannerlinsley" target="_blank">
|
||||
<img width='200' src="https://raw.githubusercontent.com/tannerlinsley/files/master/images/patreon/silver.png">
|
||||
<a href="https://github.com/sponsors/tannerlinsley/" target="_blank">
|
||||
<img width='150' src="https://raw.githubusercontent.com/tannerlinsley/files/master/images/patreon/silver.png">
|
||||
</a>
|
||||
</td>
|
||||
<td align="center" valign="middle">
|
||||
<a href="https://patreon.com/tannerlinsley" target="_blank">
|
||||
<img src="https://raw.githubusercontent.com/tannerlinsley/files/master/images/patreon/silver-placeholder.png">
|
||||
<a href="https://github.com/sponsors/tannerlinsley" target="_blank">
|
||||
Become a Sponsor!
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
@@ -149,14 +166,20 @@ The differences between the 2 versions are incredibly massive. Unfortunately, I
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<a href="https://patreon.com/tannerlinsley">
|
||||
<img width='200' src="https://raw.githubusercontent.com/tannerlinsley/files/master/images/patreon/supporters.png" />
|
||||
<a href="https://github.com/sponsors/tannerlinsley/">
|
||||
<img width='150' src="https://raw.githubusercontent.com/tannerlinsley/files/master/images/patreon/supporters.png" />
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<div><a href="https://www.metso.com/">Pekka</a></div>
|
||||
<div>Jon Eickmeier</div>
|
||||
<div><a href="https://github.com/Shah-Sahab">Syed Hussain<a></div>
|
||||
<ul>
|
||||
<li>Jon Eickmeier</li>
|
||||
<li><a href="https://github.com/Shah-Sahab">Syed Hussain<a></li>
|
||||
</ul>
|
||||
</td>
|
||||
<td>
|
||||
<a href="https://github.com/sponsors/tannerlinsley" target="_blank">
|
||||
Become a Supporter!
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
@@ -166,24 +189,30 @@ The differences between the 2 versions are incredibly massive. Unfortunately, I
|
||||
<tbody>
|
||||
<tr>
|
||||
<td valign="top">
|
||||
<a href="https://patreon.com/tannerlinsley">
|
||||
<img width='200' src="https://raw.githubusercontent.com/tannerlinsley/files/master/images/patreon/fans.png" />
|
||||
<a href="https://github.com/sponsors/tannerlinsley/">
|
||||
<img width='150' src="https://raw.githubusercontent.com/tannerlinsley/files/master/images/patreon/fans.png" />
|
||||
</a>
|
||||
</td>
|
||||
<td>
|
||||
<div>Sortmy.games</div>
|
||||
<div>Hugo Meissner</div>
|
||||
<div>Benoit Leger-Derville</div>
|
||||
<div>Thomas Funk</div>
|
||||
<div>Dan Houle</div>
|
||||
<div>David Pickut</div>
|
||||
<div>Jordan Soltman</div>
|
||||
<div>Robert Tajnšek</div>
|
||||
<ul>
|
||||
<li>Sortmy.games</li>
|
||||
<li>Hugo Meissner</li>
|
||||
<li>Benoit Leger-Derville</li>
|
||||
<li>Thomas Funk</li>
|
||||
<li>Dan Houle</li>
|
||||
<li>David Pickut</li>
|
||||
<li>Jordan Soltman</li>
|
||||
<li>Robert Tajnšek</li>
|
||||
<li>Pekka Tapani</li>
|
||||
</ul>
|
||||
</td>
|
||||
<td>
|
||||
<a href="https://github.com/sponsors/tannerlinsley" target="_blank">
|
||||
Become a Fan!
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
<a href="https://patreon.com/tannerlinsley">
|
||||
<img width="150" alt="" src="https://raw.githubusercontent.com/tannerlinsley/files/master/images/patreon/become-a-patron.png" />
|
||||
</a>
|
||||
### [Become a Sponsor](https://github.com/sponsors/tannerlinsley/)
|
||||
|
||||
+2
-2
@@ -2,7 +2,7 @@
|
||||
|
||||
React-table is a very flexible library, because of this, the shape of data at almost every contact point is defined by the specific set of plugins that you choose to pass to `useTable`.
|
||||
|
||||
Tto get started, copy the file `react-table-config.d.ts` into your source tree (e.g. into a types folder). This expands the default types with all of the plugin extensions currently in the type definitions.
|
||||
To get started, copy the file `react-table-config.d.ts` into your source tree (e.g. into a types folder). This expands the default types with all of the plugin extensions currently in the type definitions.
|
||||
|
||||
You can stop here if you like, but while this is simple, it's a bit misleading. Out of the box, these types will suggest that you have access to values that come from plugins that you aren't using, i.e. the error checking is weakened.
|
||||
|
||||
@@ -32,7 +32,7 @@ export interface TableOptions<D extends object>
|
||||
UseSortByOptions<D> {}
|
||||
```
|
||||
|
||||
Then follow the same pattern for all of the other interfaces in the file. You'll notice that many plugins don't extends all of the top level interfaces.
|
||||
Then follow the same pattern for all of the other interfaces in the file. You'll notice that many plugins don't extend all of the top-level interfaces.
|
||||
|
||||
## Caveat
|
||||
|
||||
|
||||
+25
-8
@@ -58,7 +58,7 @@ To dive deeper into plugins, see Plugins](TODO) and the [Plugin Guide
|
||||
|
||||
The order and usage of plugin hooks must follow The Laws of Hooks, just like any other custom hook. They must always be unconditionally called in the same order.
|
||||
|
||||
> **NOTE: In the event that you want to programmatically enable or disable plugin hooks, most of them provide options to disable their functionality, eg. `options.disableSorting`**
|
||||
> **NOTE: In the event that you want to programmatically enable or disable plugin hooks, most of them provide options to disable their functionality, eg. `options.disableSortBy`**
|
||||
|
||||
### Option Memoization
|
||||
|
||||
@@ -68,7 +68,7 @@ React Table relies on memoization to determine when state and side effects shoul
|
||||
|
||||
- Required
|
||||
|
||||
`useTable` is the root hook for React Table. To use it, pass it with an options object with at least a `columns` and `rows` value, followed by any React Table compatible hooks you want to use.
|
||||
`useTable` is the root hook for React Table. To use it, pass it with an options object with at least a `columns` and `data` value, followed by any React Table compatible hooks you want to use.
|
||||
|
||||
### Table Options
|
||||
|
||||
@@ -93,6 +93,7 @@ The following options are supported via the main options object passed to `useTa
|
||||
- When either the internal `state` or this `state` object change, this object is **always merged over the internal table state** (eg. `{...state, ...overrides}`) to produce the final state object that is then passed to the `useTable` options.
|
||||
- `reducer: Function(oldState, newState) => finalState`
|
||||
- Optional
|
||||
- Must be **memoized**
|
||||
- Inspired by Kent C. Dodd's [State Reducer Pattern](https://kentcdodds.com/blog/the-state-reducer-pattern-with-react-hooks)
|
||||
- With every `setState` call to the table's internal `React.useState` instance, this reducer is called and is allowed to modify the final state object for updating.
|
||||
- It is passed the `oldState`, the `newState`, and when provided, an optional action `type`.
|
||||
@@ -358,8 +359,12 @@ The following options are supported via the main options object passed to `useTa
|
||||
- Identical to the `state.sortBy` option above
|
||||
- `manualSorting: Bool`
|
||||
- Enables sorting detection functionality, but does not automatically perform row sorting. Turn this on if you wish to implement your own sorting outside of the table (eg. server-side or manual row grouping/nesting)
|
||||
- `disableSorting: Bool`
|
||||
- `disableSortBy: Bool`
|
||||
- Disables sorting for every column in the entire table.
|
||||
- `defaultCanSort: Bool`
|
||||
- Optional
|
||||
- Defaults to `false`
|
||||
- If set to `true`, all columns will be sortable, regardless if they have a valid `accessor`
|
||||
- `disableMultiSort: Bool`
|
||||
- Disables multi-sorting for the entire table.
|
||||
- `isMultiSortEvent: Function`
|
||||
@@ -384,7 +389,11 @@ The following options are supported via the main options object passed to `useTa
|
||||
|
||||
The following options are supported on any `Column` object passed to the `columns` options in `useTable()`
|
||||
|
||||
- `disableSorting: Bool`
|
||||
- `defaultCanSort: Bool`
|
||||
- Optional
|
||||
- Defaults to `false`
|
||||
- If set to `true`, this column will be sortable, regardless if it has a valid `accessor`
|
||||
- `disableSortBy: Bool`
|
||||
- Optional
|
||||
- Defaults to `false`
|
||||
- If set to `true`, the sorting for this column will be disabled
|
||||
@@ -470,6 +479,10 @@ The following options are supported via the main options object passed to `useTa
|
||||
- Turn this on if you wish to implement your own row filter outside of the table (eg. server-side or manual row grouping/nesting)
|
||||
- `disableFilters: Bool`
|
||||
- Disables filtering for every column in the entire table.
|
||||
- `defaultCanFilter: Bool`
|
||||
- Optional
|
||||
- Defaults to `false`
|
||||
- If set to `true`, all columns will be filterable, regardless if they have a valid `accessor`
|
||||
- `filterTypes: Object<filterKey: filterType>`
|
||||
- Must be **memoized**
|
||||
- Allows overriding or adding additional filter types for columns to use. If a column's filter type isn't found on this object, it will default to using the built-in filter types.
|
||||
@@ -487,6 +500,10 @@ The following options are supported on any `Column` object passed to the `column
|
||||
- `disableFilters: Bool`
|
||||
- Optional
|
||||
- If set to `true`, will disable filtering for this column
|
||||
- `defaultCanFilter: Bool`
|
||||
- Optional
|
||||
- Defaults to `false`
|
||||
- If set to `true`, this column will be filterable, regardless if it has a valid `accessor`
|
||||
- `filter: String | Function`
|
||||
- Optional
|
||||
- Defaults to `text`
|
||||
@@ -554,7 +571,7 @@ The following options are supported via the main options object passed to `useTa
|
||||
- `manualGroupBy: Bool`
|
||||
- Enables groupBy detection and functionality, but does not automatically perform row grouping.
|
||||
- Turn this on if you wish to implement your own row grouping outside of the table (eg. server-side or manual row grouping/nesting)
|
||||
- `disableGrouping: Bool`
|
||||
- `disableGroupBy: Bool`
|
||||
- Disables groupBy for the entire table.
|
||||
- `aggregations: Object<aggregationKey: aggregationFn>`
|
||||
- Must be **memoized**
|
||||
@@ -574,9 +591,9 @@ The following options are supported on any `Column` object passed to the `column
|
||||
- Receives the table instance and cell model as props
|
||||
- Must return valid JSX
|
||||
- This function (or component) formats this column's value when it is being grouped and aggregated, eg. If this column was showing the number of visits for a user to a website and it was currently being grouped to show an **average** of the values, the `Aggregated` function for this column could format that value to `1,000 Avg. Visits`
|
||||
- `disableGrouping: Boolean`
|
||||
- Defaults to `true`
|
||||
- If `true`, this column is able to be grouped.
|
||||
- `disableGroupBy: Boolean`
|
||||
- Defaults to `false`
|
||||
- If `true`, will disable grouping for this column.
|
||||
|
||||
### Instance Properties
|
||||
|
||||
|
||||
@@ -34,6 +34,12 @@
|
||||
- Column Resizing
|
||||
- [Source](https://github.com/tannerlinsley/react-table/tree/master/examples/column-resizing)
|
||||
- [Open in CodeSandbox](https://codesandbox.io/s/github/tannerlinsley/react-table/tree/master/examples/column-resizing)
|
||||
- Data-Driven Classes and Styles
|
||||
- [Source](https://github.com/tannerlinsley/react-table/tree/master/examples/data-driven-classes-and-styles)
|
||||
- [Open in CodeSandbox](https://codesandbox.io/s/github/tannerlinsley/react-table/tree/master/examples/data-driven-classes-and-styles)
|
||||
- Row DnD
|
||||
- [Source](https://github.com/tannerlinsley/react-table/tree/master/examples/row-dnd)
|
||||
- [Open in CodeSandbox](https://codesandbox.io/s/github/tannerlinsley/react-table/tree/master/examples/row-dnd)
|
||||
- **Complex**
|
||||
- The "Kitchen Sink"
|
||||
- [Source](https://github.com/tannerlinsley/react-table/tree/master/examples/kitchen-sink)
|
||||
|
||||
@@ -93,18 +93,17 @@ function Table({ columns, data }) {
|
||||
|
||||
<div className="rows" {...getTableBodyProps()}>
|
||||
{rows.map(
|
||||
(row, i) =>
|
||||
prepareRow(row) || (
|
||||
(row, i) => {
|
||||
prepareRow(row);
|
||||
return (
|
||||
<div {...row.getRowProps()} className="row body">
|
||||
{row.cells.map(cell => {
|
||||
return (
|
||||
<div {...cell.getCellProps()} className="cell">
|
||||
{cell.render('Cell')}
|
||||
</div>
|
||||
)
|
||||
})}
|
||||
{row.cells.map((cell,index) => (
|
||||
<div {...cell.getCellProps()} key={index} className="cell">
|
||||
{cell.render('Cell')}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
)
|
||||
)}
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -268,8 +268,9 @@ function Table({ columns, data }) {
|
||||
<tbody {...getTableBodyProps()}>
|
||||
<AnimatePresence>
|
||||
{rows.slice(0, 10).map(
|
||||
(row, i) =>
|
||||
prepareRow(row) || (
|
||||
(row, i) => {
|
||||
prepareRow(row);
|
||||
return (
|
||||
<motion.tr
|
||||
{...row.getRowProps({
|
||||
layoutTransition: spring,
|
||||
@@ -288,7 +289,7 @@ function Table({ columns, data }) {
|
||||
)
|
||||
})}
|
||||
</motion.tr>
|
||||
)
|
||||
)}
|
||||
)}
|
||||
</AnimatePresence>
|
||||
</tbody>
|
||||
|
||||
@@ -60,14 +60,15 @@ function Table({ columns, data }) {
|
||||
</thead>
|
||||
<tbody {...getTableBodyProps()}>
|
||||
{rows.map(
|
||||
(row, i) =>
|
||||
prepareRow(row) || (
|
||||
(row, i) => {
|
||||
prepareRow(row);
|
||||
return (
|
||||
<tr {...row.getRowProps()}>
|
||||
{row.cells.map(cell => {
|
||||
return <td {...cell.getCellProps()}>{cell.render('Cell')}</td>
|
||||
})}
|
||||
</tr>
|
||||
)
|
||||
)}
|
||||
)}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@@ -76,8 +76,9 @@ function Table({ columns, data }) {
|
||||
|
||||
<div {...getTableBodyProps()}>
|
||||
{rows.map(
|
||||
(row, i) =>
|
||||
prepareRow(row) || (
|
||||
(row, i) => {
|
||||
prepareRow(row);
|
||||
return (
|
||||
<div {...row.getRowProps()} className="tr">
|
||||
{row.cells.map(cell => {
|
||||
return (
|
||||
@@ -87,7 +88,7 @@ function Table({ columns, data }) {
|
||||
)
|
||||
})}
|
||||
</div>
|
||||
)
|
||||
)}
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -81,8 +81,9 @@ function Table({ columns, data }) {
|
||||
</thead>
|
||||
<tbody {...getTableBodyProps()}>
|
||||
{rows.slice(0, 10).map(
|
||||
(row, i) =>
|
||||
prepareRow(row) || (
|
||||
(row, i) => {
|
||||
prepareRow(row);
|
||||
return (
|
||||
<tr {...row.getRowProps()}>
|
||||
{row.cells.map((cell, i) => {
|
||||
return (
|
||||
@@ -90,7 +91,7 @@ function Table({ columns, data }) {
|
||||
)
|
||||
})}
|
||||
</tr>
|
||||
)
|
||||
)}
|
||||
)}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@@ -103,8 +103,9 @@ function Table({ columns, data }) {
|
||||
|
||||
<div {...getTableBodyProps()}>
|
||||
{rows.map(
|
||||
(row, i) =>
|
||||
prepareRow(row) || (
|
||||
(row, i) => {
|
||||
prepareRow(row);
|
||||
return (
|
||||
<div {...row.getRowProps()} className="tr">
|
||||
{row.cells.map(cell => {
|
||||
return (
|
||||
@@ -114,7 +115,7 @@ function Table({ columns, data }) {
|
||||
)
|
||||
})}
|
||||
</div>
|
||||
)
|
||||
)}
|
||||
)}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"presets": ["react-app"],
|
||||
"plugins": ["styled-components"]
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
SKIP_PREFLIGHT_CHECK=true
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"extends": ["react-app", "prettier"],
|
||||
"rules": {
|
||||
// "eqeqeq": 0,
|
||||
// "jsx-a11y/anchor-is-valid": 0
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||
|
||||
# dependencies
|
||||
/node_modules
|
||||
/.pnp
|
||||
.pnp.js
|
||||
|
||||
# testing
|
||||
/coverage
|
||||
|
||||
# production
|
||||
/build
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
@@ -0,0 +1,29 @@
|
||||
const path = require('path')
|
||||
const resolveFrom = require('resolve-from')
|
||||
|
||||
const fixLinkedDependencies = config => {
|
||||
config.resolve = {
|
||||
...config.resolve,
|
||||
alias: {
|
||||
...config.resolve.alias,
|
||||
react$: resolveFrom(path.resolve('node_modules'), 'react'),
|
||||
'react-dom$': resolveFrom(path.resolve('node_modules'), 'react-dom'),
|
||||
},
|
||||
}
|
||||
return config
|
||||
}
|
||||
|
||||
const includeSrcDirectory = config => {
|
||||
config.resolve = {
|
||||
...config.resolve,
|
||||
modules: [path.resolve('src'), ...config.resolve.modules],
|
||||
}
|
||||
return config
|
||||
}
|
||||
|
||||
module.exports = [
|
||||
['use-babel-config', '.babelrc'],
|
||||
['use-eslint-config', '.eslintrc'],
|
||||
fixLinkedDependencies,
|
||||
// includeSrcDirectory,
|
||||
]
|
||||
@@ -0,0 +1,6 @@
|
||||
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app) and Rescripts.
|
||||
|
||||
You can:
|
||||
|
||||
- [Open this example in a new CodeSandbox](https://codesandbox.io/s/github/tannerlinsley/react-table/tree/master/examples/data-driven-classes-and-styles)
|
||||
- `yarn` and `yarn start` to run and edit the example
|
||||
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "rescripts start",
|
||||
"build": "rescripts build",
|
||||
"test": "rescripts test",
|
||||
"eject": "rescripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"namor": "^1.1.2",
|
||||
"react": "^16.8.6",
|
||||
"react-dom": "^16.8.6",
|
||||
"react-scripts": "3.0.1",
|
||||
"react-table": "next",
|
||||
"styled-components": "^4.3.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rescripts/cli": "^0.0.11",
|
||||
"@rescripts/rescript-use-babel-config": "^0.0.8",
|
||||
"@rescripts/rescript-use-eslint-config": "^0.0.9",
|
||||
"babel-eslint": "10.0.1"
|
||||
},
|
||||
"browserslist": {
|
||||
"production": [
|
||||
">0.2%",
|
||||
"not dead",
|
||||
"not op_mini all"
|
||||
],
|
||||
"development": [
|
||||
"last 1 chrome version",
|
||||
"last 1 firefox version",
|
||||
"last 1 safari version"
|
||||
]
|
||||
}
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 3.8 KiB |
@@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="theme-color" content="#000000" />
|
||||
<!--
|
||||
manifest.json provides metadata used when your web app is installed on a
|
||||
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
|
||||
-->
|
||||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
||||
<!--
|
||||
Notice the use of %PUBLIC_URL% in the tags above.
|
||||
It will be replaced with the URL of the `public` folder during the build.
|
||||
Only files inside the `public` folder can be referenced from the HTML.
|
||||
|
||||
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
|
||||
work correctly both with client-side routing and a non-root public URL.
|
||||
Learn how to configure a non-root public URL by running `npm run build`.
|
||||
-->
|
||||
<title>React App</title>
|
||||
</head>
|
||||
<body>
|
||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||
<div id="root"></div>
|
||||
<!--
|
||||
This HTML file is a template.
|
||||
If you open it directly in the browser, you will see an empty page.
|
||||
|
||||
You can add webfonts, meta tags, or analytics to this file.
|
||||
The build step will place the bundled scripts into the <body> tag.
|
||||
|
||||
To begin the development, run `npm start` or `yarn start`.
|
||||
To create a production bundle, use `npm run build` or `yarn build`.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"short_name": "React App",
|
||||
"name": "Create React App Sample",
|
||||
"icons": [
|
||||
{
|
||||
"src": "favicon.ico",
|
||||
"sizes": "64x64 32x32 24x24 16x16",
|
||||
"type": "image/x-icon"
|
||||
}
|
||||
],
|
||||
"start_url": ".",
|
||||
"display": "standalone",
|
||||
"theme_color": "#000000",
|
||||
"background_color": "#ffffff"
|
||||
}
|
||||
@@ -0,0 +1,202 @@
|
||||
import React from 'react'
|
||||
import styled from 'styled-components'
|
||||
import { useTable, utils } from 'react-table'
|
||||
|
||||
import makeData from './makeData'
|
||||
|
||||
const Styles = styled.div`
|
||||
padding: 1rem;
|
||||
|
||||
.user {
|
||||
background-color: blue;
|
||||
color: white;
|
||||
}
|
||||
|
||||
table {
|
||||
border-spacing: 0;
|
||||
border: 1px solid black;
|
||||
|
||||
tr {
|
||||
:last-child {
|
||||
td {
|
||||
border-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
th,
|
||||
td {
|
||||
margin: 0;
|
||||
padding: 0.5rem;
|
||||
border-bottom: 1px solid black;
|
||||
border-right: 1px solid black;
|
||||
|
||||
:last-child {
|
||||
border-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
`
|
||||
|
||||
// Create a default prop getter
|
||||
const defaultPropGetter = () => ({})
|
||||
|
||||
// Expose some prop getters for headers, rows and cells, or more if you want!
|
||||
function Table({
|
||||
columns,
|
||||
data,
|
||||
getHeaderProps = defaultPropGetter,
|
||||
getColumnProps = defaultPropGetter,
|
||||
getRowProps = defaultPropGetter,
|
||||
getCellProps = defaultPropGetter,
|
||||
}) {
|
||||
const {
|
||||
getTableProps,
|
||||
getTableBodyProps,
|
||||
headerGroups,
|
||||
rows,
|
||||
prepareRow,
|
||||
} = useTable({
|
||||
columns,
|
||||
data,
|
||||
})
|
||||
|
||||
return (
|
||||
<table {...getTableProps()}>
|
||||
<thead>
|
||||
{headerGroups.map(headerGroup => (
|
||||
<tr {...headerGroup.getHeaderGroupProps()}>
|
||||
{headerGroup.headers.map(column => (
|
||||
<th
|
||||
// Merge all of the header Props
|
||||
{...utils.mergeProps(
|
||||
column.getHeaderProps(),
|
||||
{
|
||||
className: column.className,
|
||||
style: column.style,
|
||||
},
|
||||
getColumnProps(column),
|
||||
getHeaderProps(column)
|
||||
)}
|
||||
>
|
||||
{column.render('Header')}
|
||||
</th>
|
||||
))}
|
||||
</tr>
|
||||
))}
|
||||
</thead>
|
||||
<tbody {...getTableBodyProps()}>
|
||||
{rows.map((row, i) => {
|
||||
prepareRow(row)
|
||||
return (
|
||||
// Merge row props
|
||||
<tr {...utils.mergeProps(row.getRowProps(), getRowProps(row))}>
|
||||
{row.cells.map(cell => {
|
||||
return (
|
||||
<td
|
||||
// Merge cell props
|
||||
{...utils.mergeProps(
|
||||
cell.getCellProps(),
|
||||
{
|
||||
className: cell.column.className,
|
||||
style: cell.column.style,
|
||||
},
|
||||
getColumnProps(cell.column),
|
||||
getCellProps(cell)
|
||||
)}
|
||||
>
|
||||
{cell.render('Cell')}
|
||||
</td>
|
||||
)
|
||||
})}
|
||||
</tr>
|
||||
)
|
||||
})}
|
||||
</tbody>
|
||||
</table>
|
||||
)
|
||||
}
|
||||
|
||||
function App() {
|
||||
const columns = React.useMemo(
|
||||
() => [
|
||||
{
|
||||
Header: 'Name',
|
||||
columns: [
|
||||
{
|
||||
Header: 'First Name',
|
||||
accessor: 'firstName',
|
||||
className: 'user',
|
||||
style: {
|
||||
fontWeight: 'bolder',
|
||||
},
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
Header: 'Scores',
|
||||
columns: [
|
||||
{
|
||||
Header: 'Day 1',
|
||||
accessor: 'score0',
|
||||
},
|
||||
{
|
||||
Header: 'Day 2',
|
||||
accessor: 'score1',
|
||||
},
|
||||
{
|
||||
Header: 'Day 3',
|
||||
accessor: 'score2',
|
||||
},
|
||||
{
|
||||
Header: 'Day 4',
|
||||
accessor: 'score3',
|
||||
},
|
||||
{
|
||||
Header: 'Day 5',
|
||||
accessor: 'score4',
|
||||
},
|
||||
{
|
||||
Header: 'Day 6',
|
||||
accessor: 'score5',
|
||||
},
|
||||
{
|
||||
Header: 'Day 7',
|
||||
accessor: 'score6',
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
[]
|
||||
)
|
||||
|
||||
const data = React.useMemo(() => makeData(20), [])
|
||||
|
||||
return (
|
||||
<Styles>
|
||||
<Table
|
||||
columns={columns}
|
||||
data={data}
|
||||
getHeaderProps={column => ({
|
||||
onClick: () => alert('Header!'),
|
||||
})}
|
||||
getColumnProps={column => ({
|
||||
onClick: () => alert('Column!'),
|
||||
})}
|
||||
getRowProps={row => ({
|
||||
style: {
|
||||
background: row.index % 2 === 0 ? 'rgba(0,0,0,.1)' : 'white',
|
||||
},
|
||||
})}
|
||||
getCellProps={cellInfo => ({
|
||||
style: {
|
||||
backgroundColor: `hsl(${120 * ((120 - cellInfo.value) / 120) * -1 +
|
||||
120}, 100%, 67%)`,
|
||||
},
|
||||
})}
|
||||
/>
|
||||
</Styles>
|
||||
)
|
||||
}
|
||||
|
||||
export default App
|
||||
@@ -0,0 +1,9 @@
|
||||
import React from 'react'
|
||||
import ReactDOM from 'react-dom'
|
||||
import App from './App'
|
||||
|
||||
it('renders without crashing', () => {
|
||||
const div = document.createElement('div')
|
||||
ReactDOM.render(<App />, div)
|
||||
ReactDOM.unmountComponentAtNode(div)
|
||||
})
|
||||
@@ -0,0 +1,13 @@
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
||||
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
||||
sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
||||
monospace;
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
import React from 'react'
|
||||
import ReactDOM from 'react-dom'
|
||||
import './index.css'
|
||||
import App from './App'
|
||||
import * as serviceWorker from './serviceWorker'
|
||||
|
||||
ReactDOM.render(<App />, document.getElementById('root'))
|
||||
|
||||
// If you want your app to work offline and load faster, you can change
|
||||
// unregister() to register() below. Note this comes with some pitfalls.
|
||||
// Learn more about service workers: https://bit.ly/CRA-PWA
|
||||
serviceWorker.unregister()
|
||||
@@ -0,0 +1,36 @@
|
||||
import namor from 'namor'
|
||||
|
||||
const range = len => {
|
||||
const arr = []
|
||||
for (let i = 0; i < len; i++) {
|
||||
arr.push(i)
|
||||
}
|
||||
return arr
|
||||
}
|
||||
|
||||
const newPerson = () => {
|
||||
return {
|
||||
firstName: namor.generate({ words: 1, numbers: 0 }),
|
||||
score0: Math.floor(Math.random() * 100),
|
||||
score1: Math.floor(Math.random() * 100),
|
||||
score2: Math.floor(Math.random() * 100),
|
||||
score3: Math.floor(Math.random() * 100),
|
||||
score4: Math.floor(Math.random() * 100),
|
||||
score5: Math.floor(Math.random() * 100),
|
||||
score6: Math.floor(Math.random() * 100),
|
||||
}
|
||||
}
|
||||
|
||||
export default function makeData(...lens) {
|
||||
const makeDataLevel = (depth = 0) => {
|
||||
const len = lens[depth]
|
||||
return range(len).map(d => {
|
||||
return {
|
||||
...newPerson(),
|
||||
subRows: lens[depth + 1] ? makeDataLevel(depth + 1) : undefined,
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
return makeDataLevel()
|
||||
}
|
||||
@@ -0,0 +1,135 @@
|
||||
// This optional code is used to register a service worker.
|
||||
// register() is not called by default.
|
||||
|
||||
// This lets the app load faster on subsequent visits in production, and gives
|
||||
// it offline capabilities. However, it also means that developers (and users)
|
||||
// will only see deployed updates on subsequent visits to a page, after all the
|
||||
// existing tabs open on the page have been closed, since previously cached
|
||||
// resources are updated in the background.
|
||||
|
||||
// To learn more about the benefits of this model and instructions on how to
|
||||
// opt-in, read https://bit.ly/CRA-PWA
|
||||
|
||||
const isLocalhost = Boolean(
|
||||
window.location.hostname === 'localhost' ||
|
||||
// [::1] is the IPv6 localhost address.
|
||||
window.location.hostname === '[::1]' ||
|
||||
// 127.0.0.1/8 is considered localhost for IPv4.
|
||||
window.location.hostname.match(
|
||||
/^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/
|
||||
)
|
||||
)
|
||||
|
||||
export function register(config) {
|
||||
if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) {
|
||||
// The URL constructor is available in all browsers that support SW.
|
||||
const publicUrl = new URL(process.env.PUBLIC_URL, window.location.href)
|
||||
if (publicUrl.origin !== window.location.origin) {
|
||||
// Our service worker won't work if PUBLIC_URL is on a different origin
|
||||
// from what our page is served on. This might happen if a CDN is used to
|
||||
// serve assets; see https://github.com/facebook/create-react-app/issues/2374
|
||||
return
|
||||
}
|
||||
|
||||
window.addEventListener('load', () => {
|
||||
const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`
|
||||
|
||||
if (isLocalhost) {
|
||||
// This is running on localhost. Let's check if a service worker still exists or not.
|
||||
checkValidServiceWorker(swUrl, config)
|
||||
|
||||
// Add some additional logging to localhost, pointing developers to the
|
||||
// service worker/PWA documentation.
|
||||
navigator.serviceWorker.ready.then(() => {
|
||||
console.log(
|
||||
'This web app is being served cache-first by a service ' +
|
||||
'worker. To learn more, visit https://bit.ly/CRA-PWA'
|
||||
)
|
||||
})
|
||||
} else {
|
||||
// Is not localhost. Just register service worker
|
||||
registerValidSW(swUrl, config)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
function registerValidSW(swUrl, config) {
|
||||
navigator.serviceWorker
|
||||
.register(swUrl)
|
||||
.then(registration => {
|
||||
registration.onupdatefound = () => {
|
||||
const installingWorker = registration.installing
|
||||
if (installingWorker == null) {
|
||||
return
|
||||
}
|
||||
installingWorker.onstatechange = () => {
|
||||
if (installingWorker.state === 'installed') {
|
||||
if (navigator.serviceWorker.controller) {
|
||||
// At this point, the updated precached content has been fetched,
|
||||
// but the previous service worker will still serve the older
|
||||
// content until all client tabs are closed.
|
||||
console.log(
|
||||
'New content is available and will be used when all ' +
|
||||
'tabs for this page are closed. See https://bit.ly/CRA-PWA.'
|
||||
)
|
||||
|
||||
// Execute callback
|
||||
if (config && config.onUpdate) {
|
||||
config.onUpdate(registration)
|
||||
}
|
||||
} else {
|
||||
// At this point, everything has been precached.
|
||||
// It's the perfect time to display a
|
||||
// "Content is cached for offline use." message.
|
||||
console.log('Content is cached for offline use.')
|
||||
|
||||
// Execute callback
|
||||
if (config && config.onSuccess) {
|
||||
config.onSuccess(registration)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
.catch(error => {
|
||||
console.error('Error during service worker registration:', error)
|
||||
})
|
||||
}
|
||||
|
||||
function checkValidServiceWorker(swUrl, config) {
|
||||
// Check if the service worker can be found. If it can't reload the page.
|
||||
fetch(swUrl)
|
||||
.then(response => {
|
||||
// Ensure service worker exists, and that we really are getting a JS file.
|
||||
const contentType = response.headers.get('content-type')
|
||||
if (
|
||||
response.status === 404 ||
|
||||
(contentType != null && contentType.indexOf('javascript') === -1)
|
||||
) {
|
||||
// No service worker found. Probably a different app. Reload the page.
|
||||
navigator.serviceWorker.ready.then(registration => {
|
||||
registration.unregister().then(() => {
|
||||
window.location.reload()
|
||||
})
|
||||
})
|
||||
} else {
|
||||
// Service worker found. Proceed as normal.
|
||||
registerValidSW(swUrl, config)
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
console.log(
|
||||
'No internet connection found. App is running in offline mode.'
|
||||
)
|
||||
})
|
||||
}
|
||||
|
||||
export function unregister() {
|
||||
if ('serviceWorker' in navigator) {
|
||||
navigator.serviceWorker.ready.then(registration => {
|
||||
registration.unregister()
|
||||
})
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -127,8 +127,9 @@ function Table({ columns, data, updateMyData, disablePageResetOnDataChange }) {
|
||||
</thead>
|
||||
<tbody {...getTableBodyProps()}>
|
||||
{page.map(
|
||||
(row, i) =>
|
||||
prepareRow(row) || (
|
||||
(row, i) => {
|
||||
prepareRow(row);
|
||||
return (
|
||||
<tr {...row.getRowProps()}>
|
||||
{row.cells.map(cell => {
|
||||
return (
|
||||
@@ -136,7 +137,7 @@ function Table({ columns, data, updateMyData, disablePageResetOnDataChange }) {
|
||||
)
|
||||
})}
|
||||
</tr>
|
||||
)
|
||||
)}
|
||||
)}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@@ -63,8 +63,9 @@ function Table({ columns: userColumns, data }) {
|
||||
</thead>
|
||||
<tbody {...getTableBodyProps()}>
|
||||
{rows.map(
|
||||
(row, i) =>
|
||||
prepareRow(row) || (
|
||||
(row, i) => {
|
||||
prepareRow(row);
|
||||
return (
|
||||
<tr {...row.getRowProps()}>
|
||||
{row.cells.map(cell => {
|
||||
return (
|
||||
@@ -72,7 +73,7 @@ function Table({ columns: userColumns, data }) {
|
||||
)
|
||||
})}
|
||||
</tr>
|
||||
)
|
||||
)}
|
||||
)}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@@ -254,8 +254,9 @@ function Table({ columns, data }) {
|
||||
</thead>
|
||||
<tbody {...getTableBodyProps()}>
|
||||
{firstPageRows.map(
|
||||
(row, i) =>
|
||||
prepareRow(row) || (
|
||||
(row, i) => {
|
||||
prepareRow(row);
|
||||
return (
|
||||
<tr {...row.getRowProps()}>
|
||||
{row.cells.map(cell => {
|
||||
return (
|
||||
@@ -263,7 +264,7 @@ function Table({ columns, data }) {
|
||||
)
|
||||
})}
|
||||
</tr>
|
||||
)
|
||||
)}
|
||||
)}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@@ -80,8 +80,9 @@ function Table({ columns, data }) {
|
||||
</thead>
|
||||
<tbody {...getTableBodyProps()}>
|
||||
{firstPageRows.map(
|
||||
(row, i) =>
|
||||
prepareRow(row) || (
|
||||
(row, i) => {
|
||||
prepareRow(row);
|
||||
return (
|
||||
<tr {...row.getRowProps()}>
|
||||
{row.cells.map(cell => {
|
||||
return (
|
||||
@@ -120,7 +121,7 @@ function Table({ columns, data }) {
|
||||
)
|
||||
})}
|
||||
</tr>
|
||||
)
|
||||
)}
|
||||
)}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@@ -351,8 +351,9 @@ function Table({ columns, data, updateMyData, disablePageResetOnDataChange }) {
|
||||
</thead>
|
||||
<tbody {...getTableBodyProps()}>
|
||||
{page.map(
|
||||
row =>
|
||||
prepareRow(row) || (
|
||||
row => {
|
||||
prepareRow(row);
|
||||
return (
|
||||
<tr {...row.getRowProps()}>
|
||||
{row.cells.map(cell => {
|
||||
return (
|
||||
@@ -378,7 +379,7 @@ function Table({ columns, data, updateMyData, disablePageResetOnDataChange }) {
|
||||
)
|
||||
})}
|
||||
</tr>
|
||||
)
|
||||
)}
|
||||
)}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@@ -351,8 +351,9 @@ function Table({ columns, data, updateMyData, disablePageResetOnDataChange }) {
|
||||
</thead>
|
||||
<tbody {...getTableBodyProps()}>
|
||||
{page.map(
|
||||
row =>
|
||||
prepareRow(row) || (
|
||||
row => {
|
||||
prepareRow(row);
|
||||
return (
|
||||
<tr {...row.getRowProps()}>
|
||||
{row.cells.map(cell => {
|
||||
return (
|
||||
@@ -378,7 +379,7 @@ function Table({ columns, data, updateMyData, disablePageResetOnDataChange }) {
|
||||
)
|
||||
})}
|
||||
</tr>
|
||||
)
|
||||
)}
|
||||
)}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@@ -40,8 +40,9 @@ function Table({ columns, data }) {
|
||||
</TableHead>
|
||||
<TableBody>
|
||||
{rows.map(
|
||||
(row, i) =>
|
||||
prepareRow(row) || (
|
||||
(row, i) => {
|
||||
prepareRow(row);
|
||||
return (
|
||||
<TableRow {...row.getRowProps()}>
|
||||
{row.cells.map(cell => {
|
||||
return (
|
||||
@@ -51,7 +52,7 @@ function Table({ columns, data }) {
|
||||
)
|
||||
})}
|
||||
</TableRow>
|
||||
)
|
||||
)}
|
||||
)}
|
||||
</TableBody>
|
||||
</MaUTable>
|
||||
|
||||
@@ -116,8 +116,9 @@ function Table({
|
||||
</thead>
|
||||
<tbody {...getTableBodyProps()}>
|
||||
{page.map(
|
||||
(row, i) =>
|
||||
prepareRow(row) || (
|
||||
(row, i) => {
|
||||
prepareRow(row);
|
||||
return (
|
||||
<tr {...row.getRowProps()}>
|
||||
{row.cells.map(cell => {
|
||||
return (
|
||||
@@ -125,7 +126,7 @@ function Table({
|
||||
);
|
||||
})}
|
||||
</tr>
|
||||
)
|
||||
)}
|
||||
)}
|
||||
<tr>
|
||||
{loading ? (
|
||||
|
||||
@@ -96,8 +96,9 @@ function Table({ columns, data }) {
|
||||
</thead>
|
||||
<tbody {...getTableBodyProps()}>
|
||||
{page.map(
|
||||
(row, i) =>
|
||||
prepareRow(row) || (
|
||||
(row, i) => {
|
||||
prepareRow(row);
|
||||
return (
|
||||
<tr {...row.getRowProps()}>
|
||||
{row.cells.map(cell => {
|
||||
return (
|
||||
@@ -105,7 +106,7 @@ function Table({ columns, data }) {
|
||||
)
|
||||
})}
|
||||
</tr>
|
||||
)
|
||||
)}
|
||||
)}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"presets": ["react-app"],
|
||||
"plugins": ["styled-components"]
|
||||
}
|
||||
@@ -0,0 +1 @@
|
||||
SKIP_PREFLIGHT_CHECK=true
|
||||
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"extends": ["react-app", "prettier"],
|
||||
"rules": {
|
||||
// "eqeqeq": 0,
|
||||
// "jsx-a11y/anchor-is-valid": 0
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
|
||||
|
||||
# dependencies
|
||||
/node_modules
|
||||
/.pnp
|
||||
.pnp.js
|
||||
|
||||
# testing
|
||||
/coverage
|
||||
|
||||
# production
|
||||
/build
|
||||
|
||||
# misc
|
||||
.DS_Store
|
||||
.env.local
|
||||
.env.development.local
|
||||
.env.test.local
|
||||
.env.production.local
|
||||
|
||||
npm-debug.log*
|
||||
yarn-debug.log*
|
||||
yarn-error.log*
|
||||
@@ -0,0 +1,29 @@
|
||||
const path = require('path')
|
||||
const resolveFrom = require('resolve-from')
|
||||
|
||||
const fixLinkedDependencies = config => {
|
||||
config.resolve = {
|
||||
...config.resolve,
|
||||
alias: {
|
||||
...config.resolve.alias,
|
||||
react$: resolveFrom(path.resolve('node_modules'), 'react'),
|
||||
'react-dom$': resolveFrom(path.resolve('node_modules'), 'react-dom'),
|
||||
},
|
||||
}
|
||||
return config
|
||||
}
|
||||
|
||||
const includeSrcDirectory = config => {
|
||||
config.resolve = {
|
||||
...config.resolve,
|
||||
modules: [path.resolve('src'), ...config.resolve.modules],
|
||||
}
|
||||
return config
|
||||
}
|
||||
|
||||
module.exports = [
|
||||
['use-babel-config', '.babelrc'],
|
||||
['use-eslint-config', '.eslintrc'],
|
||||
fixLinkedDependencies,
|
||||
// includeSrcDirectory,
|
||||
]
|
||||
@@ -0,0 +1,6 @@
|
||||
This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app) and Rescripts.
|
||||
|
||||
You can:
|
||||
|
||||
- [Open this example in a new CodeSandbox](https://codesandbox.io/s/github/tannerlinsley/react-table/tree/master/examples/row-dhd)
|
||||
- `yarn` and `yarn start` to run and edit the example
|
||||
@@ -0,0 +1,38 @@
|
||||
{
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"start": "rescripts start",
|
||||
"build": "rescripts build",
|
||||
"test": "rescripts test",
|
||||
"eject": "rescripts eject"
|
||||
},
|
||||
"dependencies": {
|
||||
"namor": "^1.1.2",
|
||||
"react": "^16.8.6",
|
||||
"react-dom": "^16.8.6",
|
||||
"react-scripts": "3.0.1",
|
||||
"react-table": "next",
|
||||
"styled-components": "^4.3.2",
|
||||
"react-dnd": "^9.4.0",
|
||||
"react-dnd-html5-backend": "^9.4.0",
|
||||
"immutability-helper": "^3.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rescripts/cli": "^0.0.11",
|
||||
"@rescripts/rescript-use-babel-config": "^0.0.8",
|
||||
"@rescripts/rescript-use-eslint-config": "^0.0.9",
|
||||
"babel-eslint": "10.0.1"
|
||||
},
|
||||
"browserslist": {
|
||||
"production": [
|
||||
">0.2%",
|
||||
"not dead",
|
||||
"not op_mini all"
|
||||
],
|
||||
"development": [
|
||||
"last 1 chrome version",
|
||||
"last 1 firefox version",
|
||||
"last 1 safari version"
|
||||
]
|
||||
}
|
||||
}
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 3.8 KiB |
@@ -0,0 +1,38 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8" />
|
||||
<link rel="shortcut icon" href="%PUBLIC_URL%/favicon.ico" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<meta name="theme-color" content="#000000" />
|
||||
<!--
|
||||
manifest.json provides metadata used when your web app is installed on a
|
||||
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
|
||||
-->
|
||||
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
|
||||
<!--
|
||||
Notice the use of %PUBLIC_URL% in the tags above.
|
||||
It will be replaced with the URL of the `public` folder during the build.
|
||||
Only files inside the `public` folder can be referenced from the HTML.
|
||||
|
||||
Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will
|
||||
work correctly both with client-side routing and a non-root public URL.
|
||||
Learn how to configure a non-root public URL by running `npm run build`.
|
||||
-->
|
||||
<title>React App</title>
|
||||
</head>
|
||||
<body>
|
||||
<noscript>You need to enable JavaScript to run this app.</noscript>
|
||||
<div id="root"></div>
|
||||
<!--
|
||||
This HTML file is a template.
|
||||
If you open it directly in the browser, you will see an empty page.
|
||||
|
||||
You can add webfonts, meta tags, or analytics to this file.
|
||||
The build step will place the bundled scripts into the <body> tag.
|
||||
|
||||
To begin the development, run `npm start` or `yarn start`.
|
||||
To create a production bundle, use `npm run build` or `yarn build`.
|
||||
-->
|
||||
</body>
|
||||
</html>
|
||||
@@ -0,0 +1,15 @@
|
||||
{
|
||||
"short_name": "React App",
|
||||
"name": "Create React App Sample",
|
||||
"icons": [
|
||||
{
|
||||
"src": "favicon.ico",
|
||||
"sizes": "64x64 32x32 24x24 16x16",
|
||||
"type": "image/x-icon"
|
||||
}
|
||||
],
|
||||
"start_url": ".",
|
||||
"display": "standalone",
|
||||
"theme_color": "#000000",
|
||||
"background_color": "#ffffff"
|
||||
}
|
||||
@@ -0,0 +1,222 @@
|
||||
import React, { useState, useMemo, useRef, useCallback } from 'react'
|
||||
import styled from 'styled-components'
|
||||
import { useTable } from 'react-table'
|
||||
import { DndProvider, useDrag, useDrop } from 'react-dnd'
|
||||
import HTML5Backend from 'react-dnd-html5-backend'
|
||||
import update from 'immutability-helper'
|
||||
|
||||
import makeData from './makeData'
|
||||
|
||||
const Styles = styled.div`
|
||||
padding: 1rem;
|
||||
|
||||
table {
|
||||
border-spacing: 0;
|
||||
border: 1px solid black;
|
||||
|
||||
tr {
|
||||
:last-child {
|
||||
td {
|
||||
border-bottom: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
th,
|
||||
td {
|
||||
margin: 0;
|
||||
padding: 0.5rem;
|
||||
border-bottom: 1px solid black;
|
||||
border-right: 1px solid black;
|
||||
|
||||
:last-child {
|
||||
border-right: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
`
|
||||
|
||||
const Table = ({ columns, data }) => {
|
||||
const [records, setRecords] = useState(data)
|
||||
|
||||
const getRowID = useCallback(row => {
|
||||
return row.id
|
||||
}, [])
|
||||
|
||||
const {
|
||||
getTableProps,
|
||||
getTableBodyProps,
|
||||
headerGroups,
|
||||
rows,
|
||||
prepareRow,
|
||||
} = useTable({
|
||||
data: records,
|
||||
columns,
|
||||
getRowID,
|
||||
})
|
||||
|
||||
const moveRow = (dragIndex, hoverIndex) => {
|
||||
const dragRecord = records[dragIndex]
|
||||
setRecords(
|
||||
update(records, {
|
||||
$splice: [[dragIndex, 1], [hoverIndex, 0, dragRecord]],
|
||||
})
|
||||
)
|
||||
}
|
||||
|
||||
return (
|
||||
<DndProvider backend={HTML5Backend}>
|
||||
<table {...getTableProps()}>
|
||||
<thead>
|
||||
{headerGroups.map(headerGroup => (
|
||||
<tr {...headerGroup.getHeaderGroupProps()}>
|
||||
<th></th>
|
||||
{headerGroup.headers.map(column => (
|
||||
<th {...column.getHeaderProps()}>{column.render('Header')}</th>
|
||||
))}
|
||||
</tr>
|
||||
))}
|
||||
</thead>
|
||||
<tbody {...getTableBodyProps()}>
|
||||
{rows.map(
|
||||
(row, index) =>
|
||||
prepareRow(row) || (
|
||||
<Row
|
||||
index={index}
|
||||
row={row}
|
||||
moveRow={moveRow}
|
||||
{...row.getRowProps()}
|
||||
/>
|
||||
)
|
||||
)}
|
||||
</tbody>
|
||||
</table>
|
||||
</DndProvider>
|
||||
)
|
||||
}
|
||||
|
||||
const DND_ITEM_TYPE = 'row'
|
||||
|
||||
const Row = ({ row, index, moveRow }) => {
|
||||
const dropRef = useRef(null)
|
||||
const dragRef = useRef(null)
|
||||
|
||||
const [, drop] = useDrop({
|
||||
accept: DND_ITEM_TYPE,
|
||||
hover(item, monitor) {
|
||||
if (!dropRef.current) {
|
||||
return
|
||||
}
|
||||
const dragIndex = item.index
|
||||
const hoverIndex = index
|
||||
// Don't replace items with themselves
|
||||
if (dragIndex === hoverIndex) {
|
||||
return
|
||||
}
|
||||
// Determine rectangle on screen
|
||||
const hoverBoundingRect = dropRef.current.getBoundingClientRect()
|
||||
// Get vertical middle
|
||||
const hoverMiddleY =
|
||||
(hoverBoundingRect.bottom - hoverBoundingRect.top) / 2
|
||||
// Determine mouse position
|
||||
const clientOffset = monitor.getClientOffset()
|
||||
// Get pixels to the top
|
||||
const hoverClientY = clientOffset.y - hoverBoundingRect.top
|
||||
// Only perform the move when the mouse has crossed half of the items height
|
||||
// When dragging downwards, only move when the cursor is below 50%
|
||||
// When dragging upwards, only move when the cursor is above 50%
|
||||
// Dragging downwards
|
||||
if (dragIndex < hoverIndex && hoverClientY < hoverMiddleY) {
|
||||
return
|
||||
}
|
||||
// Dragging upwards
|
||||
if (dragIndex > hoverIndex && hoverClientY > hoverMiddleY) {
|
||||
return
|
||||
}
|
||||
// Time to actually perform the action
|
||||
moveRow(dragIndex, hoverIndex)
|
||||
// Note: we're mutating the monitor item here!
|
||||
// Generally it's better to avoid mutations,
|
||||
// but it's good here for the sake of performance
|
||||
// to avoid expensive index searches.
|
||||
item.index = hoverIndex
|
||||
},
|
||||
})
|
||||
|
||||
const [{ isDragging }, drag, preview] = useDrag({
|
||||
item: { type: DND_ITEM_TYPE, index },
|
||||
collect: monitor => ({
|
||||
isDragging: monitor.isDragging(),
|
||||
}),
|
||||
})
|
||||
|
||||
const opacity = isDragging ? 0 : 1
|
||||
|
||||
preview(drop(dropRef))
|
||||
drag(dragRef)
|
||||
|
||||
return (
|
||||
<tr ref={dropRef} style={{ opacity }}>
|
||||
<td ref={dragRef}>move</td>
|
||||
{row.cells.map(cell => {
|
||||
return <td {...cell.getCellProps()}>{cell.render('Cell')}</td>
|
||||
})}
|
||||
</tr>
|
||||
)
|
||||
}
|
||||
|
||||
const App = () => {
|
||||
const columns = useMemo(
|
||||
() => [
|
||||
{
|
||||
Header: 'ID',
|
||||
accessor: 'id',
|
||||
},
|
||||
{
|
||||
Header: 'Name',
|
||||
columns: [
|
||||
{
|
||||
Header: 'First Name',
|
||||
accessor: 'firstName',
|
||||
},
|
||||
{
|
||||
Header: 'Last Name',
|
||||
accessor: 'lastName',
|
||||
},
|
||||
],
|
||||
},
|
||||
{
|
||||
Header: 'Info',
|
||||
columns: [
|
||||
{
|
||||
Header: 'Age',
|
||||
accessor: 'age',
|
||||
},
|
||||
{
|
||||
Header: 'Visits',
|
||||
accessor: 'visits',
|
||||
},
|
||||
{
|
||||
Header: 'Status',
|
||||
accessor: 'status',
|
||||
},
|
||||
{
|
||||
Header: 'Profile Progress',
|
||||
accessor: 'progress',
|
||||
},
|
||||
],
|
||||
},
|
||||
],
|
||||
[]
|
||||
)
|
||||
|
||||
const data = React.useMemo(() => makeData(20), [])
|
||||
|
||||
return (
|
||||
<Styles>
|
||||
<Table columns={columns} data={data} />
|
||||
</Styles>
|
||||
)
|
||||
}
|
||||
|
||||
export default App
|
||||
@@ -0,0 +1,9 @@
|
||||
import React from 'react'
|
||||
import ReactDOM from 'react-dom'
|
||||
import App from './App'
|
||||
|
||||
it('renders without crashing', () => {
|
||||
const div = document.createElement('div')
|
||||
ReactDOM.render(<App />, div)
|
||||
ReactDOM.unmountComponentAtNode(div)
|
||||
})
|
||||
@@ -0,0 +1,13 @@
|
||||
body {
|
||||
margin: 0;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
|
||||
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
|
||||
sans-serif;
|
||||
-webkit-font-smoothing: antialiased;
|
||||
-moz-osx-font-smoothing: grayscale;
|
||||
}
|
||||
|
||||
code {
|
||||
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
|
||||
monospace;
|
||||
}
|
||||
@@ -0,0 +1,12 @@
|
||||
import React from 'react'
|
||||
import ReactDOM from 'react-dom'
|
||||
import './index.css'
|
||||
import App from './App'
|
||||
import * as serviceWorker from './serviceWorker'
|
||||
|
||||
ReactDOM.render(<App />, document.getElementById('root'))
|
||||
|
||||
// If you want your app to work offline and load faster, you can change
|
||||
// unregister() to register() below. Note this comes with some pitfalls.
|
||||
// Learn more about service workers: https://bit.ly/CRA-PWA
|
||||
serviceWorker.unregister()
|
||||
@@ -0,0 +1,41 @@
|
||||
import namor from 'namor'
|
||||
|
||||
const range = len => {
|
||||
const arr = []
|
||||
for (let i = 0; i < len; i++) {
|
||||
arr.push(i)
|
||||
}
|
||||
return arr
|
||||
}
|
||||
|
||||
const newPerson = id => {
|
||||
const statusChance = Math.random()
|
||||
return {
|
||||
id,
|
||||
firstName: namor.generate({ words: 1, numbers: 0 }),
|
||||
lastName: namor.generate({ words: 1, numbers: 0 }),
|
||||
age: Math.floor(Math.random() * 30),
|
||||
visits: Math.floor(Math.random() * 100),
|
||||
progress: Math.floor(Math.random() * 100),
|
||||
status:
|
||||
statusChance > 0.66
|
||||
? 'relationship'
|
||||
: statusChance > 0.33
|
||||
? 'complicated'
|
||||
: 'single',
|
||||
}
|
||||
}
|
||||
|
||||
export default function makeData(...lens) {
|
||||
const makeDataLevel = (depth = 0) => {
|
||||
const len = lens[depth]
|
||||
return range(len).map(i => {
|
||||
return {
|
||||
...newPerson(i),
|
||||
subRows: lens[depth + 1] ? makeDataLevel(depth + 1) : undefined,
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
return makeDataLevel()
|
||||
}
|
||||
@@ -0,0 +1,135 @@
|
||||
// This optional code is used to register a service worker.
|
||||
// register() is not called by default.
|
||||
|
||||
// This lets the app load faster on subsequent visits in production, and gives
|
||||
// it offline capabilities. However, it also means that developers (and users)
|
||||
// will only see deployed updates on subsequent visits to a page, after all the
|
||||
// existing tabs open on the page have been closed, since previously cached
|
||||
// resources are updated in the background.
|
||||
|
||||
// To learn more about the benefits of this model and instructions on how to
|
||||
// opt-in, read https://bit.ly/CRA-PWA
|
||||
|
||||
const isLocalhost = Boolean(
|
||||
window.location.hostname === 'localhost' ||
|
||||
// [::1] is the IPv6 localhost address.
|
||||
window.location.hostname === '[::1]' ||
|
||||
// 127.0.0.1/8 is considered localhost for IPv4.
|
||||
window.location.hostname.match(
|
||||
/^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/
|
||||
)
|
||||
)
|
||||
|
||||
export function register(config) {
|
||||
if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) {
|
||||
// The URL constructor is available in all browsers that support SW.
|
||||
const publicUrl = new URL(process.env.PUBLIC_URL, window.location.href)
|
||||
if (publicUrl.origin !== window.location.origin) {
|
||||
// Our service worker won't work if PUBLIC_URL is on a different origin
|
||||
// from what our page is served on. This might happen if a CDN is used to
|
||||
// serve assets; see https://github.com/facebook/create-react-app/issues/2374
|
||||
return
|
||||
}
|
||||
|
||||
window.addEventListener('load', () => {
|
||||
const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`
|
||||
|
||||
if (isLocalhost) {
|
||||
// This is running on localhost. Let's check if a service worker still exists or not.
|
||||
checkValidServiceWorker(swUrl, config)
|
||||
|
||||
// Add some additional logging to localhost, pointing developers to the
|
||||
// service worker/PWA documentation.
|
||||
navigator.serviceWorker.ready.then(() => {
|
||||
console.log(
|
||||
'This web app is being served cache-first by a service ' +
|
||||
'worker. To learn more, visit https://bit.ly/CRA-PWA'
|
||||
)
|
||||
})
|
||||
} else {
|
||||
// Is not localhost. Just register service worker
|
||||
registerValidSW(swUrl, config)
|
||||
}
|
||||
})
|
||||
}
|
||||
}
|
||||
|
||||
function registerValidSW(swUrl, config) {
|
||||
navigator.serviceWorker
|
||||
.register(swUrl)
|
||||
.then(registration => {
|
||||
registration.onupdatefound = () => {
|
||||
const installingWorker = registration.installing
|
||||
if (installingWorker == null) {
|
||||
return
|
||||
}
|
||||
installingWorker.onstatechange = () => {
|
||||
if (installingWorker.state === 'installed') {
|
||||
if (navigator.serviceWorker.controller) {
|
||||
// At this point, the updated precached content has been fetched,
|
||||
// but the previous service worker will still serve the older
|
||||
// content until all client tabs are closed.
|
||||
console.log(
|
||||
'New content is available and will be used when all ' +
|
||||
'tabs for this page are closed. See https://bit.ly/CRA-PWA.'
|
||||
)
|
||||
|
||||
// Execute callback
|
||||
if (config && config.onUpdate) {
|
||||
config.onUpdate(registration)
|
||||
}
|
||||
} else {
|
||||
// At this point, everything has been precached.
|
||||
// It's the perfect time to display a
|
||||
// "Content is cached for offline use." message.
|
||||
console.log('Content is cached for offline use.')
|
||||
|
||||
// Execute callback
|
||||
if (config && config.onSuccess) {
|
||||
config.onSuccess(registration)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
})
|
||||
.catch(error => {
|
||||
console.error('Error during service worker registration:', error)
|
||||
})
|
||||
}
|
||||
|
||||
function checkValidServiceWorker(swUrl, config) {
|
||||
// Check if the service worker can be found. If it can't reload the page.
|
||||
fetch(swUrl)
|
||||
.then(response => {
|
||||
// Ensure service worker exists, and that we really are getting a JS file.
|
||||
const contentType = response.headers.get('content-type')
|
||||
if (
|
||||
response.status === 404 ||
|
||||
(contentType != null && contentType.indexOf('javascript') === -1)
|
||||
) {
|
||||
// No service worker found. Probably a different app. Reload the page.
|
||||
navigator.serviceWorker.ready.then(registration => {
|
||||
registration.unregister().then(() => {
|
||||
window.location.reload()
|
||||
})
|
||||
})
|
||||
} else {
|
||||
// Service worker found. Proceed as normal.
|
||||
registerValidSW(swUrl, config)
|
||||
}
|
||||
})
|
||||
.catch(() => {
|
||||
console.log(
|
||||
'No internet connection found. App is running in offline mode.'
|
||||
)
|
||||
})
|
||||
}
|
||||
|
||||
export function unregister() {
|
||||
if ('serviceWorker' in navigator) {
|
||||
navigator.serviceWorker.ready.then(registration => {
|
||||
registration.unregister()
|
||||
})
|
||||
}
|
||||
}
|
||||
File diff suppressed because it is too large
Load Diff
@@ -66,8 +66,9 @@ function Table({ columns, data }) {
|
||||
</thead>
|
||||
<tbody {...getTableBodyProps()}>
|
||||
{rows.map(
|
||||
(row, i) =>
|
||||
prepareRow(row) || (
|
||||
(row, i) => {
|
||||
prepareRow(row);
|
||||
return (
|
||||
<tr {...row.getRowProps()}>
|
||||
{row.cells.map(cell => {
|
||||
return (
|
||||
@@ -75,7 +76,7 @@ function Table({ columns, data }) {
|
||||
)
|
||||
})}
|
||||
</tr>
|
||||
)
|
||||
)}
|
||||
)}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@@ -45,14 +45,15 @@ function MyTable() {
|
||||
</thead>
|
||||
<tbody {...getTableBodyProps()}>
|
||||
{rows.map(
|
||||
(row, i) =>
|
||||
prepareRow(row) || (
|
||||
(row, i) => {
|
||||
prepareRow(row);
|
||||
return (
|
||||
<tr {...row.getRowProps()}>
|
||||
{row.cells.map(cell => {
|
||||
return <td {...cell.getCellProps()}>{cell.render('Cell')}</td>
|
||||
})}
|
||||
</tr>
|
||||
)
|
||||
)}
|
||||
)}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@@ -78,8 +78,9 @@ function Table({ columns, data }) {
|
||||
</thead>
|
||||
<tbody {...getTableBodyProps()}>
|
||||
{firstPageRows.map(
|
||||
(row, i) =>
|
||||
prepareRow(row) || (
|
||||
(row, i) => {
|
||||
prepareRow(row);
|
||||
return (
|
||||
<tr {...row.getRowProps()}>
|
||||
{row.cells.map(cell => {
|
||||
return (
|
||||
@@ -87,7 +88,7 @@ function Table({ columns, data }) {
|
||||
)
|
||||
})}
|
||||
</tr>
|
||||
)
|
||||
)}
|
||||
)}
|
||||
</tbody>
|
||||
</table>
|
||||
|
||||
@@ -70,39 +70,39 @@ function Table({ columns: userColumns, data, renderRowSubComponent }) {
|
||||
))}
|
||||
</thead>
|
||||
<tbody {...getTableBodyProps()}>
|
||||
{rows.map(
|
||||
(row, i) =>
|
||||
prepareRow(row) || (
|
||||
// Use a React.Fragment here so the table markup is still valid
|
||||
<>
|
||||
<tr {...row.getRowProps()}>
|
||||
{row.cells.map(cell => {
|
||||
return (
|
||||
<td {...cell.getCellProps()}>{cell.render('Cell')}</td>
|
||||
)
|
||||
})}
|
||||
</tr>
|
||||
{/*
|
||||
{rows.map((row, i) => {
|
||||
prepareRow(row)
|
||||
return (
|
||||
// Use a React.Fragment here so the table markup is still valid
|
||||
<>
|
||||
<tr {...row.getRowProps()}>
|
||||
{row.cells.map(cell => {
|
||||
return (
|
||||
<td {...cell.getCellProps()}>{cell.render('Cell')}</td>
|
||||
)
|
||||
})}
|
||||
</tr>
|
||||
{/*
|
||||
If the row is in an expanded state, render a row with a
|
||||
column that spands the entire length of the table.
|
||||
column that fills the entire length of the table.
|
||||
*/}
|
||||
{row.isExpanded ? (
|
||||
<tr>
|
||||
<td colSpan={flatColumns.length}>
|
||||
{/*
|
||||
{row.isExpanded ? (
|
||||
<tr>
|
||||
<td colSpan={flatColumns.length}>
|
||||
{/*
|
||||
Inside it, call our renderRowSubComponent function. In reality,
|
||||
you coul pass whatever you want as props to
|
||||
you could pass whatever you want as props to
|
||||
a component like this, including the entire
|
||||
table instance. But for this example, we'll just
|
||||
pass the row
|
||||
*/}
|
||||
{renderRowSubComponent({ row })}
|
||||
</td>
|
||||
</tr>
|
||||
) : null}
|
||||
</>
|
||||
)
|
||||
)}
|
||||
{renderRowSubComponent({ row })}
|
||||
</td>
|
||||
</tr>
|
||||
) : null}
|
||||
</>
|
||||
)
|
||||
})}
|
||||
</tbody>
|
||||
</table>
|
||||
<br />
|
||||
|
||||
Vendored
+94
-87
@@ -41,14 +41,14 @@ export interface Row<D extends object = {}> extends UseTableRowProps<D> {}
|
||||
/* #region useTable */
|
||||
export function useTable<D extends object = {}>(
|
||||
options: TableOptions<D>,
|
||||
...plugins: PluginHook<D>[]
|
||||
...plugins: Array<PluginHook<D>>
|
||||
): TableInstance<D>
|
||||
|
||||
/**
|
||||
* NOTE: To use custom options, use "Interface Merging" to add the custom options
|
||||
*/
|
||||
export type UseTableOptions<D extends object> = {
|
||||
columns: Column<D>[]
|
||||
columns: Array<Column<D>>
|
||||
data: D[]
|
||||
} & Partial<{
|
||||
initialState: Partial<TableState<D>>
|
||||
@@ -60,40 +60,44 @@ export type UseTableOptions<D extends object> = {
|
||||
) => TableState<D>
|
||||
defaultColumn: Partial<Column<D>>
|
||||
initialRowStateKey: IdType<D>
|
||||
getSubRows: (row: Row<D>, relativeIndex: number) => Row<D>[]
|
||||
getSubRows: (row: Row<D>, relativeIndex: number) => Array<Row<D>>
|
||||
getRowID: (row: Row<D>, relativeIndex: number) => string
|
||||
debug: boolean
|
||||
}>
|
||||
|
||||
export interface UseTableHooks<D extends object> {
|
||||
columnsBeforeHeaderGroups: ((
|
||||
flatColumns: Column<D>[],
|
||||
instance: TableInstance<D>
|
||||
) => Column<D>[])[]
|
||||
columnsBeforeHeaderGroupsDeps: ((
|
||||
deps: any[],
|
||||
instance: TableInstance<D>
|
||||
) => any[])[]
|
||||
useMain: ((instance: TableInstance<D>) => TableInstance<D>)[]
|
||||
useRows: ((rows: Row<D>[], instance: TableInstance<D>) => Row<D>[])[]
|
||||
prepareRow: ((row: Row<D>, instance: TableInstance<D>) => Row<D>)[]
|
||||
columnsBeforeHeaderGroups: Array<
|
||||
(
|
||||
flatColumns: Array<Column<D>>,
|
||||
instance: TableInstance<D>
|
||||
) => Array<Column<D>>
|
||||
>
|
||||
columnsBeforeHeaderGroupsDeps: Array<
|
||||
(deps: any[], instance: TableInstance<D>) => any[]
|
||||
>
|
||||
useMain: Array<(instance: TableInstance<D>) => TableInstance<D>>
|
||||
useRows: Array<
|
||||
(rows: Array<Row<D>>, instance: TableInstance<D>) => Array<Row<D>>
|
||||
>
|
||||
prepareRow: Array<(row: Row<D>, instance: TableInstance<D>) => Row<D>>
|
||||
|
||||
// Prop Hooks
|
||||
getTableProps: ((instance: TableInstance<D>) => object)[]
|
||||
getTableBodyProps: ((instance: TableInstance<D>) => object)[]
|
||||
getRowProps: ((row: Row<D>, instance: TableInstance<D>) => object)[]
|
||||
getHeaderGroupProps: ((
|
||||
headerGroup: HeaderGroup<D>,
|
||||
instance: TableInstance<D>
|
||||
) => object)[]
|
||||
getHeaderProps: ((column: Column<D>, instance: TableInstance<D>) => object)[]
|
||||
getCellProps: ((cell: Cell<D>, instance: TableInstance<D>) => object)[]
|
||||
getTableProps: Array<(instance: TableInstance<D>) => object>
|
||||
getTableBodyProps: Array<(instance: TableInstance<D>) => object>
|
||||
getRowProps: Array<(row: Row<D>, instance: TableInstance<D>) => object>
|
||||
getHeaderGroupProps: Array<
|
||||
(headerGroup: HeaderGroup<D>, instance: TableInstance<D>) => object
|
||||
>
|
||||
getHeaderProps: Array<
|
||||
(column: Column<D>, instance: TableInstance<D>) => object
|
||||
>
|
||||
getCellProps: Array<(cell: Cell<D>, instance: TableInstance<D>) => object>
|
||||
}
|
||||
|
||||
export interface UseTableColumnOptions<D extends object>
|
||||
extends Accessor<D>,
|
||||
Partial<{
|
||||
columns: Column<D>[]
|
||||
columns: Array<Column<D>>
|
||||
show: boolean | ((instance: TableInstance<D>) => boolean)
|
||||
Header: Renderer<HeaderProps<D>>
|
||||
Cell: Renderer<CellProps<D>>
|
||||
@@ -103,24 +107,24 @@ export interface UseTableColumnOptions<D extends object>
|
||||
}> {}
|
||||
|
||||
export interface UseTableInstanceProps<D extends object> {
|
||||
columns: ColumnInstance<D>[]
|
||||
flatColumns: ColumnInstance<D>[]
|
||||
headerGroups: HeaderGroup<D>[]
|
||||
headers: ColumnInstance<D>[]
|
||||
flatHeaders: ColumnInstance<D>[]
|
||||
rows: Row<D>[]
|
||||
columns: Array<ColumnInstance<D>>
|
||||
flatColumns: Array<ColumnInstance<D>>
|
||||
headerGroups: Array<HeaderGroup<D>>
|
||||
headers: Array<ColumnInstance<D>>
|
||||
flatHeaders: Array<ColumnInstance<D>>
|
||||
rows: Array<Row<D>>
|
||||
getTableProps: (props?: object) => object
|
||||
getTableBodyProps: (props?: object) => object
|
||||
prepareRow: (row: Row<D>) => void
|
||||
rowPaths: string[]
|
||||
flatRows: Row<D>[]
|
||||
flatRows: Array<Row<D>>
|
||||
state: TableState<D>
|
||||
setState: SetState<D>
|
||||
totalColumnsWidth: number
|
||||
}
|
||||
|
||||
export interface UseTableHeaderGroupProps<D extends object> {
|
||||
headers: ColumnInstance<D>[]
|
||||
headers: Array<ColumnInstance<D>>
|
||||
getHeaderGroupProps: (props?: object) => object
|
||||
totalHeaderCount: number
|
||||
}
|
||||
@@ -136,13 +140,13 @@ export interface UseTableColumnProps<D extends object> {
|
||||
}
|
||||
|
||||
export interface UseTableRowProps<D extends object> {
|
||||
cells: Cell<D>[]
|
||||
cells: Array<Cell<D>>
|
||||
values: Record<IdType<D>, CellValue>
|
||||
getRowProps: (props?: object) => object
|
||||
index: number
|
||||
original: D
|
||||
path: IdType<D>[]
|
||||
subRows: Row<D>[]
|
||||
path: Array<IdType<D>>
|
||||
subRows: Array<Row<D>>
|
||||
}
|
||||
|
||||
export interface UseTableCellProps<D extends object> {
|
||||
@@ -155,12 +159,13 @@ export interface UseTableCellProps<D extends object> {
|
||||
|
||||
export type HeaderProps<D extends object> = TableInstance<D> & {
|
||||
column: ColumnInstance<D>
|
||||
} & Record<string, any>
|
||||
}
|
||||
|
||||
export type CellProps<D extends object> = TableInstance<D> & {
|
||||
column: ColumnInstance<D>
|
||||
row: Row<D>
|
||||
cell: Cell<D>
|
||||
} & Record<string, any>
|
||||
}
|
||||
|
||||
// NOTE: At least one of (id | accessor | Header as string) required
|
||||
export interface Accessor<D extends object> {
|
||||
@@ -188,11 +193,13 @@ export namespace useColumnOrder {
|
||||
}
|
||||
|
||||
export interface UseColumnOrderState<D extends object> {
|
||||
columnOrder: IdType<D>[]
|
||||
columnOrder: Array<IdType<D>>
|
||||
}
|
||||
|
||||
export interface UseColumnOrderInstanceProps<D extends object> {
|
||||
setColumnOrder: (updater: (columnOrder: IdType<D>[]) => IdType<D>[]) => void
|
||||
setColumnOrder: (
|
||||
updater: (columnOrder: Array<IdType<D>>) => Array<IdType<D>>
|
||||
) => void
|
||||
}
|
||||
/* #endregion */
|
||||
|
||||
@@ -203,32 +210,31 @@ export namespace useExpanded {
|
||||
}
|
||||
|
||||
export type UseExpandedOptions<D extends object> = Partial<{
|
||||
getSubRows: (row: Row<D>, relativeIndex: number) => Row<D>[]
|
||||
getSubRows: (row: Row<D>, relativeIndex: number) => Array<Row<D>>
|
||||
manualExpandedKey: IdType<D>
|
||||
paginateExpandedRows: boolean
|
||||
}>
|
||||
|
||||
export interface UseExpandedHooks<D extends object> {
|
||||
getExpandedToggleProps: ((
|
||||
row: Row<D>,
|
||||
instance: TableInstance<D>
|
||||
) => object)[]
|
||||
getExpandedToggleProps: Array<
|
||||
(row: Row<D>, instance: TableInstance<D>) => object
|
||||
>
|
||||
}
|
||||
|
||||
export interface UseExpandedState<D extends object> {
|
||||
expanded: IdType<D>[]
|
||||
expanded: Array<IdType<D>>
|
||||
}
|
||||
|
||||
export interface UseExpandedInstanceProps<D extends object> {
|
||||
rows: Row<D>[]
|
||||
toggleExpandedByPath: (path: IdType<D>[], isExpanded: boolean) => void
|
||||
rows: Array<Row<D>>
|
||||
toggleExpandedByPath: (path: Array<IdType<D>>, isExpanded: boolean) => void
|
||||
expandedDepth: number
|
||||
}
|
||||
|
||||
export interface UseExpandedRowProps<D extends object> {
|
||||
isExpanded: boolean
|
||||
canExpand: boolean
|
||||
subRows: Row<D>[]
|
||||
subRows: Array<Row<D>>
|
||||
toggleExpanded: (isExpanded?: boolean) => void
|
||||
getExpandedToggleProps: (props?: object) => object
|
||||
}
|
||||
@@ -257,8 +263,8 @@ export type UseFiltersColumnOptions<D extends object> = Partial<{
|
||||
}>
|
||||
|
||||
export interface UseFiltersInstanceProps<D extends object> {
|
||||
rows: Row<D>[]
|
||||
preFilteredRows: Row<D>[]
|
||||
rows: Array<Row<D>>
|
||||
preFilteredRows: Array<Row<D>>
|
||||
setFilter: (
|
||||
columnId: IdType<D>,
|
||||
updater: ((filterValue: FilterValue) => FilterValue) | FilterValue
|
||||
@@ -274,8 +280,8 @@ export interface UseFiltersColumnProps<D extends object> {
|
||||
updater: ((filterValue: FilterValue) => FilterValue) | FilterValue
|
||||
) => void
|
||||
filterValue: FilterValue
|
||||
preFilteredRows: Row<D>[]
|
||||
filteredRows: Row<D>[]
|
||||
preFilteredRows: Array<Row<D>>
|
||||
filteredRows: Array<Row<D>>
|
||||
}
|
||||
|
||||
export type FilterProps<D extends object> = HeaderProps<D>
|
||||
@@ -294,11 +300,11 @@ export type DefaultFilterTypes =
|
||||
|
||||
export interface FilterType<D extends object> {
|
||||
(
|
||||
rows: Row<D>[],
|
||||
rows: Array<Row<D>>,
|
||||
columnId: IdType<D>,
|
||||
filterValue: FilterValue,
|
||||
column: ColumnInstance<D>
|
||||
): Row<D>[]
|
||||
): Array<Row<D>>
|
||||
autoRemove?: (filterValue: FilterValue) => boolean
|
||||
}
|
||||
/* #endregion */
|
||||
@@ -311,32 +317,34 @@ export namespace useGroupBy {
|
||||
|
||||
export type UseGroupByOptions<D extends object> = Partial<{
|
||||
manualGroupBy: boolean
|
||||
disableGrouping: boolean
|
||||
disableGroupBy: boolean
|
||||
aggregations: Record<string, AggregatorFn<D>>
|
||||
groupByFn: (rows: Row<D>[], columnId: IdType<D>) => Record<string, Row<D>>
|
||||
groupByFn: (
|
||||
rows: Array<Row<D>>,
|
||||
columnId: IdType<D>
|
||||
) => Record<string, Row<D>>
|
||||
}>
|
||||
|
||||
export interface UseGroupByHooks<D extends object> {
|
||||
getGroupByToggleProps: ((
|
||||
header: HeaderGroup<D>,
|
||||
instance: TableInstance<D>
|
||||
) => object)[]
|
||||
getGroupByToggleProps: Array<
|
||||
(header: HeaderGroup<D>, instance: TableInstance<D>) => object
|
||||
>
|
||||
}
|
||||
|
||||
export interface UseGroupByState<D extends object> {
|
||||
groupBy: IdType<D>[]
|
||||
groupBy: Array<IdType<D>>
|
||||
}
|
||||
|
||||
export type UseGroupByColumnOptions<D extends object> = Partial<{
|
||||
aggregate: Aggregator<D> | Aggregator<D>[]
|
||||
aggregate: Aggregator<D> | Array<Aggregator<D>>
|
||||
Aggregated: Renderer<CellProps<D>>
|
||||
disableGrouping: boolean
|
||||
disableGroupBy: boolean
|
||||
groupByBoundary: boolean
|
||||
}>
|
||||
|
||||
export interface UseGroupByInstanceProps<D extends object> {
|
||||
rows: Row<D>[]
|
||||
preGroupedRows: Row<D>[]
|
||||
rows: Array<Row<D>>
|
||||
preGroupedRows: Array<Row<D>>
|
||||
toggleGroupBy: (columnId: IdType<D>, toggle: boolean) => void
|
||||
}
|
||||
|
||||
@@ -356,9 +364,9 @@ export interface UseGroupByRowProps<D extends object> {
|
||||
groupByID: IdType<D>
|
||||
groupByVal: string
|
||||
values: Record<IdType<D>, AggregatedValue>
|
||||
subRows: Row<D>[]
|
||||
subRows: Array<Row<D>>
|
||||
depth: number
|
||||
path: IdType<D>[]
|
||||
path: Array<IdType<D>>
|
||||
index: number
|
||||
}
|
||||
|
||||
@@ -377,7 +385,7 @@ export type DefaultAggregators =
|
||||
|
||||
export type AggregatorFn<D extends object> = (
|
||||
columnValues: CellValue[],
|
||||
rows: Row<D>[]
|
||||
rows: Array<Row<D>>
|
||||
) => AggregatedValue
|
||||
export type Aggregator<D extends object> =
|
||||
| AggregatorFn<D>
|
||||
@@ -405,7 +413,7 @@ export interface UsePaginationState<D extends object> {
|
||||
}
|
||||
|
||||
export interface UsePaginationInstanceProps<D extends object> {
|
||||
page: Row<D>[]
|
||||
page: Array<Row<D>>
|
||||
pageCount: number
|
||||
pageOptions: number[]
|
||||
canPreviousPage: boolean
|
||||
@@ -430,15 +438,14 @@ export type UseRowSelectOptions<D extends object> = Partial<{
|
||||
}>
|
||||
|
||||
export interface UseRowSelectHooks<D extends object> {
|
||||
getToggleRowSelectedProps: ((
|
||||
row: Row<D>,
|
||||
instance: TableInstance<D>
|
||||
) => object)[]
|
||||
getToggleAllRowsSelectedProps: ((instance: TableInstance<D>) => object)[]
|
||||
getToggleRowSelectedProps: Array<
|
||||
(row: Row<D>, instance: TableInstance<D>) => object
|
||||
>
|
||||
getToggleAllRowsSelectedProps: Array<(instance: TableInstance<D>) => object>
|
||||
}
|
||||
|
||||
export interface UseRowSelectState<D extends object> {
|
||||
selectedRows: IdType<D>[]
|
||||
selectedRowPaths: Array<IdType<D>>
|
||||
}
|
||||
|
||||
export interface UseRowSelectInstanceProps<D extends object> {
|
||||
@@ -446,6 +453,7 @@ export interface UseRowSelectInstanceProps<D extends object> {
|
||||
toggleRowSelectedAll: (set?: boolean) => void
|
||||
getToggleAllRowsSelectedProps: (props?: object) => object
|
||||
isAllRowsSelected: boolean
|
||||
selectedFlatRows: Array<Row<D>>
|
||||
}
|
||||
|
||||
export interface UseRowSelectRowProps<D extends object> {
|
||||
@@ -505,41 +513,40 @@ export namespace useSortBy {
|
||||
|
||||
export type UseSortByOptions<D extends object> = Partial<{
|
||||
manualSorting: boolean
|
||||
disableSorting: boolean
|
||||
disableSortBy: boolean
|
||||
disableMultiSort: boolean
|
||||
isMultiSortEvent: (e: MouseEvent) => boolean
|
||||
maxMultiSortColCount: number
|
||||
disableSortRemove: boolean
|
||||
disabledMultiRemove: boolean
|
||||
orderByFn: (
|
||||
rows: Row<D>[],
|
||||
sortFns: SortByFn<D>[],
|
||||
rows: Array<Row<D>>,
|
||||
sortFns: Array<SortByFn<D>>,
|
||||
directions: boolean[]
|
||||
) => Row<D>[] // CHECK
|
||||
) => Array<Row<D>>
|
||||
sortTypes: Record<string, SortByFn<D>>
|
||||
}>
|
||||
|
||||
export interface UseSortByHooks<D extends object> {
|
||||
getSortByToggleProps: ((
|
||||
column: Column<D>,
|
||||
instance: TableInstance<D>
|
||||
) => object)[]
|
||||
getSortByToggleProps: Array<
|
||||
(column: Column<D>, instance: TableInstance<D>) => object
|
||||
>
|
||||
}
|
||||
|
||||
export interface UseSortByState<D extends object> {
|
||||
sortBy: SortingRule<D>[]
|
||||
sortBy: Array<SortingRule<D>>
|
||||
}
|
||||
|
||||
export type UseSortByColumnOptions<D extends object> = Partial<{
|
||||
disableSorting: boolean
|
||||
disableSortBy: boolean
|
||||
sortDescFirst: boolean
|
||||
sortInverted: boolean
|
||||
sortType: SortByFn<D> | DefaultSortTypes | string
|
||||
}>
|
||||
|
||||
export interface UseSortByInstanceProps<D extends object> {
|
||||
rows: Row<D>[]
|
||||
preSortedRows: Row<D>[]
|
||||
rows: Array<Row<D>>
|
||||
preSortedRows: Array<Row<D>>
|
||||
toggleSortBy: (
|
||||
columnId: IdType<D>,
|
||||
descending: boolean,
|
||||
|
||||
+5
-2
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "react-table",
|
||||
"version": "7.0.0-beta.12",
|
||||
"version": "7.0.0-beta.13",
|
||||
"description": "A fast, lightweight, opinionated table and datagrid built on React",
|
||||
"license": "MIT",
|
||||
"homepage": "https://github.com/tannerlinsley/react-table#readme",
|
||||
@@ -22,7 +22,9 @@
|
||||
"commit": "git add . && git-cz",
|
||||
"test": "is-ci \"test:ci\" \"test:dev\"",
|
||||
"test:dev": "jest --watch",
|
||||
"test:ci": "jest",
|
||||
"test:ci": "yarn test:jest && yarn test:types",
|
||||
"test:jest": "jest",
|
||||
"test:types": "dtslint",
|
||||
"build": "rollup -c",
|
||||
"start": "rollup -c -w",
|
||||
"prepare": "yarn build",
|
||||
@@ -60,6 +62,7 @@
|
||||
"commitizen": "^4.0.3",
|
||||
"core-js": "3.2.1",
|
||||
"cross-env": "^5.2.0",
|
||||
"dtslint": "^0.9.8",
|
||||
"eslint": "5.x",
|
||||
"eslint-config-prettier": "^4.3.0",
|
||||
"eslint-config-react-app": "^4.0.1",
|
||||
|
||||
Vendored
+40
@@ -1,3 +1,43 @@
|
||||
import {
|
||||
UseColumnOrderInstanceProps,
|
||||
UseColumnOrderState,
|
||||
UseExpandedInstanceProps,
|
||||
UseExpandedOptions,
|
||||
UseExpandedRowProps,
|
||||
UseExpandedState,
|
||||
UseFiltersColumnOptions,
|
||||
UseFiltersColumnProps,
|
||||
UseFiltersInstanceProps,
|
||||
UseFiltersOptions,
|
||||
UseFiltersState,
|
||||
UseGroupByCellProps,
|
||||
UseGroupByColumnOptions,
|
||||
UseGroupByColumnProps,
|
||||
UseGroupByInstanceProps,
|
||||
UseGroupByOptions,
|
||||
UseGroupByRowProps,
|
||||
UseGroupByState,
|
||||
UsePaginationInstanceProps,
|
||||
UsePaginationOptions,
|
||||
UsePaginationState,
|
||||
UseResizeColumnsColumnOptions,
|
||||
UseResizeColumnsHeaderProps,
|
||||
UseResizeColumnsOptions,
|
||||
UseRowSelectInstanceProps,
|
||||
UseRowSelectOptions,
|
||||
UseRowSelectRowProps,
|
||||
UseRowSelectState,
|
||||
UseRowStateCellProps,
|
||||
UseRowStateInstanceProps,
|
||||
UseRowStateRowProps,
|
||||
UseSortByColumnOptions,
|
||||
UseSortByColumnProps,
|
||||
UseSortByInstanceProps,
|
||||
UseSortByOptions,
|
||||
UseSortByState,
|
||||
UseTableCellProps,
|
||||
} from 'react-table'
|
||||
|
||||
declare module 'react-table' {
|
||||
// take this file as-is, or comment out the sections that don't apply to your plugin configuration
|
||||
|
||||
|
||||
+3
-7
@@ -7,13 +7,9 @@ export function average(values, rows) {
|
||||
}
|
||||
|
||||
export function median(values) {
|
||||
let min = values[0] || ''
|
||||
let max = values[0] || ''
|
||||
|
||||
values.forEach(value => {
|
||||
min = Math.min(min, value)
|
||||
max = Math.max(max, value)
|
||||
})
|
||||
values = values.length ? values : [0]
|
||||
let min = Math.min(...values)
|
||||
let max = Math.max(...values)
|
||||
|
||||
return (min + max) / 2
|
||||
}
|
||||
|
||||
@@ -2,169 +2,111 @@
|
||||
|
||||
exports[`renders a basic table 1`] = `
|
||||
<DocumentFragment>
|
||||
<table
|
||||
class=""
|
||||
>
|
||||
<table>
|
||||
<thead>
|
||||
<tr
|
||||
class=""
|
||||
>
|
||||
<tr>
|
||||
<th
|
||||
class=""
|
||||
colspan="2"
|
||||
>
|
||||
Name
|
||||
</th>
|
||||
<th
|
||||
class=""
|
||||
colspan="4"
|
||||
>
|
||||
Info
|
||||
</th>
|
||||
</tr>
|
||||
<tr
|
||||
class=""
|
||||
>
|
||||
<tr>
|
||||
<th
|
||||
class=""
|
||||
colspan="1"
|
||||
>
|
||||
First Name
|
||||
</th>
|
||||
<th
|
||||
class=""
|
||||
colspan="1"
|
||||
>
|
||||
Last Name
|
||||
</th>
|
||||
<th
|
||||
class=""
|
||||
colspan="1"
|
||||
>
|
||||
Age
|
||||
</th>
|
||||
<th
|
||||
class=""
|
||||
colspan="1"
|
||||
>
|
||||
Visits
|
||||
</th>
|
||||
<th
|
||||
class=""
|
||||
colspan="1"
|
||||
>
|
||||
Status
|
||||
</th>
|
||||
<th
|
||||
class=""
|
||||
colspan="1"
|
||||
>
|
||||
Profile Progress
|
||||
</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody
|
||||
class=""
|
||||
>
|
||||
<tr
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
tanner
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
29
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
100
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
In Relationship
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<tr>
|
||||
<td>
|
||||
derek
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
perkins
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
40
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
40
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
Single
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
80
|
||||
</td>
|
||||
</tr>
|
||||
<tr
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<tr>
|
||||
<td>
|
||||
joe
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
bergevin
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
45
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
20
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
Complicated
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
10
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
+6
-18
@@ -1,5 +1,5 @@
|
||||
import React from 'react'
|
||||
import PropTypes from 'prop-types'
|
||||
|
||||
//
|
||||
import {
|
||||
applyHooks,
|
||||
@@ -12,16 +12,6 @@ import {
|
||||
determineHeaderVisibility,
|
||||
} from '../utils'
|
||||
|
||||
const propTypes = {
|
||||
// General
|
||||
data: PropTypes.array.isRequired,
|
||||
columns: PropTypes.arrayOf(PropTypes.object).isRequired,
|
||||
defaultColumn: PropTypes.object,
|
||||
getSubRows: PropTypes.func,
|
||||
getRowID: PropTypes.func,
|
||||
debug: PropTypes.bool,
|
||||
}
|
||||
|
||||
const renderErr =
|
||||
'You must specify a valid render component. This could be "column.Cell", "column.Header", "column.Filter", "column.Aggregated" or any other custom renderer component.'
|
||||
|
||||
@@ -34,9 +24,6 @@ const defaultGetSubRows = (row, index) => row.subRows || []
|
||||
const defaultGetRowID = (row, index) => index
|
||||
|
||||
export const useTable = (props, ...plugins) => {
|
||||
// Validate props
|
||||
PropTypes.checkPropTypes(propTypes, props, 'property', 'useTable')
|
||||
|
||||
// Destructure props
|
||||
let {
|
||||
data,
|
||||
@@ -122,7 +109,7 @@ export const useTable = (props, ...plugins) => {
|
||||
[defaultColumn, userColumns]
|
||||
)
|
||||
|
||||
// Get the flat list of all columns andllow hooks to decorate
|
||||
// Get the flat list of all columns and allow hooks to decorate
|
||||
// those columns (and trigger this memoization via deps)
|
||||
let flatColumns = React.useMemo(() => {
|
||||
if (process.env.NODE_ENV === 'development' && debug)
|
||||
@@ -447,9 +434,10 @@ function calculateHeaderWidths(headers, left = 0) {
|
||||
header.maxWidth
|
||||
)
|
||||
}
|
||||
|
||||
left += header.totalWidth
|
||||
sumTotalWidth += header.totalWidth
|
||||
if (header.isVisible) {
|
||||
left += header.totalWidth
|
||||
sumTotalWidth += header.totalWidth
|
||||
}
|
||||
})
|
||||
|
||||
return sumTotalWidth
|
||||
|
||||
@@ -74,7 +74,6 @@ exports[`renders a table 1`] = `
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
class=""
|
||||
style="position: relative; width: 1400px;"
|
||||
>
|
||||
<div
|
||||
|
||||
@@ -73,9 +73,7 @@ exports[`renders a table 1`] = `
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div
|
||||
class=""
|
||||
>
|
||||
<div>
|
||||
<div
|
||||
class="row"
|
||||
style="display: flex; width: 1400px;"
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -5,7 +5,7 @@ Snapshot Diff:
|
||||
- First value
|
||||
+ Second value
|
||||
|
||||
@@ -37,11 +37,11 @@
|
||||
@@ -27,11 +27,11 @@
|
||||
colspan="1"
|
||||
>
|
||||
Last Name
|
||||
@@ -16,87 +16,59 @@ Snapshot Diff:
|
||||
/>
|
||||
</th>
|
||||
<th
|
||||
class=""
|
||||
colspan="1"
|
||||
@@ -117,78 +117,10 @@
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
@@ -87,50 +87,10 @@
|
||||
<td>
|
||||
status: In Relationship
|
||||
</td>
|
||||
<td>
|
||||
progress: 50
|
||||
- </td>
|
||||
- </tr>
|
||||
- <tr
|
||||
- class=""
|
||||
- >
|
||||
- <td
|
||||
- class=""
|
||||
- >
|
||||
- <tr>
|
||||
- <td>
|
||||
- firstName: derek
|
||||
- </td>
|
||||
- <td
|
||||
- class=""
|
||||
- >
|
||||
- <td>
|
||||
- lastName: perkins
|
||||
- </td>
|
||||
- <td
|
||||
- class=""
|
||||
- >
|
||||
- <td>
|
||||
- age: 40
|
||||
- </td>
|
||||
- <td
|
||||
- class=""
|
||||
- >
|
||||
- <td>
|
||||
- visits: 40
|
||||
- </td>
|
||||
- <td
|
||||
- class=""
|
||||
- >
|
||||
- <td>
|
||||
- status: Single
|
||||
- </td>
|
||||
- <td
|
||||
- class=""
|
||||
- >
|
||||
- <td>
|
||||
- progress: 80
|
||||
- </td>
|
||||
- </tr>
|
||||
- <tr
|
||||
- class=""
|
||||
- >
|
||||
- <td
|
||||
- class=""
|
||||
- >
|
||||
- <tr>
|
||||
- <td>
|
||||
- firstName: joe
|
||||
- </td>
|
||||
- <td
|
||||
- class=""
|
||||
- >
|
||||
- <td>
|
||||
- lastName: bergevin
|
||||
- </td>
|
||||
- <td
|
||||
- class=""
|
||||
- >
|
||||
- <td>
|
||||
- age: 45
|
||||
- </td>
|
||||
- <td
|
||||
- class=""
|
||||
- >
|
||||
- <td>
|
||||
- visits: 20
|
||||
- </td>
|
||||
- <td
|
||||
- class=""
|
||||
- >
|
||||
- <td>
|
||||
- status: Complicated
|
||||
- </td>
|
||||
- <td
|
||||
- class=""
|
||||
- >
|
||||
- <td>
|
||||
- progress: 10
|
||||
</td>
|
||||
</tr>
|
||||
<tr
|
||||
class=""
|
||||
>
|
||||
<tr>
|
||||
<td>
|
||||
firstName: jaylen
|
||||
`;
|
||||
|
||||
exports[`renders a filterable table 2`] = `
|
||||
@@ -104,7 +76,7 @@ Snapshot Diff:
|
||||
- First value
|
||||
+ Second value
|
||||
|
||||
@@ -37,11 +37,11 @@
|
||||
@@ -27,11 +27,11 @@
|
||||
colspan="1"
|
||||
>
|
||||
Last Name
|
||||
@@ -115,84 +87,60 @@ Snapshot Diff:
|
||||
/>
|
||||
</th>
|
||||
<th
|
||||
class=""
|
||||
colspan="1"
|
||||
@@ -91,70 +91,70 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
@@ -71,46 +71,46 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
- firstName: tanner
|
||||
+ firstName: derek
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- lastName: linsley
|
||||
+ lastName: perkins
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- age: 29
|
||||
+ age: 40
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- visits: 100
|
||||
+ visits: 40
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- status: In Relationship
|
||||
+ status: Single
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- progress: 50
|
||||
+ progress: 80
|
||||
</td>
|
||||
</tr>
|
||||
<tr
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<tr>
|
||||
<td>
|
||||
- firstName: jaylen
|
||||
+ firstName: joe
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- lastName: linsley
|
||||
+ lastName: bergevin
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- age: 26
|
||||
+ age: 45
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- visits: 99
|
||||
+ visits: 20
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- status: In Relationship
|
||||
+ status: Complicated
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- progress: 70
|
||||
+ progress: 10
|
||||
</td>
|
||||
|
||||
@@ -5,9 +5,9 @@ Snapshot Diff:
|
||||
- First value
|
||||
+ Second value
|
||||
|
||||
@@ -29,13 +29,13 @@
|
||||
@@ -19,24 +19,24 @@
|
||||
>
|
||||
<span
|
||||
class=""
|
||||
style="cursor: pointer;"
|
||||
title="Toggle GroupBy"
|
||||
>
|
||||
@@ -18,10 +18,9 @@ Snapshot Diff:
|
||||
+ Last Name
|
||||
</th>
|
||||
<th
|
||||
class=""
|
||||
colspan="1"
|
||||
>
|
||||
@@ -44,11 +44,11 @@
|
||||
<span
|
||||
style="cursor: pointer;"
|
||||
title="Toggle GroupBy"
|
||||
>
|
||||
@@ -31,93 +30,66 @@ Snapshot Diff:
|
||||
+ First Name
|
||||
</th>
|
||||
<th
|
||||
class=""
|
||||
colspan="1"
|
||||
>
|
||||
@@ -109,138 +109,119 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<span
|
||||
@@ -83,86 +83,81 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
- firstName: tanner
|
||||
- </td>
|
||||
- <td
|
||||
- class=""
|
||||
+ <span
|
||||
+ style="cursor: pointer;"
|
||||
>
|
||||
- lastName: linsley
|
||||
- </td>
|
||||
- <td
|
||||
- class=""
|
||||
- >
|
||||
- age: 29
|
||||
- </td>
|
||||
- <td
|
||||
- class=""
|
||||
- >
|
||||
- visits: 100
|
||||
- </td>
|
||||
- <td
|
||||
- class=""
|
||||
- >
|
||||
- status: In Relationship
|
||||
+ >
|
||||
+ 👉
|
||||
+ </span>
|
||||
+ lastName: linsley (2)
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- lastName: linsley
|
||||
+ 2 Names
|
||||
</td>
|
||||
<td>
|
||||
- age: 29
|
||||
+ 27.5 (avg)
|
||||
</td>
|
||||
<td>
|
||||
- visits: 100
|
||||
- </td>
|
||||
- <td>
|
||||
- status: In Relationship
|
||||
- </td>
|
||||
- <td>
|
||||
- progress: 50
|
||||
- </td>
|
||||
- </tr>
|
||||
- <tr
|
||||
- class=""
|
||||
- >
|
||||
- <td
|
||||
- class=""
|
||||
- >
|
||||
- <tr>
|
||||
- <td>
|
||||
- firstName: derek
|
||||
- </td>
|
||||
- <td
|
||||
- class=""
|
||||
- >
|
||||
- lastName: perkins
|
||||
+ 2 Names
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
- age: 40
|
||||
+ 27.5 (avg)
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
- visits: 40
|
||||
+ 199 (total)
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- lastName: perkins
|
||||
- </td>
|
||||
- <td>
|
||||
- age: 40
|
||||
- </td>
|
||||
- <td>
|
||||
- visits: 40
|
||||
- </td>
|
||||
- <td>
|
||||
- status: Single
|
||||
+ status: null
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- progress: 80
|
||||
+ 60 (med)
|
||||
</td>
|
||||
</tr>
|
||||
<tr
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<tr>
|
||||
<td>
|
||||
- firstName: joe
|
||||
+ <span
|
||||
+ style="cursor: pointer;"
|
||||
@@ -126,43 +98,29 @@ Snapshot Diff:
|
||||
+ </span>
|
||||
+ lastName: perkins (1)
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- lastName: bergevin
|
||||
+ 1 Names
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- age: 45
|
||||
+ 40 (avg)
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- visits: 20
|
||||
+ 40 (total)
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- status: Complicated
|
||||
+ status: null
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- progress: 10
|
||||
+ 80 (med)
|
||||
</td>
|
||||
</tr>
|
||||
<tr
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<tr>
|
||||
<td>
|
||||
- firstName: jaylen
|
||||
+ <span
|
||||
+ style="cursor: pointer;"
|
||||
@@ -171,33 +129,23 @@ Snapshot Diff:
|
||||
+ </span>
|
||||
+ lastName: bergevin (1)
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- lastName: linsley
|
||||
+ 1 Names
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- age: 26
|
||||
+ 45 (avg)
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- visits: 99
|
||||
+ 20 (total)
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- status: In Relationship
|
||||
+ status: null
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- progress: 70
|
||||
+ 10 (med)
|
||||
</td>
|
||||
@@ -212,41 +160,38 @@ Snapshot Diff:
|
||||
- First value
|
||||
+ Second value
|
||||
|
||||
@@ -6,17 +6,29 @@
|
||||
<tr
|
||||
class=""
|
||||
>
|
||||
@@ -1,16 +1,26 @@
|
||||
<DocumentFragment>
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th
|
||||
class=""
|
||||
- colspan="2"
|
||||
+ colspan="1"
|
||||
>
|
||||
Name
|
||||
</th>
|
||||
<th
|
||||
class=""
|
||||
- colspan="4"
|
||||
+ colspan="1"
|
||||
+ >
|
||||
+ Info
|
||||
+ </th>
|
||||
+ <th
|
||||
+ class=""
|
||||
+ colspan="1"
|
||||
+ >
|
||||
+ Name
|
||||
+ </th>
|
||||
+ <th
|
||||
+ class=""
|
||||
+ colspan="1"
|
||||
+ >
|
||||
+ Info
|
||||
+ </th>
|
||||
+ <th
|
||||
+ colspan="1"
|
||||
>
|
||||
Name
|
||||
</th>
|
||||
<th
|
||||
- colspan="4"
|
||||
+ colspan="3"
|
||||
>
|
||||
Info
|
||||
</th>
|
||||
</tr>
|
||||
<tr
|
||||
@@ -42,13 +54,13 @@
|
||||
<tr>
|
||||
@@ -30,35 +40,35 @@
|
||||
>
|
||||
<span
|
||||
class=""
|
||||
style="cursor: pointer;"
|
||||
title="Toggle GroupBy"
|
||||
>
|
||||
@@ -257,10 +202,9 @@ Snapshot Diff:
|
||||
+ Visits
|
||||
</th>
|
||||
<th
|
||||
class=""
|
||||
colspan="1"
|
||||
>
|
||||
@@ -57,11 +69,11 @@
|
||||
<span
|
||||
style="cursor: pointer;"
|
||||
title="Toggle GroupBy"
|
||||
>
|
||||
@@ -270,10 +214,9 @@ Snapshot Diff:
|
||||
+ First Name
|
||||
</th>
|
||||
<th
|
||||
class=""
|
||||
colspan="1"
|
||||
>
|
||||
@@ -70,11 +82,11 @@
|
||||
<span
|
||||
style="cursor: pointer;"
|
||||
title="Toggle GroupBy"
|
||||
>
|
||||
@@ -283,89 +226,69 @@ Snapshot Diff:
|
||||
+ Age
|
||||
</th>
|
||||
<th
|
||||
class=""
|
||||
colspan="1"
|
||||
>
|
||||
@@ -116,10 +128,13 @@
|
||||
<span
|
||||
@@ -90,18 +100,16 @@
|
||||
>
|
||||
👉
|
||||
</span>
|
||||
lastName: linsley (2)
|
||||
</td>
|
||||
+ <td
|
||||
+ class=""
|
||||
+ />
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
+ <td />
|
||||
<td>
|
||||
2 Names
|
||||
</td>
|
||||
@@ -129,15 +144,10 @@
|
||||
<td>
|
||||
27.5 (avg)
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
- 199 (total)
|
||||
- </td>
|
||||
- <td
|
||||
- class=""
|
||||
- >
|
||||
- <td>
|
||||
- 199 (total)
|
||||
</td>
|
||||
<td>
|
||||
status: null
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
@@ -157,22 +167,20 @@
|
||||
<td>
|
||||
@@ -115,20 +123,18 @@
|
||||
>
|
||||
👉
|
||||
</span>
|
||||
lastName: perkins (1)
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
- >
|
||||
- 1 Names
|
||||
- </td>
|
||||
+ />
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
- 40 (avg)
|
||||
+ 1 Names
|
||||
+ <td />
|
||||
<td>
|
||||
1 Names
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
40 (avg)
|
||||
</td>
|
||||
<td>
|
||||
- 40 (total)
|
||||
+ 40 (avg)
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
- </td>
|
||||
- <td>
|
||||
status: null
|
||||
@@ -196,22 +204,20 @@
|
||||
</td>
|
||||
<td>
|
||||
80 (med)
|
||||
</td>
|
||||
@@ -140,18 +146,16 @@
|
||||
>
|
||||
👉
|
||||
</span>
|
||||
lastName: bergevin (1)
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
- >
|
||||
- 1 Names
|
||||
+ <td />
|
||||
<td>
|
||||
1 Names
|
||||
</td>
|
||||
<td>
|
||||
45 (avg)
|
||||
- </td>
|
||||
+ />
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
- 45 (avg)
|
||||
+ 1 Names
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
- <td>
|
||||
- 20 (total)
|
||||
+ 45 (avg)
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
status: null
|
||||
</td>
|
||||
<td>
|
||||
`;
|
||||
|
||||
@@ -5,137 +5,137 @@ Snapshot Diff:
|
||||
- First value
|
||||
+ Second value
|
||||
|
||||
@@ -67,11 +67,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
@@ -47,11 +47,11 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 21
|
||||
+ tanner 31
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -101,11 +101,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -67,11 +67,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 22
|
||||
+ tanner 32
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -135,11 +135,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -87,11 +87,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 23
|
||||
+ tanner 33
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -169,11 +169,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -107,11 +107,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 24
|
||||
+ tanner 34
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -203,11 +203,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -127,11 +127,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 25
|
||||
+ tanner 35
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -237,11 +237,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -147,11 +147,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 26
|
||||
+ tanner 36
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -271,11 +271,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -167,11 +167,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 27
|
||||
+ tanner 37
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -305,11 +305,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -187,11 +187,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 28
|
||||
+ tanner 38
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -339,11 +339,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -207,11 +207,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 29
|
||||
+ tanner 39
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -373,11 +373,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -227,11 +227,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 30
|
||||
+ tanner 40
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -425,20 +425,20 @@
|
||||
</td>
|
||||
<td>
|
||||
@@ -269,20 +269,20 @@
|
||||
</button>
|
||||
|
||||
<span>
|
||||
@@ -165,137 +165,137 @@ Snapshot Diff:
|
||||
- First value
|
||||
+ Second value
|
||||
|
||||
@@ -67,11 +67,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
@@ -47,11 +47,11 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 31
|
||||
+ tanner 41
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -101,11 +101,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -67,11 +67,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 32
|
||||
+ tanner 42
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -135,11 +135,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -87,11 +87,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 33
|
||||
+ tanner 43
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -169,11 +169,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -107,11 +107,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 34
|
||||
+ tanner 44
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -203,11 +203,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -127,11 +127,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 35
|
||||
+ tanner 45
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -237,11 +237,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -147,11 +147,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 36
|
||||
+ tanner 46
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -271,11 +271,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -167,11 +167,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 37
|
||||
+ tanner 47
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -305,11 +305,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -187,11 +187,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 38
|
||||
+ tanner 48
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -339,11 +339,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -207,11 +207,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 39
|
||||
+ tanner 49
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -373,11 +373,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -227,11 +227,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 40
|
||||
+ tanner 50
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -425,20 +425,20 @@
|
||||
</td>
|
||||
<td>
|
||||
@@ -269,20 +269,20 @@
|
||||
</button>
|
||||
|
||||
<span>
|
||||
@@ -325,137 +325,137 @@ Snapshot Diff:
|
||||
- First value
|
||||
+ Second value
|
||||
|
||||
@@ -67,11 +67,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
@@ -47,11 +47,11 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 41
|
||||
+ tanner 91
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -101,11 +101,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -67,11 +67,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 42
|
||||
+ tanner 92
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -135,11 +135,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -87,11 +87,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 43
|
||||
+ tanner 93
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -169,11 +169,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -107,11 +107,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 44
|
||||
+ tanner 94
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -203,11 +203,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -127,11 +127,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 45
|
||||
+ tanner 95
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -237,11 +237,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -147,11 +147,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 46
|
||||
+ tanner 96
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -271,11 +271,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -167,11 +167,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 47
|
||||
+ tanner 97
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -305,11 +305,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -187,11 +187,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 48
|
||||
+ tanner 98
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -339,11 +339,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -207,11 +207,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 49
|
||||
+ tanner 99
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -373,11 +373,11 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
</td>
|
||||
<td>
|
||||
@@ -227,11 +227,11 @@
|
||||
50
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- tanner 50
|
||||
+ tanner 100
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
linsley
|
||||
@@ -414,31 +414,35 @@
|
||||
</td>
|
||||
<td>
|
||||
@@ -258,31 +258,35 @@
|
||||
|
||||
<button>
|
||||
<
|
||||
|
||||
File diff suppressed because it is too large
Load Diff
@@ -5,7 +5,7 @@ Snapshot Diff:
|
||||
- First value
|
||||
+ Second value
|
||||
|
||||
@@ -31,11 +31,13 @@
|
||||
@@ -22,11 +22,13 @@
|
||||
colspan="1"
|
||||
style="cursor: pointer;"
|
||||
title="Toggle SortBy"
|
||||
@@ -17,125 +17,87 @@ Snapshot Diff:
|
||||
+ </span>
|
||||
</th>
|
||||
<th
|
||||
class=""
|
||||
colspan="1"
|
||||
style="cursor: pointer;"
|
||||
@@ -89,104 +91,104 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
title="Toggle SortBy"
|
||||
@@ -69,66 +71,66 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
- firstName: tanner
|
||||
+ firstName: derek
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- lastName: linsley
|
||||
+ lastName: perkins
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- age: 29
|
||||
+ age: 40
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- visits: 100
|
||||
+ visits: 40
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- status: In Relationship
|
||||
+ status: Single
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- progress: 50
|
||||
+ progress: 80
|
||||
</td>
|
||||
</tr>
|
||||
<tr
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<tr>
|
||||
<td>
|
||||
- firstName: derek
|
||||
+ firstName: joe
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- lastName: perkins
|
||||
+ lastName: bergevin
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- age: 40
|
||||
+ age: 45
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- visits: 40
|
||||
+ visits: 20
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- status: Single
|
||||
+ status: Complicated
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- progress: 80
|
||||
+ progress: 10
|
||||
</td>
|
||||
</tr>
|
||||
<tr
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<tr>
|
||||
<td>
|
||||
- firstName: joe
|
||||
+ firstName: tanner
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- lastName: bergevin
|
||||
+ lastName: linsley
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- age: 45
|
||||
+ age: 29
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- visits: 20
|
||||
+ visits: 100
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- status: Complicated
|
||||
+ status: In Relationship
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- progress: 10
|
||||
+ progress: 50
|
||||
</td>
|
||||
@@ -150,7 +112,7 @@ Snapshot Diff:
|
||||
- First value
|
||||
+ Second value
|
||||
|
||||
@@ -32,11 +32,11 @@
|
||||
@@ -23,11 +23,11 @@
|
||||
style="cursor: pointer;"
|
||||
title="Toggle SortBy"
|
||||
>
|
||||
@@ -161,87 +123,67 @@ Snapshot Diff:
|
||||
</span>
|
||||
</th>
|
||||
<th
|
||||
class=""
|
||||
colspan="1"
|
||||
@@ -91,36 +91,36 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
style="cursor: pointer;"
|
||||
@@ -71,26 +71,26 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>
|
||||
- firstName: derek
|
||||
+ firstName: tanner
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- lastName: perkins
|
||||
+ lastName: linsley
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- age: 40
|
||||
+ age: 29
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- visits: 40
|
||||
+ visits: 100
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- status: Single
|
||||
+ status: In Relationship
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- progress: 80
|
||||
+ progress: 50
|
||||
</td>
|
||||
</tr>
|
||||
<tr
|
||||
class=""
|
||||
>
|
||||
@@ -159,36 +159,36 @@
|
||||
class=""
|
||||
>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<tr>
|
||||
<td>
|
||||
firstName: joe
|
||||
@@ -111,26 +111,26 @@
|
||||
progress: 10
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td>
|
||||
- firstName: tanner
|
||||
+ firstName: derek
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- lastName: linsley
|
||||
+ lastName: perkins
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- age: 29
|
||||
+ age: 40
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- visits: 100
|
||||
+ visits: 40
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- status: In Relationship
|
||||
+ status: Single
|
||||
</td>
|
||||
<td
|
||||
class=""
|
||||
>
|
||||
<td>
|
||||
- progress: 50
|
||||
+ progress: 80
|
||||
</td>
|
||||
|
||||
@@ -1,7 +1,3 @@
|
||||
import PropTypes from 'prop-types'
|
||||
|
||||
const propTypes = {}
|
||||
|
||||
export const useAbsoluteLayout = hooks => {
|
||||
hooks.useMain.push(useMain)
|
||||
}
|
||||
@@ -9,8 +5,6 @@ export const useAbsoluteLayout = hooks => {
|
||||
useAbsoluteLayout.pluginName = 'useAbsoluteLayout'
|
||||
|
||||
const useMain = instance => {
|
||||
PropTypes.checkPropTypes(propTypes, instance, 'property', 'useAbsoluteLayout')
|
||||
|
||||
const {
|
||||
totalColumnsWidth,
|
||||
hooks: {
|
||||
|
||||
@@ -1,7 +1,3 @@
|
||||
import PropTypes from 'prop-types'
|
||||
|
||||
const propTypes = {}
|
||||
|
||||
export const useBlockLayout = hooks => {
|
||||
hooks.useMain.push(useMain)
|
||||
}
|
||||
@@ -9,8 +5,6 @@ export const useBlockLayout = hooks => {
|
||||
useBlockLayout.pluginName = 'useBlockLayout'
|
||||
|
||||
const useMain = instance => {
|
||||
PropTypes.checkPropTypes(propTypes, instance, 'property', 'useBlockLayout')
|
||||
|
||||
const {
|
||||
totalColumnsWidth,
|
||||
hooks: { getRowProps, getHeaderGroupProps, getHeaderProps, getCellProps },
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import React from 'react'
|
||||
import PropTypes from 'prop-types'
|
||||
|
||||
import { addActions, actions } from '../actions'
|
||||
import { defaultState } from '../hooks/useTable'
|
||||
@@ -8,10 +7,6 @@ defaultState.columnOrder = []
|
||||
|
||||
addActions('setColumnOrder')
|
||||
|
||||
const propTypes = {
|
||||
initialRowStateAccessor: PropTypes.func,
|
||||
}
|
||||
|
||||
export const useColumnOrder = hooks => {
|
||||
hooks.columnsBeforeHeaderGroupsDeps.push((deps, instance) => {
|
||||
return [...deps, instance.state.columnOrder]
|
||||
@@ -54,8 +49,6 @@ function columnsBeforeHeaderGroups(columns, instance) {
|
||||
}
|
||||
|
||||
function useMain(instance) {
|
||||
PropTypes.checkPropTypes(propTypes, instance, 'property', 'useColumnOrder')
|
||||
|
||||
const { setState } = instance
|
||||
|
||||
const setColumnOrder = React.useCallback(
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import { useMemo } from 'react'
|
||||
import PropTypes from 'prop-types'
|
||||
|
||||
import { mergeProps, applyPropHooks, expandRows } from '../utils'
|
||||
import { addActions, actions } from '../actions'
|
||||
@@ -9,11 +8,6 @@ defaultState.expanded = []
|
||||
|
||||
addActions('toggleExpanded', 'useExpanded')
|
||||
|
||||
const propTypes = {
|
||||
manualExpandedKey: PropTypes.string,
|
||||
paginateExpandedRows: PropTypes.bool,
|
||||
}
|
||||
|
||||
export const useExpanded = hooks => {
|
||||
hooks.getExpandedToggleProps = []
|
||||
hooks.useMain.push(useMain)
|
||||
@@ -22,8 +16,6 @@ export const useExpanded = hooks => {
|
||||
useExpanded.pluginName = 'useExpanded'
|
||||
|
||||
function useMain(instance) {
|
||||
PropTypes.checkPropTypes(propTypes, instance, 'property', 'useExpanded')
|
||||
|
||||
const {
|
||||
debug,
|
||||
rows,
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import React from 'react'
|
||||
import PropTypes from 'prop-types'
|
||||
|
||||
import { getFirstDefined, isFunction } from '../utils'
|
||||
import * as filterTypes from '../filterTypes'
|
||||
@@ -10,17 +9,6 @@ defaultState.filters = {}
|
||||
|
||||
addActions('setFilter', 'setAllFilters')
|
||||
|
||||
const propTypes = {
|
||||
columns: PropTypes.arrayOf(
|
||||
PropTypes.shape({
|
||||
disableFilters: PropTypes.bool,
|
||||
Filter: PropTypes.any,
|
||||
})
|
||||
),
|
||||
|
||||
manualFilters: PropTypes.bool,
|
||||
}
|
||||
|
||||
export const useFilters = hooks => {
|
||||
hooks.useMain.push(useMain)
|
||||
}
|
||||
@@ -28,8 +16,6 @@ export const useFilters = hooks => {
|
||||
useFilters.pluginName = 'useFilters'
|
||||
|
||||
function useMain(instance) {
|
||||
PropTypes.checkPropTypes(propTypes, instance, 'property', 'useFilters')
|
||||
|
||||
const {
|
||||
debug,
|
||||
rows,
|
||||
@@ -37,6 +23,7 @@ function useMain(instance) {
|
||||
flatColumns,
|
||||
filterTypes: userFilterTypes,
|
||||
manualFilters,
|
||||
defaultCanFilter = false,
|
||||
disableFilters,
|
||||
state: { filters },
|
||||
setState,
|
||||
@@ -108,7 +95,12 @@ function useMain(instance) {
|
||||
}
|
||||
|
||||
flatColumns.forEach(column => {
|
||||
const { id, accessor, disableFilters: columnDisableFilters } = column
|
||||
const {
|
||||
id,
|
||||
accessor,
|
||||
defaultCanFilter: columnDefaultCanFilter,
|
||||
disableFilters: columnDisableFilters,
|
||||
} = column
|
||||
|
||||
// Determine if a column is filterable
|
||||
column.canFilter = accessor
|
||||
@@ -117,7 +109,7 @@ function useMain(instance) {
|
||||
disableFilters === true ? false : undefined,
|
||||
true
|
||||
)
|
||||
: false
|
||||
: getFirstDefined(columnDefaultCanFilter, defaultCanFilter, false)
|
||||
|
||||
// Provide the column a way of updating the filter value
|
||||
column.setFilter = val => setFilter(column.id, val)
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import { useMemo } from 'react'
|
||||
import PropTypes from 'prop-types'
|
||||
|
||||
import * as aggregations from '../aggregations'
|
||||
import { addActions, actions } from '../actions'
|
||||
@@ -16,27 +15,6 @@ defaultState.groupBy = []
|
||||
|
||||
addActions('toggleGroupBy')
|
||||
|
||||
const propTypes = {
|
||||
// General
|
||||
columns: PropTypes.arrayOf(
|
||||
PropTypes.shape({
|
||||
aggregate: PropTypes.oneOfType([
|
||||
PropTypes.func,
|
||||
PropTypes.string,
|
||||
PropTypes.arrayOf(
|
||||
PropTypes.oneOfType([PropTypes.func, PropTypes.string])
|
||||
),
|
||||
]),
|
||||
disableGrouping: PropTypes.bool,
|
||||
Aggregated: PropTypes.any,
|
||||
})
|
||||
),
|
||||
groupByFn: PropTypes.func,
|
||||
manualGrouping: PropTypes.bool,
|
||||
disableGrouping: PropTypes.bool,
|
||||
aggregations: PropTypes.object,
|
||||
}
|
||||
|
||||
export const useGroupBy = hooks => {
|
||||
hooks.columnsBeforeHeaderGroups.push(columnsBeforeHeaderGroups)
|
||||
hooks.columnsBeforeHeaderGroupsDeps.push((deps, instance) => {
|
||||
@@ -67,8 +45,6 @@ function columnsBeforeHeaderGroups(flatColumns, { state: { groupBy } }) {
|
||||
}
|
||||
|
||||
function useMain(instance) {
|
||||
PropTypes.checkPropTypes(propTypes, instance, 'property', 'useGroupBy')
|
||||
|
||||
const {
|
||||
debug,
|
||||
rows,
|
||||
@@ -76,7 +52,8 @@ function useMain(instance) {
|
||||
flatHeaders,
|
||||
groupByFn = defaultGroupByFn,
|
||||
manualGroupBy,
|
||||
disableGrouping,
|
||||
defaultCanGroupBy,
|
||||
disableGroupBy,
|
||||
aggregations: userAggregations = {},
|
||||
hooks,
|
||||
plugins,
|
||||
@@ -87,17 +64,22 @@ function useMain(instance) {
|
||||
ensurePluginOrder(plugins, [], 'useGroupBy', ['useSortBy', 'useExpanded'])
|
||||
|
||||
flatColumns.forEach(column => {
|
||||
const { id, accessor, disableGrouping: columnDisableGrouping } = column
|
||||
const {
|
||||
id,
|
||||
accessor,
|
||||
defaultGroupBy: defaultColumnGroupBy,
|
||||
disableGroupBy: columnDisableGroupBy,
|
||||
} = column
|
||||
column.isGrouped = groupBy.includes(id)
|
||||
column.groupedIndex = groupBy.indexOf(id)
|
||||
|
||||
column.canGroupBy = accessor
|
||||
? getFirstDefined(
|
||||
columnDisableGrouping,
|
||||
disableGrouping === true ? false : undefined,
|
||||
columnDisableGroupBy === true ? false : undefined,
|
||||
disableGroupBy === true ? false : undefined,
|
||||
true
|
||||
)
|
||||
: false
|
||||
: getFirstDefined(defaultColumnGroupBy, defaultCanGroupBy, false)
|
||||
|
||||
if (column.canGroupBy) {
|
||||
column.toggleGroupBy = () => toggleGroupBy(column.id)
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import React from 'react'
|
||||
import PropTypes from 'prop-types'
|
||||
|
||||
//
|
||||
import { addActions, actions } from '../actions'
|
||||
@@ -11,12 +10,6 @@ defaultState.pageIndex = 0
|
||||
|
||||
addActions('pageChange', 'pageSizeChange')
|
||||
|
||||
const propTypes = {
|
||||
// General
|
||||
manualPagination: PropTypes.bool,
|
||||
paginateExpandedRows: PropTypes.bool,
|
||||
}
|
||||
|
||||
export const usePagination = hooks => {
|
||||
hooks.useMain.push(useMain)
|
||||
}
|
||||
@@ -24,8 +17,6 @@ export const usePagination = hooks => {
|
||||
usePagination.pluginName = 'usePagination'
|
||||
|
||||
function useMain(instance) {
|
||||
PropTypes.checkPropTypes(propTypes, instance, 'property', 'usePagination')
|
||||
|
||||
const {
|
||||
data,
|
||||
rows,
|
||||
|
||||
@@ -1,5 +1,3 @@
|
||||
import PropTypes from 'prop-types'
|
||||
|
||||
//
|
||||
|
||||
import { defaultState } from '../hooks/useTable'
|
||||
@@ -12,8 +10,6 @@ defaultState.columnResizing = {
|
||||
|
||||
defaultColumn.canResize = true
|
||||
|
||||
const propTypes = {}
|
||||
|
||||
export const useResizeColumns = hooks => {
|
||||
hooks.useBeforeDimensions.push(useBeforeDimensions)
|
||||
}
|
||||
@@ -21,8 +17,6 @@ export const useResizeColumns = hooks => {
|
||||
useResizeColumns.pluginName = 'useResizeColumns'
|
||||
|
||||
const useBeforeDimensions = instance => {
|
||||
PropTypes.checkPropTypes(propTypes, instance, 'property', 'useResizeColumns')
|
||||
|
||||
instance.hooks.getResizerProps = []
|
||||
|
||||
const {
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import React from 'react'
|
||||
import PropTypes from 'prop-types'
|
||||
|
||||
import {
|
||||
mergeProps,
|
||||
@@ -14,10 +13,6 @@ defaultState.selectedRowPaths = []
|
||||
|
||||
addActions('toggleRowSelected', 'toggleRowSelectedAll')
|
||||
|
||||
const propTypes = {
|
||||
manualRowSelectedKey: PropTypes.string,
|
||||
}
|
||||
|
||||
export const useRowSelect = hooks => {
|
||||
hooks.getToggleRowSelectedProps = []
|
||||
hooks.getToggleAllRowsSelectedProps = []
|
||||
@@ -28,8 +23,6 @@ export const useRowSelect = hooks => {
|
||||
useRowSelect.pluginName = 'useRowSelect'
|
||||
|
||||
function useRows(rows, instance) {
|
||||
PropTypes.checkPropTypes(propTypes, instance, 'property', 'useRowSelect')
|
||||
|
||||
const {
|
||||
state: { selectedRowPaths },
|
||||
} = instance
|
||||
@@ -57,8 +50,6 @@ function useRows(rows, instance) {
|
||||
}
|
||||
|
||||
function useMain(instance) {
|
||||
PropTypes.checkPropTypes(propTypes, instance, 'property', 'useRowSelect')
|
||||
|
||||
const {
|
||||
hooks,
|
||||
manualRowSelectedKey = 'isSelected',
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import React from 'react'
|
||||
import PropTypes from 'prop-types'
|
||||
|
||||
import { addActions, actions } from '../actions'
|
||||
import { defaultState } from '../hooks/useTable'
|
||||
@@ -8,10 +7,6 @@ defaultState.rowState = {}
|
||||
|
||||
addActions('setRowState', 'setCellState')
|
||||
|
||||
const propTypes = {
|
||||
initialRowStateAccessor: PropTypes.func,
|
||||
}
|
||||
|
||||
export const useRowState = hooks => {
|
||||
hooks.useMain.push(useMain)
|
||||
}
|
||||
@@ -19,8 +14,6 @@ export const useRowState = hooks => {
|
||||
useRowState.pluginName = 'useRowState'
|
||||
|
||||
function useMain(instance) {
|
||||
PropTypes.checkPropTypes(propTypes, instance, 'property', 'useRowState')
|
||||
|
||||
const {
|
||||
hooks,
|
||||
rows,
|
||||
|
||||
@@ -1,5 +1,4 @@
|
||||
import React from 'react'
|
||||
import PropTypes from 'prop-types'
|
||||
|
||||
import { ensurePluginOrder, defaultColumn } from '../utils'
|
||||
import { addActions, actions } from '../actions'
|
||||
@@ -19,26 +18,6 @@ defaultColumn.sortDescFirst = false
|
||||
|
||||
addActions('sortByChange')
|
||||
|
||||
const propTypes = {
|
||||
// General
|
||||
columns: PropTypes.arrayOf(
|
||||
PropTypes.shape({
|
||||
sortType: PropTypes.oneOfType([PropTypes.string, PropTypes.func]),
|
||||
sortDescFirst: PropTypes.bool,
|
||||
disableSorting: PropTypes.bool,
|
||||
})
|
||||
),
|
||||
orderByFn: PropTypes.func,
|
||||
sortTypes: PropTypes.object,
|
||||
manualSorting: PropTypes.bool,
|
||||
disableSorting: PropTypes.bool,
|
||||
disableMultiSort: PropTypes.bool,
|
||||
isMultiSortEvent: PropTypes.func,
|
||||
maxMultiSortColCount: PropTypes.number,
|
||||
disableSortRemove: PropTypes.bool,
|
||||
disableMultiRemove: PropTypes.bool,
|
||||
}
|
||||
|
||||
export const useSortBy = hooks => {
|
||||
hooks.useMain.push(useMain)
|
||||
}
|
||||
@@ -46,8 +25,6 @@ export const useSortBy = hooks => {
|
||||
useSortBy.pluginName = 'useSortBy'
|
||||
|
||||
function useMain(instance) {
|
||||
PropTypes.checkPropTypes(propTypes, instance, 'property', 'useSortBy')
|
||||
|
||||
const {
|
||||
debug,
|
||||
rows,
|
||||
@@ -55,7 +32,8 @@ function useMain(instance) {
|
||||
orderByFn = defaultOrderByFn,
|
||||
sortTypes: userSortTypes,
|
||||
manualSorting,
|
||||
disableSorting,
|
||||
defaultCanSort,
|
||||
disableSortBy,
|
||||
disableSortRemove,
|
||||
disableMultiRemove,
|
||||
disableMultiSort,
|
||||
@@ -162,15 +140,20 @@ function useMain(instance) {
|
||||
|
||||
// Add the getSortByToggleProps method to columns and headers
|
||||
flatHeaders.forEach(column => {
|
||||
const { accessor, disableSorting: columnDisableSorting, id } = column
|
||||
const {
|
||||
accessor,
|
||||
canSort: defaultColumnCanSort,
|
||||
disableSortBy: columnDisableSortBy,
|
||||
id,
|
||||
} = column
|
||||
|
||||
const canSort = accessor
|
||||
? getFirstDefined(
|
||||
columnDisableSorting === true ? false : undefined,
|
||||
disableSorting === true ? false : undefined,
|
||||
columnDisableSortBy === true ? false : undefined,
|
||||
disableSortBy === true ? false : undefined,
|
||||
true
|
||||
)
|
||||
: false
|
||||
: getFirstDefined(defaultCanSort, defaultColumnCanSort, false)
|
||||
|
||||
column.canSort = canSort
|
||||
|
||||
|
||||
@@ -305,6 +305,7 @@ function isReactComponent(component) {
|
||||
|
||||
export const mergeProps = (...groups) => {
|
||||
let props = {}
|
||||
|
||||
groups.forEach(({ style = {}, className, ...rest } = {}) => {
|
||||
props = {
|
||||
...props,
|
||||
@@ -316,6 +317,11 @@ export const mergeProps = (...groups) => {
|
||||
className: [props.className, className].filter(Boolean).join(' '),
|
||||
}
|
||||
})
|
||||
|
||||
if (props.className === '') {
|
||||
delete props.className
|
||||
}
|
||||
|
||||
return props
|
||||
}
|
||||
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"module": "commonjs",
|
||||
"lib": ["es6"],
|
||||
"strict": true,
|
||||
"noEmit": true,
|
||||
"forceConsistentCasingInFileNames": true
|
||||
},
|
||||
"files": ["index.d.ts"]
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
{
|
||||
"extends": "dtslint/dtslint.json",
|
||||
"rules": {
|
||||
"no-empty-interface": false,
|
||||
"no-unnecessary-generics": false,
|
||||
"semicolon": false,
|
||||
"whitespace": false
|
||||
}
|
||||
}
|
||||
@@ -1282,6 +1282,11 @@
|
||||
resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.0.tgz#e486d0d97396d79beedd0a6e33f4534ff6b4973e"
|
||||
integrity sha512-f5j5b/Gf71L+dbqxIpQ4Z2WlmI/mPJ0fOkGGmFgtb6sAu97EPczzbS3/tJKxmcYDj55OX6ssqwDAWOHIYDRDGA==
|
||||
|
||||
"@types/parsimmon@^1.3.0":
|
||||
version "1.10.0"
|
||||
resolved "https://registry.yarnpkg.com/@types/parsimmon/-/parsimmon-1.10.0.tgz#ffb81cb023ff435a41d4710a29ab23c561dc9fdf"
|
||||
integrity sha512-bsTIJFVQv7jnvNiC42ld2pQW2KRI+pAG243L+iATvqzy3X6+NH1obz2itRKDZZ8VVhN3wjwYax/VBGCcXzgTqQ==
|
||||
|
||||
"@types/prop-types@*":
|
||||
version "15.7.1"
|
||||
resolved "https://registry.yarnpkg.com/@types/prop-types/-/prop-types-15.7.1.tgz#f1a11e7babb0c3cad68100be381d1e064c68f1f6"
|
||||
@@ -1939,6 +1944,11 @@ buffer-from@^1.0.0:
|
||||
resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef"
|
||||
integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==
|
||||
|
||||
builtin-modules@^1.1.1:
|
||||
version "1.1.1"
|
||||
resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-1.1.1.tgz#270f076c5a72c02f5b65a47df94c5fe3a278892f"
|
||||
integrity sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=
|
||||
|
||||
builtin-modules@^3.1.0:
|
||||
version "3.1.0"
|
||||
resolved "https://registry.yarnpkg.com/builtin-modules/-/builtin-modules-3.1.0.tgz#aad97c15131eb76b65b50ef208e7584cd76a7484"
|
||||
@@ -2045,7 +2055,7 @@ chalk@2.3.1:
|
||||
escape-string-regexp "^1.0.5"
|
||||
supports-color "^5.2.0"
|
||||
|
||||
chalk@2.4.2, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.4.1, chalk@^2.4.2:
|
||||
chalk@2.4.2, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0, chalk@^2.4.1, chalk@^2.4.2:
|
||||
version "2.4.2"
|
||||
resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424"
|
||||
integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==
|
||||
@@ -2191,11 +2201,21 @@ combined-stream@^1.0.6, combined-stream@~1.0.6:
|
||||
dependencies:
|
||||
delayed-stream "~1.0.0"
|
||||
|
||||
command-exists@^1.2.8:
|
||||
version "1.2.8"
|
||||
resolved "https://registry.yarnpkg.com/command-exists/-/command-exists-1.2.8.tgz#715acefdd1223b9c9b37110a149c6392c2852291"
|
||||
integrity sha512-PM54PkseWbiiD/mMsbvW351/u+dafwTJ0ye2qB60G1aGQP9j3xK2gmMDc+R34L3nDtx4qMCitXT75mkbkGJDLw==
|
||||
|
||||
commander@^2.11.0, commander@^2.20.0, commander@~2.20.0:
|
||||
version "2.20.0"
|
||||
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422"
|
||||
integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==
|
||||
|
||||
commander@^2.12.1:
|
||||
version "2.20.1"
|
||||
resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.1.tgz#3863ce3ca92d0831dcf2a102f5fb4b5926afd0f9"
|
||||
integrity sha512-cCuLsMhJeWQ/ZpsFTbE765kvVfoeSddc4nU3up4fV+fDBcfUXnbITJ+JzhkdjzOqhURjZgujxaioam4RM9yGUg==
|
||||
|
||||
commitizen@^4.0.3:
|
||||
version "4.0.3"
|
||||
resolved "https://registry.yarnpkg.com/commitizen/-/commitizen-4.0.3.tgz#c19a4213257d0525b85139e2f36db7cc3b4f6dae"
|
||||
@@ -2595,6 +2615,22 @@ define-property@^2.0.2:
|
||||
is-descriptor "^1.0.2"
|
||||
isobject "^3.0.1"
|
||||
|
||||
definitelytyped-header-parser@^1.2.0:
|
||||
version "1.2.0"
|
||||
resolved "https://registry.yarnpkg.com/definitelytyped-header-parser/-/definitelytyped-header-parser-1.2.0.tgz#f21374b8a18fabcd3ba4b008a0bcbc9db2b7b4c4"
|
||||
integrity sha512-xpg8uu/2YD/reaVsZV4oJ4g7UDYFqQGWvT1W9Tsj6q4VtWBSaig38Qgah0ZMnQGF9kAsAim08EXDO1nSi0+Nog==
|
||||
dependencies:
|
||||
"@types/parsimmon" "^1.3.0"
|
||||
parsimmon "^1.2.0"
|
||||
|
||||
definitelytyped-header-parser@^3.7.2:
|
||||
version "3.7.2"
|
||||
resolved "https://registry.yarnpkg.com/definitelytyped-header-parser/-/definitelytyped-header-parser-3.7.2.tgz#a5b2ec9521762910e870477b01ce9feca06d9fb7"
|
||||
integrity sha512-nlkiv+QLlRSc3C3qAbusWPaBiyPLldwRFnrxvoxjdZHvHbIh2+U09qdmzzWV35Rs/I3MMhcoWRcVUi3M1G935Q==
|
||||
dependencies:
|
||||
"@types/parsimmon" "^1.3.0"
|
||||
parsimmon "^1.2.0"
|
||||
|
||||
del@^5.0.0:
|
||||
version "5.0.0"
|
||||
resolved "https://registry.yarnpkg.com/del/-/del-5.0.0.tgz#4fa698b7a1ffb4e2ab3e8929ed699799654d6720"
|
||||
@@ -2717,6 +2753,35 @@ dot-prop@^3.0.0:
|
||||
dependencies:
|
||||
is-obj "^1.0.0"
|
||||
|
||||
download-file-sync@^1.0.4:
|
||||
version "1.0.4"
|
||||
resolved "https://registry.yarnpkg.com/download-file-sync/-/download-file-sync-1.0.4.tgz#d3e3c543f836f41039455b9034c72e355b036019"
|
||||
integrity sha1-0+PFQ/g29BA5RVuQNMcuNVsDYBk=
|
||||
|
||||
dts-critic@^2.1.0:
|
||||
version "2.1.0"
|
||||
resolved "https://registry.yarnpkg.com/dts-critic/-/dts-critic-2.1.0.tgz#d7a6fcdcec301f639b7700fd9a2c9db4ab7071f4"
|
||||
integrity sha512-vXfmzBfaC4sBML2Er1YfFbcknyxp9t16x1NF0nTYj20gDR1dCF8aOpu/c+CgySxFyqEyLq6t0FkmWwpZEX6VLQ==
|
||||
dependencies:
|
||||
command-exists "^1.2.8"
|
||||
definitelytyped-header-parser "^1.2.0"
|
||||
download-file-sync "^1.0.4"
|
||||
semver "^6.2.0"
|
||||
yargs "^12.0.5"
|
||||
|
||||
dtslint@^0.9.8:
|
||||
version "0.9.8"
|
||||
resolved "https://registry.yarnpkg.com/dtslint/-/dtslint-0.9.8.tgz#c1fdc12c73f57f10528f0b4dda04be5c82919129"
|
||||
integrity sha512-cxxGo0mQO9mFQcUShtPbmmoZ+PrUczEV6R/PaN06dnv2IbgtIgLyrO8NBeU7VeHMxpe6exESy48oom97LWUIkA==
|
||||
dependencies:
|
||||
definitelytyped-header-parser "^3.7.2"
|
||||
dts-critic "^2.1.0"
|
||||
fs-extra "^6.0.1"
|
||||
request "^2.88.0"
|
||||
strip-json-comments "^2.0.1"
|
||||
tslint "5.14.0"
|
||||
typescript next
|
||||
|
||||
ecc-jsbn@~0.1.1:
|
||||
version "0.1.2"
|
||||
resolved "https://registry.yarnpkg.com/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz#3a83a904e54353287874c564b7549386849a98c9"
|
||||
@@ -3521,6 +3586,15 @@ fs-extra@8.1.0:
|
||||
jsonfile "^4.0.0"
|
||||
universalify "^0.1.0"
|
||||
|
||||
fs-extra@^6.0.1:
|
||||
version "6.0.1"
|
||||
resolved "https://registry.yarnpkg.com/fs-extra/-/fs-extra-6.0.1.tgz#8abc128f7946e310135ddc93b98bddb410e7a34b"
|
||||
integrity sha512-GnyIkKhhzXZUWFCaJzvyDLEEgDkPfb4/TPvJCJVuS8MWZgoSsErf++QpiAlDnKFcqhRlm+tIOcencCjyJE6ZCA==
|
||||
dependencies:
|
||||
graceful-fs "^4.1.2"
|
||||
jsonfile "^4.0.0"
|
||||
universalify "^0.1.0"
|
||||
|
||||
fs-minipass@^1.2.5:
|
||||
version "1.2.6"
|
||||
resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.6.tgz#2c5cc30ded81282bfe8a0d7c7c1853ddeb102c07"
|
||||
@@ -4961,7 +5035,7 @@ js-tokens@^3.0.2:
|
||||
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
|
||||
integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls=
|
||||
|
||||
js-yaml@^3.13.0, js-yaml@^3.13.1, js-yaml@^3.9.1:
|
||||
js-yaml@^3.13.0, js-yaml@^3.13.1, js-yaml@^3.7.0, js-yaml@^3.9.1:
|
||||
version "3.13.1"
|
||||
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847"
|
||||
integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==
|
||||
@@ -6144,6 +6218,11 @@ parse5@4.0.0:
|
||||
resolved "https://registry.yarnpkg.com/parse5/-/parse5-4.0.0.tgz#6d78656e3da8d78b4ec0b906f7c08ef1dfe3f608"
|
||||
integrity sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==
|
||||
|
||||
parsimmon@^1.2.0:
|
||||
version "1.13.0"
|
||||
resolved "https://registry.yarnpkg.com/parsimmon/-/parsimmon-1.13.0.tgz#6e4ef3dbd45ed6ea6808be600ac4b9c8a44228cf"
|
||||
integrity sha512-5UIrOCW+gjbILkjKPgTgmq8LKf8TT3Iy7kN2VD7OtQ81facKn8B4gG1X94jWqXYZsxG2KbJhrv/Yq/5H6BQn7A==
|
||||
|
||||
pascalcase@^0.1.1:
|
||||
version "0.1.1"
|
||||
resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
|
||||
@@ -6717,7 +6796,7 @@ request-promise-native@^1.0.5:
|
||||
stealthy-require "^1.1.1"
|
||||
tough-cookie "^2.3.3"
|
||||
|
||||
request@^2.87.0:
|
||||
request@^2.87.0, request@^2.88.0:
|
||||
version "2.88.0"
|
||||
resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef"
|
||||
integrity sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==
|
||||
@@ -7020,7 +7099,7 @@ semver@6.1.1:
|
||||
resolved "https://registry.yarnpkg.com/semver/-/semver-6.1.1.tgz#53f53da9b30b2103cd4f15eab3a18ecbcb210c9b"
|
||||
integrity sha512-rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ==
|
||||
|
||||
semver@^6.0.0, semver@^6.1.1:
|
||||
semver@^6.0.0, semver@^6.1.1, semver@^6.2.0:
|
||||
version "6.3.0"
|
||||
resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
|
||||
integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
|
||||
@@ -7684,11 +7763,37 @@ trim-right@^1.0.1:
|
||||
resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003"
|
||||
integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=
|
||||
|
||||
tslib@^1.9.0:
|
||||
tslib@^1.8.0, tslib@^1.8.1, tslib@^1.9.0:
|
||||
version "1.10.0"
|
||||
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a"
|
||||
integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==
|
||||
|
||||
tslint@5.14.0:
|
||||
version "5.14.0"
|
||||
resolved "https://registry.yarnpkg.com/tslint/-/tslint-5.14.0.tgz#be62637135ac244fc9b37ed6ea5252c9eba1616e"
|
||||
integrity sha512-IUla/ieHVnB8Le7LdQFRGlVJid2T/gaJe5VkjzRVSRR6pA2ODYrnfR1hmxi+5+au9l50jBwpbBL34txgv4NnTQ==
|
||||
dependencies:
|
||||
babel-code-frame "^6.22.0"
|
||||
builtin-modules "^1.1.1"
|
||||
chalk "^2.3.0"
|
||||
commander "^2.12.1"
|
||||
diff "^3.2.0"
|
||||
glob "^7.1.1"
|
||||
js-yaml "^3.7.0"
|
||||
minimatch "^3.0.4"
|
||||
mkdirp "^0.5.1"
|
||||
resolve "^1.3.2"
|
||||
semver "^5.3.0"
|
||||
tslib "^1.8.0"
|
||||
tsutils "^2.29.0"
|
||||
|
||||
tsutils@^2.29.0:
|
||||
version "2.29.0"
|
||||
resolved "https://registry.yarnpkg.com/tsutils/-/tsutils-2.29.0.tgz#32b488501467acbedd4b85498673a0812aca0b99"
|
||||
integrity sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==
|
||||
dependencies:
|
||||
tslib "^1.8.1"
|
||||
|
||||
tunnel-agent@^0.6.0:
|
||||
version "0.6.0"
|
||||
resolved "https://registry.yarnpkg.com/tunnel-agent/-/tunnel-agent-0.6.0.tgz#27a5dea06b36b04a0a9966774b290868f0fc40fd"
|
||||
@@ -7718,6 +7823,11 @@ typedarray@^0.0.6:
|
||||
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
|
||||
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
|
||||
|
||||
typescript@next:
|
||||
version "3.7.0-dev.20191009"
|
||||
resolved "https://registry.yarnpkg.com/typescript/-/typescript-3.7.0-dev.20191009.tgz#852e49dca797bb35acf930583ef65e7b3b23fc01"
|
||||
integrity sha512-Vk/wZedTpVd3QAhr3mG1+sbUHcpJ1wfw49Wo1NCQvzMa0vHCJeocEwWzaV2yWprsuuFv4+e8tjCj1Vnme2CMHg==
|
||||
|
||||
uglify-js@^3.1.4:
|
||||
version "3.6.0"
|
||||
resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.6.0.tgz#704681345c53a8b2079fb6cec294b05ead242ff5"
|
||||
@@ -8015,7 +8125,7 @@ yargs-parser@^11.1.1:
|
||||
camelcase "^5.0.0"
|
||||
decamelize "^1.2.0"
|
||||
|
||||
yargs@^12.0.2:
|
||||
yargs@^12.0.2, yargs@^12.0.5:
|
||||
version "12.0.5"
|
||||
resolved "https://registry.yarnpkg.com/yargs/-/yargs-12.0.5.tgz#05f5997b609647b64f66b81e3b4b10a368e7ad13"
|
||||
integrity sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==
|
||||
|
||||
Reference in New Issue
Block a user