React Filter Control
The React component for building the composite filter criteria
Overview
Installation
npm
npm install react-filter-control
yarn
yarn add react-filter-control
Usage
A basic example
;;;; const handleFilterValueChange = { // ...}; const App = { return <FilterControl filterValue=filterValue fields=fields onFilterValueChanged=handleFilterValueChange /> ;}; ReactDOM;
API
FilterControl
Properties
Name | Type | Description |
---|---|---|
fields | Array.<Field> |
The fields settings |
filterValue | FilterValue |
The filterValue settings |
groups | Array.<Group> |
The groups settings |
onFilterValueChanged | event |
The filter value changed handler |
Object
FilterValue : Properties
Name | Type | Description |
---|---|---|
groupName | string |
Group name |
items | Array.<(FilterValueGroup|FilterValueItem)> |
Items in group |
Object
FilterValueGroup : Properties
Name | Type | Description |
---|---|---|
key | key |
Item key |
groupName | string |
Group name |
items | Array.<(FilterValueGroup|FilterValueItem)> |
Items in group |
Object
FilterValueItem : Properties
Name | Type | Description |
---|---|---|
key | key |
Item key |
field | string |
Field |
operator | string |
Operator |
value | any |
Value |
Object
Field : Properties
Name | Type | Description |
---|---|---|
name | string |
Field name |
caption | string |
Field caption |
operators | Array.<Operator> |
Field operators |
Object
Group : Properties
Name | Type | Description |
---|---|---|
name | string |
Group name |
caption | string |
Group caption |
Object
Operator : Properties
Name | Type | Description |
---|---|---|
name | string |
Operator name |
caption | string |
Operator caption |
License
This project is licensed under the terms of the MIT license.