New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

blb-table

Package Overview
Dependencies
Maintainers
1
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blb-table

An empty base template for publishing a React TS package to npmjs library.

1.0.12
Source
npm
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

BlackLightBurn Table

BlackLightBurn table component

Installation

npm install --save blb-table

Import styles and use react-query

Install bootstrap

npm install --save bootstrap

and import styles in app.js and use QueryClientProvider.

import 'blb-table/dist/variables.css';
import 'bootstrap/dist/css/bootstrap.min.css';

export default function App({ Component, pageProps }: any) {
	return <Component {...pageProps} />;
}

Usage

// index.tsx

import { Table, QueryParams, ColumnDef } from 'blb-table';

export default function Home() {
    const [data, setData] = useState(() => initialData)
    const [queryParams, setQueryParams] = useState<QueryParams>({
        limit: 3,
        sort: [{
          id: 'title',
          desc: false,
        }],
    });

	const columns: ColumnDef<DataProps>[] = [
		{
			accessorKey: 'title',
			header: () => <span>Name</span>,
			cell: (info) => info.getValue(),
			enableSorting: false,
		},
		{
			accessorKey: 'subscribers',
			header: () => <span>Subscribers</span>,
			cell: (info) => info.getValue(),
			enableSorting: true,
		},
		{
			accessorKey: 'views',
			header: () => <span>Views</span>,
			cell: (info) => info.getValue(),
			enableSorting: true,
		},
	];

	return (
		<Table
			data={data}
			columns={columns}
			isLoading={false}
			onChange={setQueryParams}
			initialState={queryParams}
			template={['50%', '30%', '20%']}
			components={{
                EmptyData: ({ isLoading, isEmpty }) => (
                  <EmptyData isLoading={isLoading} isEmpty={isEmpty} />
                ),
                Pagination: ({ pageCount, pageIndex, setPageIndex }) => (
                  <Pagination
                    pageCount={pageCount}
                    onChange={({ selected }) => {
                      setQueryParams((prev) => ({ ...prev, skip: queryParams.limit * selected }));
                      setPageIndex({ selected });
                    }}
                  />
                ),
                Search: ({ resetPagination, openFilters }) => (
                  <Search
                    onChange={(value) => {
                      setQueryParams((prev) => ({
                        ...prev,
                        search: value,
                        skip: 0,
                      }));
                      resetPagination();
                    }}
                    openFilters={openFilters}
                  />
                ),
                Filters: ({ resetPagination }) => (
                  <FilterForm
                    onSubmit={(data) => {
                      setQueryParams((prev) => ({
                        ...prev,
                        filter: {
                          ...prev.filter,
                          ...data,
                        },
                        skip: 0,
                      }));
                      resetPagination();
                    }}
                  />
                ),
          }}
		/>
	)
}
// Example FilterForm.tsx

export const FilterForm = ({ onSubmit: _onSubmit }) => {
  const onSubmit = (data) => {
    let _data = {};
    let viewsFrom;
    let viewsTo;
    if (data.target.name === 'viewsFrom') {
      viewsFrom = data.target.value;
    }
    if (data.target.name === 'viewsTo') {
      viewsTo = data.target.value;
    }
    _data = {
      views: [viewsFrom ? Number(viewsFrom) : null, viewsTo ? Number(viewsTo) : null],
    };

    if (_onSubmit) _onSubmit(_data);
  };
  return (
    <form onChange={onSubmit}>
      <input name="viewsFrom"  />
      <input name="viewsTo" />
    </form>
  );
};
// Example Search.tsx

import { useState } from "react";

interface SearchProps {
  onChange: (value: string) => void;
  openFilters: () => void;
}

export const Search = ({ onChange, openFilters }: SearchProps) => {
  const [searchValue, setSearchValue] = useState('');
  return (
    <>
    <input
      value={searchValue}
      onChange={(e) => {
        setSearchValue(e.target.value);
        onChange(e.target.value);
      }}
    />
    <button type="button" onClick={openFilters}>open filters</button>
    </>
  )
}
// Example Pagination.tsx

interface PaginationProps {
  pageCount: number;
  onChange: ({ selected }: { selected: number }) => void;
}

export const Pagination = ({ pageCount, onChange }: PaginationProps) => {
  return (
    <>
      {Array.from({ length: pageCount }, (_, index) => 0 + index).map((item) => (
        <button type="button" key={item} onClick={() => onChange({ selected: item })}>{item + 1}</button>
      ))}
    </>
  );
};
// Example EmptyData.tsx

interface EmptyDataProps {
  isLoading: boolean;
  isEmpty: boolean;
}

export const EmptyData = ({ isLoading, isEmpty }: EmptyDataProps) => {
  if (isLoading) {
    return 'Loading...'
  }
  return 'Empty';
};

API

  • data: { data: Array<object>; count: number; }

    Count is a total count of elements

  • isLoading: boolean
  • onChange: Dispatch<SetStateAction<QueryParams>>
  • initialState: { limit: number; sort?: QueryParams['sort']}

    Limit for pagination page size and for number of elements to display and default sort state

  • columns: any[]
  • search?: string
  • template?: string[]

    Defines the width of each column (in %). For example ['50%', '30%', '20%']

  • components?: { components API }

    For your custom components

Components API

  • Pagination?: (props: { pageCount: number; pageIndex: number; setPageIndex: ({ selected }: { selected: number }) => void; }) => React.ReactElement;

    pageCount - total page count

    pageIndex - current index of page

    setPageIndex - function for set the page number

  • EmptyData?: (props: { isLoading: boolean; isEmpty: boolean }) => React.ReactElement;

  • Search?: (props: { resetPagination: () => void; openFilters: () => void; }) => React.ReactElement;

    resetPagination - for reset pagination on first page

    openFilter - open/close filters

  • Filters?: (props: { resetPagination: () => void }) => React.ReactElement;

Contributing

This project is open for improvements and maintenance. Feel free to fork and make your own modifications.

License

MIT

Keywords

react

FAQs

Package last updated on 04 Dec 2023

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