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

sr-table

v1.0.16

Published

**Sr Table** é uma biblioteca para facilitar a criação de tabelas em uma aplicação ReactJS e NextJS.

Downloads

975

Readme

Sr Table

Sr Table é uma biblioteca para facilitar a criação de tabelas em uma aplicação ReactJS e NextJS.


Instalação

Para instalar a sr-table, você pode usar o seguinte comando:

npm install sr-table

ou com yarn:

yarn add sr-table

Exemplo de uso

Aqui está um exemplo básico de como usar a biblioteca:

import { useState } from "react";
import { TableProvider, Table } from "sr-table";

type Data = {
  id: number;
  name: string;
  age: number;
  address: string;
};

const data: Data[] = [
  { id: 1, name: "John Doe", age: 28, address: "123 Main St" },
  { id: 2, name: "Jane Doe", age: 32, address: "456 Oak Ave" },
];

function App() {
  const [states, setStates] = useState<any>({
    selects: [],
    loading: false,
    loadingLines: [],
    pagination: {
      page: 1,
      search: "",
      sortBy: { key: "name", order: "asc" },
    },
  });

  const handleState = (key: string, value: any) => {
    setStates((prev: any) => ({ ...prev, [key]: value }));
  };

  return (
    <div style={{ padding: 20 }}>
      <TableProvider>
        <Table
          data={data}
          count={data.length}
          pagination={states.pagination}
          setPagination={(pagination) => handleState("pagination", pagination)}
          columns={[
            { title: "Name", dataIndex: "name", sortBy: true },
            { title: "Age", dataIndex: "age" },
            { title: "Address", dataIndex: "address" },
          ]}
        />
      </TableProvider>
    </div>
  );
}

export default App;

Este exemplo demonstra como configurar um componente de tabela simples com sr-table em uma aplicação React. Certifique-se de personalizar os dados e as colunas de acordo com sua necessidade.

Para NextJS utilize o caminho de importação:

import { TableProvider, Table } from "sr-table/next";

Tipagens

ITableProps<T extends { id: string }>

| Prop | Type | Description | Required | Default | | :-------------- | :------------------------------------- | :------------------------------------------------- | :------- | :------ | | data | T[] | Arrays dos dados que serão exibidos | true | [] | | count | Number | Quantidade total de items somando todas as páginas | false | 0 | | pages | Number | Quantidade de páginas que a tabela possui | false | 0 | | visible | Number | Quantidade de items visível por página | false | 10 | | loading | Boolean | Se a tabela está em estado de carregamento | false | false | | selects | String[] | Linhas selecionadas pelo checkbox | false | [] | | columns | Column[] | Estrutura das colunas | true | [] | | pagination | Pagination | Estado da paginação | false | null | | loadingLines | String[] | Linhas especificas que estão em carregamento | false | [] | | actions | ActionsProps | Elementos na coluna de ação | false | null | | setSelects | (id: string[] => void) | Função chamada ao selecionar checkbox | false | null | | setPagination | (pagination: Pagination => void) | Função chamada ao alterar elementos da paginação | false | null | | emptyImageProps | React.HTMLAttributes | Imagem exibida na tabela vazia | false | null | | wrapperProps | React.HTMLAttributes | Elemento root que engloba a tabela | false | null | | onClickRow | (item: T) => void | Função chamada ao clicar em uma linha especifica | false | null |

Column<T extends { id: string }>

| Props | Type | Description | Required | Default | | :------------- | :---------------------------------------------------- | :------------------------------------------------------------------------ | -------- | ------- | | title | String | Título da coluna | true | '' | | width | String | Largura fixa da coluna | false | auto | | sortBy | KeyOf T or String or Boolean | Se a coluna pode ser ordenável e qual a key quando clicada | false | false | | dataIndex | KeyOf T | Index de onde a tabela irá coletar o valor | true | '' | | fixed | left or right | Define se a coluna se manter fixa em alguma posição | false | null | | lineType | Line or Status | Tipo da linha | false | Line | | format | (item: T) => string | Formata o valor que sera exibido. OBS: sobrescreve dataIndex | false | null | | image | Image | Imagem exibida junto da linha | false | null | | minWidthToHide | Number | Oculta a coluna se o tamanho da tela for menor que o definido | false | null | | tooltip | Tooltip | Exibe caixa de texto ao passar o mouse sobre o conteúdo da coluna | false | null | | textStyle | (item: T, theme: DefaultTheme) => React.CSSProperties | Define o estilo do texto | false | null | | statusStyle | (item: T) => Status | Define qual status será exibido (Funciona somente com lineStyle = Status) | false | null | | customChildren | (item: T) => React.ReactNode | Passa um componente customizado para ser exibido na coluna | false | null |

Pagination

| Props | Type | Description | | :----- | :-------------------------------------- | :--------------------------------- | | page | String | Página atual da tabela | | search | String | Texto externo que está em pesquisa | | sortBy | { key: string; order: "asc" or "desc" } | Chave de ordenação atual da tabela |

ActionProps<T extends { id: string }>

| Props | Type | Description | | :------ | :------- | :---------------------------------------------------------------------- | | item | T | Item da coluna | | actions | Action[] | Ações que serão exibidas no popover | | loading | Boolean | Define se a tabela está em loading para evitar vários cliques nas ações |

Action<T extends { id: string }>

| Props | Type | Description | | :------ | :------------------- | :----------------------------------------------------------- | | title | String | Título da ação | | onClick | (item: T) => void | Ação chamada quando a ação é clicada | | hide | (item: T) => boolean | Define se a ação deve ser ocultada para uma linha especifica |

Image

| Props | Type | Description | | :---- | :------ | :---------------------------------- | | path | KeyOf T | Em qual linha a imagem será exibida | | alt | String | Texto alternativo da imagem |

Tooltip

| Props | Type | Description | | :---- | :----------------------------------------------------- | :--------------------------------------- | | title | (item: T) => string | Texto que será exibido ao passar o mouse | | style | (item: T, theme: DefaultTheme) => React.CSSProperties; | Estilo do box de texto |

Status

| Props | Type | Description | | :---- | :------------------------------------------------- | :------------------------------- | | label | String | Texto exibido na caixa de status | | style | "gray" or "green" or "orange" or "red" or "yellow" | Cor do box do status |


Licença

Este projeto está licenciado sob a licença ISC.


Autor

  • Igor Rezende

Contribuições

Contribuições são bem-vindas! Sinta-se à vontade para abrir um pull request ou reportar problemas no repositório.

Contact