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

@tenqube/react-grid

v1.1.0

Published

A library that allows you to easily implement tables with simple data. (for React)

Downloads

20

Readme

@tenqube/react-grid

logo

Introduction

React Grid is a tabular View library used within the Tenqube company.
It is composed of React components and can be implemented easily and intuitively by passing the data constituting the table as Props.

It is still an early version, so there may be unstable parts. Please register the problematic part as an issue on GitHub.

Version

v1.1.0

Features

Change and remember column width.

You can change the size of each column in the table by enabling the scalable setting in options, and the changes will be saved and persisted in web storage.

Fixed column not working to scroll.

If you enter a size in the fixedSize setting in options, the column is fixed by that size. (default 0)

Other basic features..

  • Provided as a sorting status callback by column.
  • Specifying per-row classes for styling.
  • Provides column types such as checkbox and toggle.

Installation

$ npm install @tenqube/react-grid

Quick Start

React Grid makes it simple to construct a table view by passing the promised columns and rows as Props.
and below is a simple configuration example.

// GridComponent.tsx
import React from "react";
import Grid, { GridType, IPropsColumn, RowType } from "@tenqube/react-grid";
// import style what you want
import "@tenqube/react-grid/dist/esm/index.css";
import "@tenqube/react-grid/dist/cjs/index.css";

const GridComponent = () => {
  const columns: Array<IPropsColumn> = [
    {
      id: "week",
      name: "THIS WEEK",
      type: GridType.String,
    },
    {
      id: "title",
      name: "TITLE",
      type: GridType.String,
    },
    {
      id: "artist",
      name: "ARTIST",
      type: GridType.String,
    },
    {
      id: "award",
      name: "AWARD",
      type: GridType.String,
    },
  ];

  const rows: Array<Array<RowType>> = [
    ["1", "Last Night", "Morgan Wallen", "★"],
    ["2", "Flowers", "Miley Cyrus", ""],
    ["3", "Kill Bill", "SZA", ""],
    ["4", "Calm Down", "Rema & Selena Gomez", "★"],
    ["5", "Favorite Song", "Toosii", "★"],
  ];

  return <Grid id={"billboard"} columns={columns} rows={rows} />;
};

export default GridComponent;

Props

React Grid provides props of id, columns, rows, options and addClassNameByRows.

Grid Props

interface IProps {
  id: string;
  rows: RowType[][];
  columns: IPropsColumn[];
  options?: IPropsOptions;
  addClassNameByRows?: IClassNameByRow[];
}

Row Type

type string | number | boolean | ILinkRows | Array<string | number> | null | Function | ReactNode

Link Rows

interface ILinkRows {
  name: string;
  target: string;
  url: string;
}

Link Rows

interface IClassNameByRow {
  index: number;
  className: string;
}

GridType

enum GridType {
  Hidden,
  Checkbox,
  String,
  Toggle,
  Image,
  Link,
  Button,
  Items,
  InputText,
  InputNumber,
  Array,
  Component,
}

Columns

  • Hidden type
interface IPropsColumn {
  id: string;
  type: GridType.Hidden;
}
  • Checkbox type
interface IPropsColumn {
  id: string;
  type: GridType.Checkbox;
  callback: (isAll: boolean, rowIdx?: number, columnIdx?: number) => void;
  width?: number;
  className?: string;
}
  • Toggle type
interface IPropsColumn {
  id: string;
  type: GridType.Toggle;
  callback: (rowIdx: number, columnIdx: number) => void;
  width?: number;
  name?: string;
  className?: string;
}
  • String type
interface IPropsColumn {
  id: string;
  type: GridType.String;
  width?: number;
  name?: string;
  className?: string;
  isSorting?: boolean;
  callback?: (columnId: string, orderType: OrderType) => void; // callback by sorting
}
  • Image type
interface IPropsColumn {
  id: string;
  type: GridType.Image;
  width?: number;
  name?: string;
  className?: string;
}
  • Link type
interface IPropsColumn {
  id: string;
  type: GridType.Link;
  width?: number;
  name?: string;
  className?: string;
  isSorting?: boolean;
  callback?: (columnId: string, orderType: OrderType) => void; // callback by sorting
}
  • Button type
interface IPropsColumn {
  id: string;
  type: GridType.Button;
  callback: (rowIdx: number, columnIdx: number) => void;
  width?: number;
  name?: string;
  className?: string;
}
  • Items type
interface IPropsColumn {
  id: string;
  type: GridType.Items;
  items: Array<FC<{ rowIdx: number; columnIdx: number }> | ReactNode>;
  width?: number;
  name?: string;
  className?: string;
  isSorting?: boolean;
  callback?: (columnId: string, orderType: OrderType) => void; // callback by sorting
}
  • Input type
interface IPropsColumn {
  id: string;
  type: GridType.InputText | GridType.InputNumber;
  callback: (rowIdx: number, columnIdx: number, value: string | number) => void;
  width?: number;
  name?: string;
  className?: string;
}
  • Array type
interface IPropsColumn {
  id: string;
  type: GridType.Array;
  width?: number;
  name?: string;
  className?: string;
}
  • Component type
interface IPropsColumn {
  id: string;
  type: GridType.Component;
  width?: number;
  name?: string;
  className?: string;
  isSorting?: boolean;
  callback?: (columnId: string, orderType: OrderType) => void; // callback by sorting
}

OrderType

enum OrderType {
  Default,
  ASC,
  DESC,
}

Options

interface IPropsOptions {
  scalable?: boolean | IPropsScalableOption;
  fixedSize?: number;
  scroll?: IPropsScrollOption;
}
interface IPropsScalableOption {
  enable: boolean;
  storage?: boolean | IPropsStorageOption;
}
interface IPropsStorageOption {
  enable: boolean;
  target?: "local" | "session";
}
export interface IPropsScrollOption {
  enable: boolean;
  type?: "inner" | "outer";
  height?: number;
}

Example

String type and Sorting

import React, { useState } from "react";
import Grid, { GridType, IPropsColumn, RowType } from "@tenqube/react-grid";
// import style what you want
import "@tenqube/react-grid/dist/esm/index.css";
import "@tenqube/react-grid/dist/cjs/index.css";

const StringTypeComponent = () => {
  const ascRows = [["aaa"], ["bbb"], ["ccc"]];
  const descRows = [["ccc"], ["bbb"], ["aaa"]];

  const [rows, setRows] = useState<Array<Array<RowType>>>(ascRows);

  const handleSorting = (columnId: string, orderType: OrderType) => {
    setRows(orderType === OrderType.ASC ? ascRows : descRows);
  };

  const columns: Array<IPropsColumn> = [
    {
      id: "string",
      name: "Text",
      type: GridType.String,
      isSorting: true,
      callback: handleSorting,
    },
  ];

  return <Grid id={"string"} columns={columns} rows={rows} />;
};

export default StringTypeComponent;

Toggle type

import React, { useState } from "react";
import Grid, { GridType, IPropsColumn, RowType } from "@tenqube/react-grid";
// import style what you want
import "@tenqube/react-grid/dist/esm/index.css";
import "@tenqube/react-grid/dist/cjs/index.css";

const ToggleTypeComponent = () => {
  const [rows, setRows] = useState<Array<Array<RowType>>>([[true], [false]]);

  const handleToggle = (rowIdx: number, columnIdx: number) => {
    const cloneRows = rows.map((row) => [...row]);
    cloneRows[rowIdx][columnIdx] = !cloneRows[rowIdx][columnIdx];
    setRows(cloneRows);
  };

  const columns: Array<IPropsColumn> = [
    {
      id: "toggle",
      name: "Toggle",
      type: GridType.Toggle,
      callback: handleToggle,
    },
  ];

  return <Grid id={"toggle"} columns={columns} rows={rows} />;
};

export default ToggleTypeComponent;

License

MIT