Skip to content

CarlosBor/itemSorter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Itemsorter

React component to display and filter object arrays

Usage

Install it by running npm install itemsorterr --save. Then to use it:

import { ItemSorter } from 'itemsorter';

Examples

Simple display

Given an object like so:

const mockPlants = [
    { species: "Fiddle Leaf Fig", height: 150, indoor: true, price: 49.99, careLevel: "Moderate" },
    { species: "Snake Plant", height: 80, indoor: true, price: 24.99, careLevel: "Low" },
    { species: "Monstera", height: 120, indoor: true, price: 59.99, careLevel: "Easy" },
    { species: "Peace Lily", height: 90, indoor: true, price: 29.99, careLevel: "Moderate" },
    { species: "Spider Plant", height: 40, indoor: true, price: 14.99, careLevel: "Low" },
    { species: "Aloe Vera", height: 50, indoor: true, price: 19.99, careLevel: "Easy" },
    { species: "Cactus", height: 30, indoor: false, price: 12.99, careLevel: "Low" },
    { species: "Bamboo Palm", height: 180, indoor: true, price: 69.99, careLevel: "Moderate" },
    { species: "Rubber Plant", height: 160, indoor: true, price: 39.99, careLevel: "Moderate" },
    { species: "ZZ Plant", height: 100, indoor: true, price: 34.99, careLevel: "Low" },
    { species: "Golden Pothos", height: 60, indoor: true, price: 15.99, careLevel: "Easy" }
];

The most simple usage is:

<ItemSorter items={mockPlants}/>

Which would load the component with default behavior and css like so:

Default example

Optional Parameters

The component offers a variety of optional parameters:

rangeFields

An array of strings which must be the keys of numerical values, like so:

rangeFields={["price", "height"]}

Makes it so rather than toggles, the filter displays a range selector, like so:

rangeField example

orderFields

An object of key:function pairs that can order the fields of the objects, like so:

  const orderFunction = (a:string, b:string) =>{
    const sizeOrder = ["XS", "S", "M", "L", "XL"];
    if(sizeOrder.indexOf(a) < sizeOrder.indexOf(b)){
      return -1;
    }else if (sizeOrder.indexOf(b) < sizeOrder.indexOf(a)){
      return 1;
    }else{
      return 0;
    }
  }
orderFields={{"size" : orderFunction}}

The values will be sorted in the filter like so:

sorted properties

explicitFields

An array of strings, referring to different attributes of the object

explicitFields = {["size", "price", "brand", "imgUrl"]}

The fields not in the array will be ignored for both the grid and the filter

imageUrl

A string which ought to be a url field in the object, to be shown at the top of the cards in the grid:

imageUrl = "imgUrl"

Will proceed to display as so:

cards with images

textSearch

Boolean, will enable a search field at the top of the filter that triggers on every property of each object:

textSearch = {true}

parseOutput

An object of key:function pairs that will parse every entry of the key name through the function associated for example:

const addEuro = (price:number) =>{
    return price + "€";
}

parseOutput = {{"price" : addEuro}}

Would add a € after the content of every "price" field

cardFunction

A function to be fired on click evvent forr cards in the grid. Takes as argument the item itself:

const cardFunction = (item : any) => {
    console.log(item);
}
cardFunction = {cardFunction}

Would log the contents of the item in the console.

Styling

The component exposes a variety of CSS classes to the developer, which can be easily overriden:

sidebarClassName="sorter-custom-sidebar"
containerClassName="sorter-custom-container"
sectionClassName="sorter-custom-section"
inputClassName="sorter-custom-input"
gridClassName="sorter-custom-grid"
cardClassName="sorter-custom-card"
datapointClassName="sorter-custom-datapoint"
checkboxClassName="sorter-custom-checkbox"
gridThumbnailClassName="sorter-custom-grid-thumbnail"

The presence of any of these will assign that class to the node and override the default css styling for it.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors