added filter and sort

master
mahdi andalib 3 years ago
parent 18f0207ba2
commit 0203362697
  1. 18
      package-lock.json
  2. 1
      package.json
  3. 113
      src/components/ReactTable3/BasicTable.js
  4. 99
      src/components/ReactTable3/FilteringTable.js
  5. 15
      src/components/ReactTable3/GlobalFilter.js
  6. 45
      src/components/ReactTable3/MOCK_DATA.json
  7. 88
      src/components/ReactTable3/SortingTable.js
  8. 19
      src/components/ReactTable3/columns.js
  9. 5
      yarn.lock

18
package-lock.json generated

@ -17,6 +17,7 @@
"@testing-library/react": "^12.1.2", "@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0", "@testing-library/user-event": "^13.5.0",
"@themesberg/flowbite": "^1.3.0", "@themesberg/flowbite": "^1.3.0",
"date-fns": "^2.28.0",
"react": "^17.0.2", "react": "^17.0.2",
"react-dom": "^17.0.2", "react-dom": "^17.0.2",
"react-icons": "^4.3.1", "react-icons": "^4.3.1",
@ -6141,6 +6142,18 @@
"node": ">=10" "node": ">=10"
} }
}, },
"node_modules/date-fns": {
"version": "2.28.0",
"resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.28.0.tgz",
"integrity": "sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw==",
"engines": {
"node": ">=0.11"
},
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/date-fns"
}
},
"node_modules/debug": { "node_modules/debug": {
"version": "4.3.3", "version": "4.3.3",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz",
@ -21318,6 +21331,11 @@
"whatwg-url": "^8.0.0" "whatwg-url": "^8.0.0"
} }
}, },
"date-fns": {
"version": "2.28.0",
"resolved": "https://registry.npmjs.org/date-fns/-/date-fns-2.28.0.tgz",
"integrity": "sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw=="
},
"debug": { "debug": {
"version": "4.3.3", "version": "4.3.3",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz", "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.3.tgz",

@ -12,6 +12,7 @@
"@testing-library/react": "^12.1.2", "@testing-library/react": "^12.1.2",
"@testing-library/user-event": "^13.5.0", "@testing-library/user-event": "^13.5.0",
"@themesberg/flowbite": "^1.3.0", "@themesberg/flowbite": "^1.3.0",
"date-fns": "^2.28.0",
"react": "^17.0.2", "react": "^17.0.2",
"react-dom": "^17.0.2", "react-dom": "^17.0.2",
"react-icons": "^4.3.1", "react-icons": "^4.3.1",

@ -1,8 +1,8 @@
import React, {useMemo} from 'react'; import React, {useMemo} from 'react';
import {useTable} from 'react-table'; import {useTable, useSortBy, useGlobalFilter} from 'react-table';
import {COLUMNS} from './columns'; import {COLUMNS} from './columns';
import MOCK_DATA from './MOCK_DATA.json'; import MOCK_DATA from './MOCK_DATA.json';
import {GlobalFilter} from './GlobalFilter';
const BasicTable = () => { const BasicTable = () => {
@ -10,45 +10,86 @@ const BasicTable = () => {
const columns = React.useMemo(() => COLUMNS, []) const columns = React.useMemo(() => COLUMNS, [])
const data = useMemo(() => MOCK_DATA,[]) const data = useMemo(() => MOCK_DATA,[])
const tableInstance = useTable({ const {
getTableProps,
getTableBodyProps,
headerGroups,
footerGroups,
rows,
prepareRow,
state,
setGlobalFilter,
} = useTable({
columns, columns,
data, data,
}) },
useGlobalFilter,
useSortBy,
)
const { getTableProps, getTableBodyProps,headerGroups,rows,prepareRow, } = tableInstance const { globalFilter } = state
return ( return (
<table {...getTableProps()} className="min-w-full divide-y divide-gray-200"> <>
<thead className="bg-gray-300"> <GlobalFilter filter={globalFilter} setFilter={setGlobalFilter} />
{headerGroups.map((headerGroup) => (
<tr {...headerGroup.getHeaderGroupProps()}> <table {...getTableProps()} className="min-w-full divide-y divide-gray-200">
{headerGroup.headers.map((column) => (
<th {...column.getHeaderProps()} scope="col" className="px-6 py-3 text-right text-xs" style={{color: '#3287B9'}}> <thead className="bg-gray-300">
{column.render('Header')} {headerGroups.map((headerGroup) => (
</th> <tr {...headerGroup.getHeaderGroupProps()}>
))} {headerGroup.headers.map((column) => (
</tr> <th {...column.getHeaderProps(column.getSortByToggleProps())} scope="col" className="px-4 py-2 text-right text-xs" style={{color: '#3287B9'}}>
))} {column.render('Header')}
</thead> <span>
{column.isSorted ? (column.isSortedDesc ? ' 🔽' : ' 🔼') : ''}
<tbody {...getTableBodyProps()} className="bg-white divide-y divide-gray-200"> </span>
{rows.map((row) => { </th>
prepareRow(row) ))}
return( </tr>
<tr {...row.getRowProps()}> ))}
{row.cells.map((cell) => { </thead>
return <td {...cell.getCellProps()} className="px-6 py-4 whitespace-nowrap" role="cell">
{cell.render('Cell')} <tbody {...getTableBodyProps()} className="bg-white divide-y divide-gray-200">
</td> {rows.map((row) => {
})} prepareRow(row)
</tr> return(
) <tr {...row.getRowProps()}>
})} {row.cells.map((cell) => {
</tbody> return <td {...cell.getCellProps()} className="px-4 py-4 whitespace-nowrap text-sm" role="cell" style={{color:'#00253A'}}>
{cell.render('Cell')}
</table> </td>
})}
</tr>
)
})}
</tbody>
<tfoot className="bg-gray-300">
{
footerGroups.map(footerGroup => (
<tr {...footerGroup.getFooterGroupProps()}>
{
footerGroup.headers.map(column => (
<td {...column.getFooterProps} className="px-4 py-2 text-right text-xs" style={{color: '#3287B9'}}>
{
column.render('Footer')
}
</td>
))
}
</tr>
))
}
</tfoot>
</table>
</>
) )
}; };

@ -0,0 +1,99 @@
// not using
import React, {useMemo} from 'react';
import {useTable, useSortBy, useGlobalFilter} from 'react-table';
import {COLUMNS} from './columns';
import MOCK_DATA from './MOCK_DATA.json';
const FilteringTable = () => {
const columns = React.useMemo(() => COLUMNS, [])
const data = useMemo(() => MOCK_DATA,[])
const {
getTableProps,
getTableBodyProps,
headerGroups,
footerGroups,
rows,
prepareRow,
state,
setGlobalFilter,
} = useTable({
columns,
data,
},
useSortBy,
useGlobalFilter
)
const { globalFilter } = state
return (
<>
<GlobalFilter filter={globalFilter} setFilter={setGlobalFilter} />
<table {...getTableProps()} className="min-w-full divide-y divide-gray-200">
<thead className="bg-gray-300">
{headerGroups.map((headerGroup) => (
<tr {...headerGroup.getHeaderGroupProps()}>
{headerGroup.headers.map((column) => (
<th {...column.getHeaderProps(column.getSortByToggleProps())} scope="col" className="px-4 py-2 text-right text-xs" style={{color: '#3287B9'}}>
{column.render('Header')}
<span>
{column.isSorted ? (column.isSortedDesc ? ' 🔽' : ' 🔼') : ''}
</span>
</th>
))}
</tr>
))}
</thead>
<tbody {...getTableBodyProps()} className="bg-white divide-y divide-gray-200">
{rows.map((row) => {
prepareRow(row)
return(
<tr {...row.getRowProps()}>
{row.cells.map((cell) => {
return <td {...cell.getCellProps()} className="px-4 py-4 whitespace-nowrap text-sm" role="cell" style={{color:'#00253A'}}>
{cell.render('Cell')}
</td>
})}
</tr>
)
})}
</tbody>
<tfoot className="bg-gray-300">
{
footerGroups.map(footerGroup => (
<tr {...footerGroup.getFooterGroupProps()}>
{
footerGroup.headers.map(column => (
<td {...column.getFooterProps} className="px-4 py-2 text-right text-xs" style={{color: '#3287B9'}}>
{
column.render('Footer')
}
</td>
))
}
</tr>
))
}
</tfoot>
</table>
</>
)
};
export default FilteringTable;

@ -0,0 +1,15 @@
import React from 'react';
export const GlobalFilter = ({ filter, setFilter }) => {
return (
<span>
Search: {''}
<input value={filter || '' } onChange={(e) => setFilter(e.target.value)} />
</span>
);
};

@ -1,26 +1,53 @@
[ [
{ {
"name": "1مایکروویر سامسونگ مدل", "name": "مایکروویر سامسونگ مدل 1",
"order-date": "1399/09/21", "order-date": "1399/09/27",
"order-price": 20, "order-price": 27,
"order-number": "09120023100", "order-number": "09120023100",
"user-job": "مهندس ساختمان", "user-job": "مهندس ساختمان",
"order-status": 1, "order-status": 1,
"order-level": 2 "order-level": 2
}, },
{ {
"name": "1مایکروویر سامسونگ مدل", "name": "مایکروویر سامسونگ مدل 2",
"order-date": "1399/09/21", "order-date": "1399/09/25",
"order-price": 20, "order-price": 26,
"order-number": "09120023100", "order-number": "09120023100",
"user-job": "مهندس ساختمان", "user-job": "مهندس ساختمان",
"order-status": 1, "order-status": 1,
"order-level": 2 "order-level": 2
}, },
{ {
"name": "1مایکروویر سامسونگ مدل", "name": "مایکروویر سامسونگ مدل 3",
"order-date": "1399/09/21", "order-date": "1399/09/22",
"order-price": 20, "order-price": 44,
"order-number": "09120023100",
"user-job": "مهندس ساختمان",
"order-status": 1,
"order-level": 2
},
{
"name": "لپ تاپ مک بوک اپل",
"order-date": "1410/09/27",
"order-price": 73,
"order-number": "09120023100",
"user-job": "مهندس ساختمان",
"order-status": 1,
"order-level": 2
},
{
"name": "تبلت اپل",
"order-date": "1375/09/25",
"order-price": 96,
"order-number": "09120023100",
"user-job": "مهندس ساختمان",
"order-status": 1,
"order-level": 2
},
{
"name": "کیس استوک",
"order-date": "1396/09/22",
"order-price": 75,
"order-number": "09120023100", "order-number": "09120023100",
"user-job": "مهندس ساختمان", "user-job": "مهندس ساختمان",
"order-status": 1, "order-status": 1,

@ -0,0 +1,88 @@
// not using
import React, {useMemo} from 'react';
import {useTable, useSortBy} from 'react-table';
import {COLUMNS} from './columns';
import MOCK_DATA from './MOCK_DATA.json';
const SortingTable = () => {
const columns = React.useMemo(() => COLUMNS, [])
const data = useMemo(() => MOCK_DATA,[])
const {
getTableProps,
getTableBodyProps,
headerGroups,
footerGroups,
rows,
prepareRow,
} = useTable({
columns,
data,
},
useSortBy
)
return (
<table {...getTableProps()} className="min-w-full divide-y divide-gray-200">
<thead className="bg-gray-300">
{headerGroups.map((headerGroup) => (
<tr {...headerGroup.getHeaderGroupProps()}>
{headerGroup.headers.map((column) => (
<th {...column.getHeaderProps(column.getSortByToggleProps())} scope="col" className="px-4 py-2 text-right text-xs" style={{color: '#3287B9'}}>
{column.render('Header')}
<span>
{column.isSorted ? (column.isSortedDesc ? ' 🔽' : ' 🔼') : ''}
</span>
</th>
))}
</tr>
))}
</thead>
<tbody {...getTableBodyProps()} className="bg-white divide-y divide-gray-200">
{rows.map((row) => {
prepareRow(row)
return(
<tr {...row.getRowProps()}>
{row.cells.map((cell) => {
return <td {...cell.getCellProps()} className="px-4 py-4 whitespace-nowrap text-sm" role="cell" style={{color:'#00253A'}}>
{cell.render('Cell')}
</td>
})}
</tr>
)
})}
</tbody>
<tfoot className="bg-gray-300">
{
footerGroups.map(footerGroup => (
<tr {...footerGroup.getFooterGroupProps()}>
{
footerGroup.headers.map(column => (
<td {...column.getFooterProps} className="px-4 py-2 text-right text-xs" style={{color: '#3287B9'}}>
{
column.render('Footer')
}
</td>
))
}
</tr>
))
}
</tfoot>
</table>
)
};
export default SortingTable;

@ -1,37 +1,42 @@
import {format} from 'date-fns'
export const COLUMNS = [ export const COLUMNS = [
{ {
Header: 'نام و نام خانوادگی', Header: 'نام و نام خانوادگی',
Footer: 'نام و نام خانوادگی',
accessor: 'name', accessor: 'name',
disableSortBy: true,
}, },
{ {
Header: 'تاریخ سفارش', Header: 'تاریخ سفارش',
Footer: 'تاریخ سفارش',
accessor: 'order-date', accessor: 'order-date',
Cell: ({ value }) => { return format(new Date (value), 'dd/MM/yyyy') }
}, },
{ {
Header: 'مبلغ سفارش', Header: 'مبلغ سفارش',
Footer: 'مبلغ سفارش',
accessor: 'order-price', accessor: 'order-price',
}, },
{ {
Header: 'شماره سفارش', Header: 'شماره سفارش',
Footer: 'شماره سفارش',
accessor: 'order-number', accessor: 'order-number',
}, },
{ {
Header: 'شغل کاربر', Header: 'شغل کاربر',
Footer: 'شغل کاربر',
accessor: 'user-job', accessor: 'user-job',
}, },
{ {
Header: 'وضعیت سفارش', Header: 'وضعیت سفارش',
Footer: 'وضعیت سفارش',
accessor: 'order-status', accessor: 'order-status',
}, },
{ {
Header: 'سطح اهمیت', Header: 'سطح اهمیت',
Footer: 'سطح اهمیت',
accessor: 'order-level', accessor: 'order-level',
disableSortBy: true,
}, },
] ]

@ -3567,6 +3567,11 @@
"whatwg-mimetype" "^2.3.0" "whatwg-mimetype" "^2.3.0"
"whatwg-url" "^8.0.0" "whatwg-url" "^8.0.0"
"date-fns@^2.28.0":
"integrity" "sha512-8d35hViGYx/QH0icHYCeLmsLmMUheMmTyV9Fcm6gvNwdw31yXXH+O85sOBJ+OLnLQMKZowvpKb6FgMIQjcpvQw=="
"resolved" "https://registry.npmjs.org/date-fns/-/date-fns-2.28.0.tgz"
"version" "2.28.0"
"debug@^2.6.0": "debug@^2.6.0":
"integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==" "integrity" "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA=="
"resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz" "resolved" "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"

Loading…
Cancel
Save