You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Plugins/sorting/natural-time-delta.js

101 lines
3.0 KiB
JavaScript

/*! © SpryMedia Ltd, Shodhan Save - datatables.net/license */
(function( factory ){
if ( typeof define === 'function' && define.amd ) {
// AMD
define( ['jquery', 'datatables.net'], function ( $ ) {
return factory( $, window, document );
} );
}
else if ( typeof exports === 'object' ) {
// CommonJS
var jq = require('jquery');
var cjsRequires = function (root, $) {
if ( ! $.fn.dataTable ) {
require('datatables.net')(root, $);
}
};
if (typeof window === 'undefined') {
module.exports = function (root, $) {
if ( ! root ) {
// CommonJS environments without a window global must pass a
// root. This will give an error otherwise
root = window;
}
if ( ! $ ) {
$ = jq( root );
}
cjsRequires( root, $ );
return factory( $, root, root.document );
};
}
else {
cjsRequires( window, jq );
module.exports = factory( jq, window, window.document );
}
}
else {
// Browser
factory( jQuery, window, document );
}
}(function( $, window, document ) {
'use strict';
var DataTable = $.fn.dataTable;
/**
* This plug-in allows sorting of human readable time delta, viz.,
* "1 week", "2 weeks 3 days", "4 weeks 5 days 6 hours", etc.
*
* Currently this plugin supports time range from microseconds to decades.
*
* The plugin also takes care of singular and plural values like week(s)
*
* @name Natural Time Delta
* @summary Sort human readable time delta
* @author Shodhan Save
*
* @example
* $("#example").DataTable({
* columnDefs: [
* { "type": "natural-time-delta", "targets": 2 }
* ]
* });
*/
DataTable.ext.type.order['natural-time-delta-pre'] = function (data) {
var result = 0;
var pattern = /(\d+\s*decades?\s*)?(\d+\s*years?\s*)?(\d+\s*months?\s*)?(\d+\s*weeks?\s*)?(\d+\s*days?\s*)?(\d+\s*hours?\s*)?(\d+\s*minutes?\s*)?(\d+\s*seconds?\s*)?(\d+\s*milliseconds?\s*)?(\d+\s*microseconds?\s*)?/i;
var format_time_element = function (el, splitter, mul) {
if (el === undefined) {
return 0;
}
return parseFloat(el.split(splitter)[0].trim()) * mul;
};
var matches = data.match(pattern);
matches.reverse();
var time_elements = [
{ splitter: 'us', name: 'microsecond', mul: 1 / 1000 / 1000 },
{ splitter: 'ms', name: 'millisecond', mul: 1 / 1000 },
{ splitter: 's', name: 'second', mul: 1 },
{ splitter: 'm', name: 'minute', mul: 1 * 60 },
{ splitter: 'h', name: 'hour', mul: 1 * 60 * 60 },
{ splitter: 'd', name: 'day', mul: 1 * 60 * 60 * 24 },
{ splitter: 'w', name: 'week', mul: 1 * 60 * 60 * 24 * 7 },
{ splitter: 'w', name: 'month', mul: 1 * 60 * 60 * 24 * 7 * 30 },
{ splitter: 'w', name: 'year', mul: 1 * 60 * 60 * 24 * 7 * 30 * 12 },
{ splitter: 'w', name: 'decade', mul: 1 * 60 * 60 * 24 * 7 * 30 * 12 * 10 },
];
time_elements.forEach(function (el, i) {
var val = format_time_element(matches[i], el['splitter'], el['mul']);
result += val;
});
return result || -1;
};
return DataTable;
}));