npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@sinoui/use-rest-table

v1.0.0

Published

@sinoui/use-rest-table 旨在简化与@sinoui/data-table 的相关处理

Downloads

4

Readme

@sinoui/use-rest-table

npm version downloads

@sinoui/use-rest-table 旨在简化与@sinoui/data-table 的相关处理。

安装

使用yarn

yarn add @sinoui/use-rest-table

使用npm:

npm i --save @sinoui/use-rest-table

快速使用

import React from 'react';
import useRestTable from '@sinoui/use-rest-table';
import DataTable, { TableColumn } from '@sinoui/data-table';

function ListDemo() {
  const dataSource = useRestTable('/users', [], { keyName: 'userId' });

  return (
    <DataTable {...dataSource}>
      <TableColumn name="userName" width={100} title="姓名" />
      <TableColumn name="age" width={100} title="年龄" />
    </DataTable>
  );
}

dataSource 的属性和方法

@sinoui/use-rest-tabledataSource继承了use-rest-page-api 的所有属性和方法,除此之外还有以下方法:

  • data 表示列表数据
  • loading 表示数据加载中的状态
  • error 表示加载错误的状态
  • onSelect() 列表选中时的回调函数
  • selectedRows 表示列表的选中项
  • setSelectedItems() 设置列表选中项的回调函数
  • refresh() 重新加载数据列表数据
  • getItem() 从列表数据中获取其中一条数据信息(不与后端交互)
  • create() 新增一条数据
  • onChange() 翻页、排序时的回调函数
  • sort 排序信息,类型为object
  • clean() 清空列表数据时的回调函数