pcwu's TIL Notes


[React] Data Table 參考資料

Intro

最近有自己重刻 Data Table 的需求,也就是盡量把需要的功能封裝進 Component 。

Data Table 理想上只要簡單提供要呈現的資料,還有各欄位資料(Cell)顯示方式,附加上能不能被搜尋、或者排序規則等等,就可以快速呈現資料了。

以下列了幾個參考(抄抄?)的資料來源,目前最喜歡的大概是 Fixed Data Table 和 react-toolbox 的合體。

Table Components

Fixed Data Table

https://github.com/facebook/fixed-data-table

Fixed Data Table 2

http://schrodinger.github.io/fixed-data-table-2/

react-toolbox

https://github.com/react-toolbox/react-toolbox/tree/dev/components/table

react-virtualized

https://github.com/bvaughn/react-virtualized/tree/master/source/Table

react-table

https://github.com/react-tools/react-table

Reference