From 540680b267cb67d5128fbf9fc2666bdf864a0801 Mon Sep 17 00:00:00 2001 From: Tom Clegg Date: Thu, 30 Oct 2014 13:43:34 -0400 Subject: [PATCH] 4088: Add usage docs to filterable.js --- .../app/assets/javascripts/filterable.js | 51 +++++++++++++++++++ 1 file changed, 51 insertions(+) diff --git a/apps/workbench/app/assets/javascripts/filterable.js b/apps/workbench/app/assets/javascripts/filterable.js index d14551cc9a..8ac195383b 100644 --- a/apps/workbench/app/assets/javascripts/filterable.js +++ b/apps/workbench/app/assets/javascripts/filterable.js @@ -1,3 +1,54 @@ +// filterable.js shows/hides content when the user operates +// search/select widgets. For "infinite scroll" content, it passes the +// filters to the server and retrieves new content. For other content, +// it filters the existing DOM elements using jQuery show/hide. +// +// Usage: +// +// 1. Add the "filterable" class to each filterable content item. +// Typically, each item is a 'tr' or a 'div class="row"'. +// +//
+//
First row
+//
Second row
+//
+// +// 2. Add the "filterable-control" class to each search/select widget. +// Also add a data-filterable-target attribute with a jQuery selector +// for an ancestor of the filterable items, i.e., the container in +// which this widget should apply filtering. +// +// +// +// Supported widgets: +// +// +// +// The input value is used as a regular expression. Rows with content +// matching the regular expression are shown. +// +// +// +// When the user selects the "Foo" option, rows with +// data-example-attr="foo" are shown, and all others are hidden. When +// the user selects the "Show all" option, all rows are shown. +// +// Notes: +// +// When multiple filterable-control widgets operate on the same +// data-filterable-target, items must pass _all_ filters in order to +// be shown. +// +// If one data-filterable-target is the parent of another +// data-filterable-target, results are undefined. Don't do this. +// +// Combining "select" filterable-controls with infinite-scroll is not +// yet supported. + $(document). on('paste keyup input', 'input[type=text].filterable-control', function() { var $target = $($(this).attr('data-filterable-target')); -- 2.30.2