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

savvycom-dynamic-filter

v0.1.6

Published

```sh

Downloads

10

Readme

Installation


// with npm

npm i savvycom-dynamic-filter

// with yarn

yarn add savvycom-dynamic-filter

Usage

Here is a quick example to get you started, it's all you need:

Yes, it's really all you need to get started as you can see in the interactive demo:

Demo

Components

| Name | Description | | --------------------- | --------------------------- | | DynamicTable | Table data | useDynamicTable | This is a hook for dynamic table

API

Dynamic Table

| Name | Type | Require | Default | Description | | --------------------- | --------------------------- | --------- | ---------- | ----------------- | | columns | refer to column config | Yes | - |column names of table | data | Array< object > | Yes | - | The data of table that will be show | pagination | object or false | Yes | - | Config of pagination. You can ref table pagination config, hide it by setting it to false | stateQuery | StateQueryInterface | Yes | - | state of filters | setStateQuery | Function | Yes | - | This is a function that used set stateQuery | filters | FilterPayloadInterface[] | if showFilter = true, it's required, else not required | - | This is a array that contains user-selected filters | setFilters | Function | if showFilter = true, it's required, else not required | - | This is a function that used set filters | showFilter | boolean | if showFilter = true, it's required, else not required | true | Enable filter | properties | PropertyInterface[] | if showFilter = true, it's required, else not required | - | This is column names | metrics | MetricInterface[] | if showFilter = true, it's required, else not required | This is conditios of the filter. | loading | boolean | No | - | Loading status of table | size | small or middle or large | No | middle | Size of table | rowSelection | object | No | - | Row selection config | id | string | No | - | The id of table element | className | string | No | - | The class name of table element | components | TableComponents | No | - | Override default table elements | expandable | exapndable | No | - | Config expandable content | rowClassName | function(record, index): string | No | - | Row's className | rowKey | string or function(record): string | No | - | Row's unique key, could be a string or function that returns a string | onRow | function(record, index) | No | - | Set props on per row | onChange | function(pagination, filters, sorter, extra: { currentDataSource: [], action: paginate or sort or filter }) | No | - | Callback executed when pagination, filters or sorter is changed

useDynamicTable Hook

| Name | Type | Require | Description | | --------------------- | --------------------------- | ---------- | ----------------- | | headerUrl | string | Yes | this is url path that used to get header data | dataTableUrl | string | Yes | this is url path that used to get table data | baseURL | string | Yes | this is base url that used to merge with headerUrl and dataTableUrl | customColumns | refer to column config | No | It will custom columns which defined in DynamicTable component

This hook will export under data:

| Name | Type | Description | | --------------------- | --------------------------- | ----------------- | | records | Array | This is a table data that get from dataTableUrl | columns | Array | This is a header data that get from headerUrl | pagination | object or false | Config of pagination. You can ref table pagination config, hide it by setting it to false | properties | PropertyInterface[] | This is column names | metrics | MetricInterface[] | This is conditios of the filter | filters | FilterPayloadInterface[] | This is a array that contains user-selected filters | setFilters | function | This is a function that used set filters | stateQuery | StateQueryInterface | state of filters | setStateQuery | function | This is a function that used set stateQuery | isLoading | boolean | Loading status of table | queries | object | This is value of stateQuery when converted to string | handleChange | function | Callback executed when pagination, filters or sorter is changed

Note

Please define response of api headerUrl is HeaderResponse and dataTableUrl is TableDataResponse

Interface


// FilterInterface

FilterInterface {
  field: string;
  value: string;
  operator: string;
  logic: 'AND' | 'OR'
}

// FilterPayloadInterface

FilterPayloadInterface extends FilterInterface {
  labelField: string;
  labelOperator: string;
}

// SortInterface

SortInterface {
  field: string;
  orderBy: 'asc' | 'desc'
}

// StateQueryInterface

StateQueryInterface {
  pagination?: {
    limit: number;
    page: number;
  },
  filters?: FilterInterface[],
  sorts?: SortInterface[]
}

// PropertyInterface

PropertyInterface {
  label: string;
  value: string;
}

// MetricInterface

MetricInterface {
  label: string;
  value: string;
}

// HeaderResponse

HeaderResponse {
  meta: {
    code: number;
    status: string;
    message: string;
  };
  data: {
    columns: {
      dataIndex: string;
      type: string;
      name: string;
    }[];
    operators: {
      key: string;
      value: string;
    }[];
    logics: string[]
  }
}

// TableDataResponse

TableDataResponse {
  meta: {
    code: number;
    status: string;
    message: string;
    pagination: {
      page: number;
      limit: number;
      totalPage: number;
      hasPreviousPage: boolean;
      hasNextPage: boolean;
    }
  };
  data: []
}

License

This project is licensed under the terms of the

MIT license.