0.2.0 • Published 11 months ago

use-table-drag-select v0.2.0

Weekly downloads
-
License
MIT
Repository
github
Last release
11 months ago

use-table-drag-select

2

React hook to select table by drag

  • Super simple
  • useful in implementing a timetable

Installation

npm i use-table-drag-select
yarn add use-table-drag-select

Usage

All you have to do is add a ref

  1. With initial table values
export function Table() {
  const [ref, value] = useTableDragSelect([
    [false, false, false, false, false, false, false],
    [false, false, false, false, false, false, false],
    [false, false, false, false, false, false, false],
    [false, false, false, false, false, false, false],
    [false, false, false, false, false, false, false],
    [false, false, false, false, false, false, false],
  ]);

  return (
    <table ref={ref} className="timetable">
      <thead>
        <tr>
          <th></th>
          <th>Mon</th>
          <th>Tue</th>
          <th>Wed</th>
          <th>Thu</th>
          <th>Fri</th>
          <th>Sat</th>
          <th>Sun</th>
        </tr>
      </thead>
      <tbody>
        {value.map((row, rowIndex) => (
          <tr key={rowIndex}>
            <th>{rowIndex + 1}</th>
            {row.map((_, columnIndex) => (
              <td key={columnIndex} />
            ))}
          </tr>
        ))}
      </tbody>
    </table>
  );
});

You can use a iterable value on render()

  1. With complete table DOM
export function Table() {
  const [ref, value] = useTableDragSelect();

  return (
    <table ref={ref} className="timetable">
      <thead>
        <tr>
          <th></th>
          <th>Mon</th>
          <th>Tue</th>
          <th>Wed</th>
          <th>Thu</th>
          <th>Fri</th>
          <th>Sat</th>
          <th>Sun</th>
        </tr>
      </thead>
      <tbody>
        <tr>
          <th>1</th>
          <td />
          <td />
          <td />
          <td />
          <td />
          <td />
          <td />
        </tr>
        <tr>
          <th>2</th>
          <td />
          <td />
          <td />
          <td />
          <td />
          <td />
          <td />
        </tr>
        ...
      </tbody>
    </table>
  );
});

You should not put anything in useTableDragSelect

Demo

A minimal demo page can be found in demo directory.

Online demo is also available.

0.2.0

11 months ago

0.1.12

12 months ago

0.1.1

12 months ago

0.1.0

12 months ago