Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/evoluteur/structured-filter
jQuery UI widget for structured queries like "Contacts where Firstname starts with A and Birthday before 1/1/2000 and State in (CA, NY, FL)"...
https://github.com/evoluteur/structured-filter
evolutility faceted-search filter filter-plugin filtering filterlist jquery-plugin jquery-ui metadata metadata-driven query-builder querybuilder search-interface searchbar searchview structured-data ui ui-component whereclause widget
Last synced: 2 days ago
JSON representation
jQuery UI widget for structured queries like "Contacts where Firstname starts with A and Birthday before 1/1/2000 and State in (CA, NY, FL)"...
- Host: GitHub
- URL: https://github.com/evoluteur/structured-filter
- Owner: evoluteur
- License: mit
- Created: 2012-09-02T08:02:32.000Z (about 12 years ago)
- Default Branch: main
- Last Pushed: 2024-03-17T08:49:49.000Z (8 months ago)
- Last Synced: 2024-10-27T10:09:22.180Z (12 days ago)
- Topics: evolutility, faceted-search, filter, filter-plugin, filtering, filterlist, jquery-plugin, jquery-ui, metadata, metadata-driven, query-builder, querybuilder, search-interface, searchbar, searchview, structured-data, ui, ui-component, whereclause, widget
- Language: JavaScript
- Homepage: http://evoluteur.github.io/structured-filter/
- Size: 450 KB
- Stars: 258
- Watchers: 18
- Forks: 61
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE.md
Awesome Lists containing this project
- jimsghstars - evoluteur/structured-filter - jQuery UI widget for structured queries like "Contacts where Firstname starts with A and Birthday before 1/1/2000 and State in (CA, NY, FL)"... (JavaScript)
README
# Structured-Filter · [![GitHub license](https://img.shields.io/github/license/evoluteur/structured-filter)](https://github.com/evoluteur/structured-filter/blob/master/LICENSE.md) [![npm version](https://img.shields.io/npm/v/structured-filter)](https://www.npmjs.com/package/structured-filter)
Structured-Filter is a generic Web UI for building structured search or filter queries.
With it you can build structured search conditions like
Firstname starts with 'A' and Birthday after 1/1/1980 and State in (CA, NY, FL)... It is a full jQuery UI widget, supporting various configurations and themes.![Structured-Filter screenshot](https://raw.github.com/evoluteur/structured-filter/master/screenshots/structured-filter.gif)
Check the **[demo](http://evoluteur.github.io/structured-filter/index.html)** for live examples.
### Table of Contents
1. [Installation](#Installation)
2. [Usage](#Usage)
3. [Model](#Model)
4. [Options](#Options)
5. [Methods](#Methods)
6. [Events](#Events)
7. [Theming](#Theming)
8. [License](#License)You can [download](https://github.com/evoluteur/structured-filter/archive/master.zip) or fork structured-filter on [GitHub](https://github.com/evoluteur/structured-filter).
```bash
# To get the latest stable version, use git from the command line.
git clone https://github.com/evoluteur/structured-filter
```or install the [npm package](https://www.npmjs.com/package/structured-filter):
```bash
# To get the latest stable version, use npm from the command line.
npm install structured-filter
```or install with **Bower**:
```bash
# To get the latest stable version, use Bower from the command line.
bower install structured-filter# To get the most recent, latest committed-to-master version use:
bower install structured-filter#master
```Notes:
- If you use a version of jQuery-UI smaller than 1.12.1, you must use Structured-Filter version 1.1.0.
- For React, use [Structured-Filter-React](https://github.com/evoluteur/structured-filter-react).First, load [jQuery](https://jquery.com/), [jQuery UI](https://jqueryui.com/), and the plugin:
```html
```
The widget requires a jQuery UI theme to be present, as well as its own included base CSS file ([structured-filter.css](http://github.com/evoluteur/structured-filter/raw/master/css/structured-filter.css)). Here we use the "base" theme as an example:
```html
```
Now, let's attach it to an existing `
` tag:```html
$(document).ready(function() {
$("#myFilter").structFilter({
fields: [
{id:"lastname", type:"text", label:"Lastname"},
{id:"firstname", type:"text", label:"Firstname"},
{id:"active", type:"boolean", label:"Is active"},
{id:"age", type:"number", label:"Age"},
{id:"bday", type:"date", label:"Birthday"},
{id:"category", type:"list", label:"Category",
list:[
{id:"1", label:"Family"},
{id:"2", label:"Friends"},
{id:"3", label:"Business"},
{id:"4", label:"Acquaintances"},
{id:"5", label:"Other"}
]
}
]
});
});
```This will change the `
` into the widget.The widget is configured with a list of fields to use in the search conditions.
### Fields
Each field must have an ID, a type, and a label.
- id - unique identifier for the field.
- label - displayed field name.
- type - data type. Possible types of field: text, number, boolean, date, time, list.Fields of type "list" must also have a "list" property for the values (array of objects with id and label).
Example:
```javascript
fields = [
{id:"lastname", type:"text", label:"Lastname"},
{id:"firstname", type:"text", label:"Firstname"},
{id:"active", type:"boolean", label:"Is active"},
{id:"age", type:"number", label:"Age"},
{id:"bday", type:"date", label:"Birthday"},
{id:"category", type:"list", label:"Category",
list:[
{id:"1", label:"Family"},
{id:"2", label:"Friends"},
...
]
}
];
```Note: To change the behavior of a "list" field, use the type "list-options" and "list-dropdown" instead of "list".
### Conditions
Queries are expressed as a set of conditions.
Each condition is defined by:
- a field
- an operator
- one or several valuesFor each field the possible operators are determined by it's type.
### ![boolean](https://raw.github.com/evoluteur/structured-filter/master/screenshots/ft-bool.gif) boolean
- Yes (1)
- No (0)![Boolean field screenshot](https://raw.github.com/evoluteur/structured-filter/master/screenshots/sf-cond-bool.gif)
### ![date](https://raw.github.com/evoluteur/structured-filter/master/screenshots/ft-date.gif) date
- on (eq)
- not on (ne)
- after (gt)
- before (lt)
- between (bw)
- not between (nbw)
- is empty (null)
- is not empty (nn)![Date field screenshot](https://raw.github.com/evoluteur/structured-filter/master/screenshots/sf-cond-date.gif)
### ![list](https://raw.github.com/evoluteur/structured-filter/master/screenshots/ft-list.gif) list
- any of (in)
- equal (eq)![List field screenshot](https://raw.github.com/evoluteur/structured-filter/master/screenshots/sf-cond-list.gif)
### ![number](https://raw.github.com/evoluteur/structured-filter/master/screenshots/ft-int.gif) number
- = (eq)
- != (ne)
- > (gt)
- < (lt)
- is empty (null)
- is not empty (nn)![Number field screenshot](https://raw.github.com/evoluteur/structured-filter/master/screenshots/sf-cond-number.gif)
### ![text](https://raw.github.com/evoluteur/structured-filter/master/screenshots/ft-txt.gif) text
- equals (eq)
- not equal (ne)
- starts with (sw)
- contains (ct)
- doesn't contain (nct)
- finishes with (fw)
- is empty (null)
- is not empty (nn)![Text field screenshot](https://raw.github.com/evoluteur/structured-filter/master/screenshots/sf-cond-text.gif)
### ![time](https://raw.github.com/evoluteur/structured-filter/master/screenshots/ft-time.gif) time
- at (eq)
- not at (ne)
- after (gt)
- before (lt)
- between (bw)
- not between (nbw)
- is empty (null)
- is not empty (nn)structured-filter provides several options to customize its behaviour:
### buttonLabels (Boolean)
The labels of buttons used to manipulate filters. This options applies to the 3 buttons, "New filter", "Add filter"/"Update filter" and "Cancel" which use icons if the option is set to false.
```javascript
$("#myFilter").structFilter({
buttonLabels: true
});
```Defaults to *false*.
### dateFormat (String)
The format for parsed and displayed dates. This attribute is one of the regionalisation attributes.
Common formats are: Default - "mm/dd/yy", ISO 8601 - "yy-mm-dd", Short - "d M, y", Medium - "d MM, y", Full - "DD, d MM, yy". For a full list of the possible formats see the [jQuery formatDate function](http://docs.jquery.com/UI/Datepicker/formatDate).```javascript
$("#myFilter").structFilter({
dateFormat: "d M, y"
});
```Defaults to *"mm/dd/yy"*.
### disableOperators (Boolean)
This option disables operators from conditions. This changes the structure of conditions from "field-operator-value" to "field-value" which simplifies the backend implementation of filtering.
```javascript
$("#myFilter").structFilter({
disableOperators: true
});
```Defaults to *"false"*.
### fields (Array of Fields)
The list of fields (as an array of objects with id, label and type) to participate in the query definition.
Possible types are: text, boolean, number, date, time, and list.```javascript
$("#myFilter").structFilter({
fields: [
{id:"lastname", type:"text", label:"Lastname"},
{id:"firstname", type:"text", label:"Firstname"},
{id:"active", type:"boolean", label:"Is active"},
{id:"age", type:"number", label:"Age"},
{id:"bday", type:"date", label:"Birthday"},
{id:"category", type:"list", label:"Category",
list:[
{id:"1", label:"Family"},
{id:"2", label:"Friends"},
{id:"3", label:"Business"},
{id:"4", label:"Acquaintances"},
{id:"5", label:"Other"}
]
}
]
});
```Defaults to *[ ]*.
### highlight (Boolean)
A highlight animation performed on the last added or modified filter.
```javascript
$("#myFilter").structFilter({
highlight: false
});
```Defaults to *true*.
### submitButton (Boolean)
Shows or hides the "Submit" button.
```javascript
$("#myFilter").structFilter({
submitButton: true
});
```Defaults to *false*.
### submitReady (Boolean)
Provides hidden fields with the conditions' values to be submitted with the form (as an alternative to an AJAX call).
```javascript
$("#myFilter").structFilter({
submitReady: true
});
```Defaults to *false*.
### addCondition(data)
Adds a new filter condition.```javascript
$("#myFilter").structFilter("addCondition", {
field:{
label: "Lastname",
value: "lastname"
},
operator:{
label: "starts with",
value: "sw"
},
value:{
label: "\"a\"",
value: "a"
}
});
```### clear()
Removes all search filters.```javascript
$("#myFilter").structFilter("clear");
```### length()
Gets the number of filters.```javascript
$("#myFilter").structFilter("length");
```### removeCondition(index)
Removes the condition of the specified index.```javascript
$("#myFilter").structFilter("removeCondition", 0);
```### val([data])
Gets or sets the filter definition (as an array of filters).```javascript
$("#myFilter").structFilter("val");$("#myFilter").structFilter("val", data);
```Sample value:
```javascript
[
{
field:{
label: "Lastname",
value: "Lastname"
},
operator:{
label: "starts with",
value: "sw"
},
value:{
label: "\"jo\"",
value: "jo"
}
}
]
```### valText()
Gets the filter definition (as a readable text string).```javascript
$("#myFilter").structFilter("valText");
```Sample value:
Lastname starts with "jo"
### valUrl()
Gets the filter definition (as a URL string).```javascript
$("#myFilter").structFilter("valUrl");
```Sample value:
filters=1&field-0=Lastname&operator-0=sw&value-0=jo&label=Lastname%20starts%20with%20%22jo%22%0A
### change.search
This event is triggered when the list of search conditions is modified.
```javascript
$("#myFilter").on("change.search", function(event){
// do something
});
```### submit.search
This event is triggered when the submit button is clicked.
```javascript
$("#myFilter").on("submit.search", function(event){
// do something
});
```structured-filter is as easily themeable as any jQuery UI widget, using one of the [jQuery UI themes](http://jqueryui.com/themeroller/#themeGallery) or your own custom theme made with [Themeroller](http://jqueryui.com/themeroller/).
![screenshot themes](https://raw.github.com/evoluteur/structured-filter/master/screenshots/themes.gif)
CSS for themes can be accessed from Google Hosted Libraries.
Dark theme ("ui-darkness"):
```html
```
A version of structured-filter for [Bootstrap](http://getbootstrap.com/) and [Backbone.js](http://backbonejs.org/) is available as part of [Evolutility-UI-jQuery](http://evoluteur.github.io/evolutility-ui-jquery/index.html)
set of [generic views](http://evoluteur.github.io/evolutility-ui-jquery/doc/views.html) for CRUD (Create, Read, Update, Delete) and more.A re-write for React in under construction at [Structured-Filter-React](https://github.com/evoluteur/structured-filter-react).
Check out my other jQuery UI wdget [ColorPicker](https://evoluteur.github.io/colorpicker/).
Structured-Filter is released under the [MIT license](https://github.com/evoluteur/structured-filter/blob/master/LICENSE.md#structured-filter).
Copyright (c) 2024 [Olivier Giulieri](https://evoluteur.github.io/).