Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

ck-table

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ck-table

高性能React表格

  • 1.0.1
  • npm
  • Socket score

Version published
Weekly downloads
3
Maintainers
1
Weekly downloads
 
Created
Source

ck-table

针对React的一款高性能的表格组件

  • 使用 div + css 替换原始的table布局
  • 表头/表体分离化
  • 保留基础功能:表格数据复选/表头列自定义/列筛选/列排序/固定列/文字超出隐藏
  • 表体虚拟化数据,成千上万条数据丝滑流畅
  • 表格自动获取父级高度,也可自定义高度
  • 保留高度自定义

install


$ npm i ck-table
# or 
$ yarn add ck-table

Example


  • ck-table

Usage


import CkTable from 'ck-table';

const columns = [
    {
      title: 'checkbox',
      type: 'checkbox',
      accessor: 'checkbox',
      width: 100,
      fixed: 'left',
    },
    {
      title: '#',
      type: 'seq',
      accessor: 'seq',
      width: 100,
      fixed: 'left',
    },
    {
      title: () => <span>'First Name'</span>,
      accessor: 'firstName',
      sort: true,
      filter: 'input',
    },
    {
      Header: 'Last Name',
      title: 'Last Name',
      accessor: 'lastName',
      width: 100,
      fixed: 'left',
    },
    {
      Header: 'type',
      title: 'Type',
      accessor: 'type',
      fixed: 'left',
      width: 100,
      filter: 'checkbox',
    },
    {
      Header: '物料',
      title: '物料',
      accessor: 'material',
    },
    {
      title: '备注',
      accessor: 'remark',
      ellipsis: true,
    },
    {
      Header: 'Age',
      title: 'Age',
      accessor: 'age',
      align: 'right',
      sort: true,
      filter: 'checkbox',
    },
    {
      Header: 'Visits',
      title: 'Visits',
      accessor: 'visits',
      width: 300,
      fixed: 'right',
    },
    {
      Header: 'Status',
      title: 'Status',
      accessor: 'status',
      width: 600,
    },
    {
      Header: 'Profile Progress',
      title: 'Profile Progress',
      accessor: 'progress',
      width: 200,
    },
    {
      title: 'phone',
      accessor: 'phone',
      fixed: 'right',
      width: 200,
    }
  ];

const data = new Array(size).fill().map((item, index) => {
      return {
        id: index,
        seq: index + 1,
        title: '物料的名称',
        code: `MLY001Y002009${index}Y`,
        name: '',
        material: '物料名称',
        materialCode: `MLY001Y002009${index}Y`,
        state: index % 3 ? 'ok' : index % 2 ? 'disable' : 'wait',
        supplier: '供应商名称',
        number: 'MLY001',
        contactUser: '联系人',
        phone: '13131313131',
        category: index % 2 ? '牛仔' : '非牛仔',
        type: index % 2 ?  '面料' : '辅料',
        firstName: index % 2 ? '张' : '王',
        lastName: index % 3 ? '3' : '4',
        age: index % 3 ? '17' : '28',
        visits: index % 3 ? '78' : '62',
        progress: index % 3 ? '88' : '99',
        status: index % 3 ? 'single' : 'relationship',
        remark: '这是备注这是备注这是备注这是备注这是备注这是备注这是备注这是备注',
      };
    })

const Demo = () => {
  const tableRef = React.useRef(null);
  
  // 获取选中的行数组
  const getCheckboxRecords = () => {
    const v = tableRef.current.getCheckboxRecords;
    console.log(v);
  };
    
  return (
    <div style={{ height: 600 }} className="container">
      <CkTable ref={tableRef} columns={columns} data={data} size="small" />
    </div>
  )
}

API


CkTable

参数说明类型可选默认值
data行数据Array
columns列数据Array
size尺寸: 64/48/36String'large'/'small'/'mini''small'
resizable是否可调整列宽Boolean
height表格高度Number
toolbar工具栏Objectsetting/
showFooter是否显示标为Boolean
filterTypes过滤拓展Object

Instance

属性说明
getCheckboxRecords获取当前已选中的行数据
* tableInstance表示例对象,自定义操作时可能会用到(使用不当会造成表结构破坏)
Column
参数说明类型可选默认值
title标题String/Jsx
Cell单元格String/Jsx
Footer页脚String/Jsx
accessor键值String
width宽度Number250
minWidth最小宽度Number60
maxWidth最大宽度Number
fixed固定位置String'left'/'right'
type基础类型String'checkbox'/'seq'
visible默认是否显示Booleantrue
sort是否启用排序Boolean
filter过滤类型String'checkbox'/'select'/'input'
Filter自定义过滤器JSX
ellipsis是否超出省略代替Boolean
align对齐方式String'left'/'center'/'right'
Custom

你可以自定义全局方法

/* filterTypes
  自定义过滤类型及方法,为了避免不必要的渲染,请使用memoized
  默认内置模糊文本和数组过滤:text/fuzzyText/checkbox
  接收参数:行数据/列键值/筛选的内容
*/
filterTypes: {
    methodName: (rows, columnIds, filterValue) => Boolean
}

/* Filter
  自定义筛选框
*/
Filter: ({column}) => JSX


Ref

  • getCheckboxRecords: Function
    • get selected rows of the ck-table

Options

  • columns: Array
    • Required
    • The columns of the ck-table
  • data: Array
    • Required
    • The data of the ck-table
  • size: String
    • Optional: large/small/mini
    • default: 'small'
    • The size of the ck-table
  • height: Integer || String
    • Optional: '100%'/600/......
    • default: '100%'
    • The height of the ck-table

Contributors

  • Chalk(乔克)

Keywords

FAQs

Package last updated on 21 Feb 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc