tablesorter/js/widgets/widget-filter-type-insideRange.js

43 lines
1.5 KiB
JavaScript
Raw Normal View History

2015-12-13 22:24:42 +00:00
/*! Widget: filter, insideRange filter type - updated 12/10/2015 (v2.25.0) */
;(function($){
'use strict';
// Add insideRange filter type
// ============================
// This allows you to enter a number (e.g. 8) and show the
// resulting rows that will have that query within it's range
// demo at http://mottie.github.io/tablesorter/docs/example-widget-filter-custom-search2.html
var ts = $.tablesorter,
isDigit = /\d+/,
range = /\s+-\s+/,
parseNumber = function(num) {
return isNaN(num) ? num : parseFloat(num);
};
ts.filter.types.insideRange = function( c, data ) {
// don't look for an inside range if "any" match is enabled... multiple "-" really screw things up
if ( !data.anyMatch && isDigit.test( data.iFilter ) && range.test( data.iExact ) ) {
var t, val, low, high,
index = data.index,
cell = data.$cells[ index ],
parts = data.iExact.split( range ),
format = c.parsers[data.index] && c.parsers[data.index].format;
// the cell does not contain a range or the parser isn't defined
if ( parts && parts.length < 2 || typeof format !== 'function' ) {
return null;
}
// format each side part of the range using the assigned parser
low = parseNumber( format( parts[0], c.table, cell, index ) );
high = parseNumber( format( parts[1], c.table, cell, index ) );
val = parseNumber( format( data.iFilter, c.table, cell, index ) );
if ( high < low ) {
// swap high & low
t = high; high = low; low = t;
}
return low <= val && val <= high;
}
return null;
};
})(jQuery);