tabulify 1.0.2 → 1.0.4
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.cjs.js +30 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +29 -0
- package/dist/index.esm.js.map +1 -1
- package/dist/types/components/Table.d.ts +2 -2
- package/dist/types/components/Table.types.d.ts +27 -0
- package/dist/types/index.d.ts +2 -0
- package/package.json +22 -18
package/dist/index.cjs.js
CHANGED
@@ -1,3 +1,33 @@
|
|
1
1
|
'use strict';
|
2
2
|
|
3
|
+
var React = require('react');
|
4
|
+
|
5
|
+
// Table Component
|
6
|
+
var Table = function (_a) {
|
7
|
+
var columns = _a.columns, dataSource = _a.dataSource, rowSelection = _a.rowSelection, pagination = _a.pagination;
|
8
|
+
var _b = React.useState((pagination === null || pagination === void 0 ? void 0 : pagination.current) || 1), currentPage = _b[0], setCurrentPage = _b[1];
|
9
|
+
var pageSize = (pagination === null || pagination === void 0 ? void 0 : pagination.pageSize) || dataSource.length;
|
10
|
+
// Handle pagination
|
11
|
+
var handlePageChange = function (page) {
|
12
|
+
var _a;
|
13
|
+
setCurrentPage(page);
|
14
|
+
(_a = pagination === null || pagination === void 0 ? void 0 : pagination.onChange) === null || _a === void 0 ? void 0 : _a.call(pagination, page);
|
15
|
+
};
|
16
|
+
// Paginate data
|
17
|
+
var paginatedData = pagination
|
18
|
+
? dataSource.slice((currentPage - 1) * pageSize, currentPage * pageSize)
|
19
|
+
: dataSource;
|
20
|
+
return (React.createElement("div", null,
|
21
|
+
React.createElement("table", null,
|
22
|
+
React.createElement("thead", null,
|
23
|
+
React.createElement("tr", null,
|
24
|
+
rowSelection && React.createElement("th", null),
|
25
|
+
columns.map(function (column) { return (React.createElement("th", { key: column.key }, column.title)); }))),
|
26
|
+
React.createElement("tbody", null, paginatedData.map(function (record, index) { return (React.createElement("tr", { key: record.key }, columns.map(function (column) { return (React.createElement("td", { key: column.key }, column.render
|
27
|
+
? column.render(record[column.dataIndex], record, index)
|
28
|
+
: record[column.dataIndex])); }))); }))),
|
29
|
+
pagination && (React.createElement("div", { className: "pagination" }, Array.from({ length: Math.ceil(pagination.total / pageSize) }, function (_, i) { return i + 1; }).map(function (page) { return (React.createElement("button", { key: page, className: currentPage === page ? 'active' : '', onClick: function () { return handlePageChange(page); } }, page)); })))));
|
30
|
+
};
|
31
|
+
|
32
|
+
exports.Table = Table;
|
3
33
|
//# sourceMappingURL=index.cjs.js.map
|
package/dist/index.cjs.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.cjs.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;"}
|
1
|
+
{"version":3,"file":"index.cjs.js","sources":["../src/components/Table.tsx"],"sourcesContent":["import React, { useState } from 'react';\nimport { TableProps } from './Table.types';\n\n// Table Component\nconst Table = <T extends { key: React.Key }>({\n columns,\n dataSource,\n rowSelection,\n pagination,\n}: TableProps<T>) => {\n const [currentPage, setCurrentPage] = useState(pagination?.current || 1);\n\n const pageSize = pagination?.pageSize || dataSource.length;\n\n // Handle pagination\n const handlePageChange = (page: number) => {\n setCurrentPage(page);\n pagination?.onChange?.(page);\n };\n\n // Paginate data\n const paginatedData = pagination\n ? dataSource.slice((currentPage - 1) * pageSize, currentPage * pageSize)\n : dataSource;\n\n return (\n <div>\n <table>\n <thead>\n <tr>\n {rowSelection && <th></th>}\n {columns.map((column) => (\n <th key={column.key}>{column.title}</th>\n ))}\n </tr>\n </thead>\n <tbody>\n {paginatedData.map((record, index) => (\n <tr key={record.key}>\n {columns.map((column) => (\n <td key={column.key}>\n {column.render\n ? column.render(record[column.dataIndex], record, index)\n : (record[column.dataIndex] as React.ReactNode)}\n </td>\n ))}\n </tr>\n ))}\n </tbody>\n </table>\n {pagination && (\n <div className=\"pagination\">\n {Array.from(\n { length: Math.ceil(pagination.total / pageSize) },\n (_, i) => i + 1\n ).map((page) => (\n <button\n key={page}\n className={currentPage === page ? 'active' : ''}\n onClick={() => handlePageChange(page)}\n >\n {page}\n </button>\n ))}\n </div>\n )}\n </div>\n );\n};\n\nexport default Table;\n"],"names":["useState"],"mappings":"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"}
|
package/dist/index.esm.js
CHANGED
@@ -1,2 +1,31 @@
|
|
1
|
+
import React, { useState } from 'react';
|
1
2
|
|
3
|
+
// Table Component
|
4
|
+
var Table = function (_a) {
|
5
|
+
var columns = _a.columns, dataSource = _a.dataSource, rowSelection = _a.rowSelection, pagination = _a.pagination;
|
6
|
+
var _b = useState((pagination === null || pagination === void 0 ? void 0 : pagination.current) || 1), currentPage = _b[0], setCurrentPage = _b[1];
|
7
|
+
var pageSize = (pagination === null || pagination === void 0 ? void 0 : pagination.pageSize) || dataSource.length;
|
8
|
+
// Handle pagination
|
9
|
+
var handlePageChange = function (page) {
|
10
|
+
var _a;
|
11
|
+
setCurrentPage(page);
|
12
|
+
(_a = pagination === null || pagination === void 0 ? void 0 : pagination.onChange) === null || _a === void 0 ? void 0 : _a.call(pagination, page);
|
13
|
+
};
|
14
|
+
// Paginate data
|
15
|
+
var paginatedData = pagination
|
16
|
+
? dataSource.slice((currentPage - 1) * pageSize, currentPage * pageSize)
|
17
|
+
: dataSource;
|
18
|
+
return (React.createElement("div", null,
|
19
|
+
React.createElement("table", null,
|
20
|
+
React.createElement("thead", null,
|
21
|
+
React.createElement("tr", null,
|
22
|
+
rowSelection && React.createElement("th", null),
|
23
|
+
columns.map(function (column) { return (React.createElement("th", { key: column.key }, column.title)); }))),
|
24
|
+
React.createElement("tbody", null, paginatedData.map(function (record, index) { return (React.createElement("tr", { key: record.key }, columns.map(function (column) { return (React.createElement("td", { key: column.key }, column.render
|
25
|
+
? column.render(record[column.dataIndex], record, index)
|
26
|
+
: record[column.dataIndex])); }))); }))),
|
27
|
+
pagination && (React.createElement("div", { className: "pagination" }, Array.from({ length: Math.ceil(pagination.total / pageSize) }, function (_, i) { return i + 1; }).map(function (page) { return (React.createElement("button", { key: page, className: currentPage === page ? 'active' : '', onClick: function () { return handlePageChange(page); } }, page)); })))));
|
28
|
+
};
|
29
|
+
|
30
|
+
export { Table };
|
2
31
|
//# sourceMappingURL=index.esm.js.map
|
package/dist/index.esm.js.map
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
|
1
|
+
{"version":3,"file":"index.esm.js","sources":["../src/components/Table.tsx"],"sourcesContent":["import React, { useState } from 'react';\nimport { TableProps } from './Table.types';\n\n// Table Component\nconst Table = <T extends { key: React.Key }>({\n columns,\n dataSource,\n rowSelection,\n pagination,\n}: TableProps<T>) => {\n const [currentPage, setCurrentPage] = useState(pagination?.current || 1);\n\n const pageSize = pagination?.pageSize || dataSource.length;\n\n // Handle pagination\n const handlePageChange = (page: number) => {\n setCurrentPage(page);\n pagination?.onChange?.(page);\n };\n\n // Paginate data\n const paginatedData = pagination\n ? dataSource.slice((currentPage - 1) * pageSize, currentPage * pageSize)\n : dataSource;\n\n return (\n <div>\n <table>\n <thead>\n <tr>\n {rowSelection && <th></th>}\n {columns.map((column) => (\n <th key={column.key}>{column.title}</th>\n ))}\n </tr>\n </thead>\n <tbody>\n {paginatedData.map((record, index) => (\n <tr key={record.key}>\n {columns.map((column) => (\n <td key={column.key}>\n {column.render\n ? column.render(record[column.dataIndex], record, index)\n : (record[column.dataIndex] as React.ReactNode)}\n </td>\n ))}\n </tr>\n ))}\n </tbody>\n </table>\n {pagination && (\n <div className=\"pagination\">\n {Array.from(\n { length: Math.ceil(pagination.total / pageSize) },\n (_, i) => i + 1\n ).map((page) => (\n <button\n key={page}\n className={currentPage === page ? 'active' : ''}\n onClick={() => handlePageChange(page)}\n >\n {page}\n </button>\n ))}\n </div>\n )}\n </div>\n );\n};\n\nexport default Table;\n"],"names":[],"mappings":"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"}
|
@@ -1,6 +1,6 @@
|
|
1
1
|
import React from 'react';
|
2
|
-
import { TableProps } from './types';
|
2
|
+
import { TableProps } from './Table.types';
|
3
3
|
declare const Table: <T extends {
|
4
4
|
key: React.Key;
|
5
|
-
}>({ columns, dataSource, rowSelection, pagination, }: TableProps<T>) =>
|
5
|
+
}>({ columns, dataSource, rowSelection, pagination, }: TableProps<T>) => React.JSX.Element;
|
6
6
|
export default Table;
|
@@ -0,0 +1,27 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
export interface Column<T> {
|
3
|
+
title: string;
|
4
|
+
dataIndex: keyof T;
|
5
|
+
key: string;
|
6
|
+
sorter?: (a: T, b: T) => number;
|
7
|
+
render?: (value: T[keyof T], record: T, index: number) => React.ReactNode;
|
8
|
+
}
|
9
|
+
export interface RowSelection<T> {
|
10
|
+
type: 'checkbox' | 'radio';
|
11
|
+
selectedRowKeys?: (keyof T)[];
|
12
|
+
onChange?: (selectedRowKeys: (keyof T)[], selectedRows: T[]) => void;
|
13
|
+
}
|
14
|
+
export interface Pagination {
|
15
|
+
pageSize: number;
|
16
|
+
total: number;
|
17
|
+
current?: number;
|
18
|
+
onChange?: (page: number) => void;
|
19
|
+
}
|
20
|
+
export interface TableProps<T extends {
|
21
|
+
key: React.Key;
|
22
|
+
}> {
|
23
|
+
columns: Column<T>[];
|
24
|
+
dataSource: T[];
|
25
|
+
rowSelection?: RowSelection<T>;
|
26
|
+
pagination?: Pagination;
|
27
|
+
}
|
package/package.json
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "tabulify",
|
3
|
-
"version": "1.0.
|
3
|
+
"version": "1.0.4",
|
4
4
|
"type": "module",
|
5
|
+
"description": "A lightweight and customizable React table component.",
|
5
6
|
"main": "dist/index.js",
|
7
|
+
"module": "dist/index.esm.js",
|
8
|
+
"types": "dist/types/index.d.ts",
|
6
9
|
"scripts": {
|
7
|
-
"main": "dist/index.js",
|
8
|
-
"module": "dist/index.esm.js",
|
9
|
-
"types": "dist/types/index.d.ts",
|
10
10
|
"build": "rollup -c",
|
11
11
|
"prepublishOnly": "npm run build",
|
12
12
|
"test": "jest",
|
@@ -15,17 +15,26 @@
|
|
15
15
|
"lint": "eslint . --quiet",
|
16
16
|
"lint:fix": "eslint . --fix"
|
17
17
|
},
|
18
|
-
"keywords": [
|
18
|
+
"keywords": [
|
19
|
+
"react",
|
20
|
+
"table",
|
21
|
+
"component",
|
22
|
+
"tabulify",
|
23
|
+
"typescript"
|
24
|
+
],
|
19
25
|
"author": "Armin Basirian",
|
20
|
-
"license": "
|
21
|
-
"description": "",
|
26
|
+
"license": "MIT",
|
22
27
|
"repository": {
|
23
28
|
"type": "git",
|
24
|
-
"url": "https://github.com/arbasirian/tabulify"
|
29
|
+
"url": "https://github.com/arbasirian/tabulify.git"
|
25
30
|
},
|
31
|
+
"bugs": {
|
32
|
+
"url": "https://github.com/arbasirian/tabulify/issues"
|
33
|
+
},
|
34
|
+
"homepage": "https://github.com/arbasirian/tabulify#readme",
|
26
35
|
"peerDependencies": {
|
27
|
-
"react": "^18.
|
28
|
-
"react-dom": "^18.
|
36
|
+
"react": "^18.0.0",
|
37
|
+
"react-dom": "^18.0.0"
|
29
38
|
},
|
30
39
|
"devDependencies": {
|
31
40
|
"@eslint/js": "^9.15.0",
|
@@ -34,17 +43,16 @@
|
|
34
43
|
"@rollup/plugin-node-resolve": "^15.3.0",
|
35
44
|
"@rollup/plugin-typescript": "^12.1.1",
|
36
45
|
"@testing-library/jest-dom": "^6.6.3",
|
46
|
+
"@testing-library/react": "^16.0.1",
|
37
47
|
"@types/jest": "^29.5.14",
|
38
|
-
"@types/mocha": "^10.0.9",
|
39
48
|
"@types/node": "^22.9.0",
|
40
|
-
"@types/
|
49
|
+
"@types/react": "^18.3.12",
|
41
50
|
"@typescript-eslint/eslint-plugin": "^8.15.0",
|
42
51
|
"@typescript-eslint/parser": "^8.15.0",
|
43
52
|
"eslint": "^9.15.0",
|
44
53
|
"eslint-config-prettier": "^9.1.0",
|
45
54
|
"eslint-plugin-prettier": "^5.2.1",
|
46
55
|
"eslint-plugin-react": "^7.37.2",
|
47
|
-
"globals": "^15.12.0",
|
48
56
|
"jest": "^29.7.0",
|
49
57
|
"jest-environment-jsdom": "^29.7.0",
|
50
58
|
"prettier": "^3.3.3",
|
@@ -52,10 +60,6 @@
|
|
52
60
|
"rollup-plugin-peer-deps-external": "^2.2.4",
|
53
61
|
"ts-jest": "^29.2.5",
|
54
62
|
"ts-node": "^10.9.2",
|
55
|
-
"typescript": "^5.6.3"
|
56
|
-
"typescript-eslint": "^8.15.0"
|
57
|
-
},
|
58
|
-
"dependencies": {
|
59
|
-
"@testing-library/react": "^16.0.1"
|
63
|
+
"typescript": "^5.6.3"
|
60
64
|
}
|
61
65
|
}
|