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/time-elapsed-dhms.js

78 lines
2.0 KiB
JavaScript

/*! © SpryMedia Ltd, caochenghua - 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
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 ( ! $ ) {
$ = typeof window !== 'undefined' ? // jQuery's factory checks for a global window
require('jquery') :
require('jquery')( root );
}
if ( ! $.fn.dataTable ) {
require('datatables.net')(root, $);
}
return factory( $, root, root.document );
};
}
else {
// Browser
factory( jQuery, window, document );
}
}(function( $, window, document, undefined ) {
'use strict';
var DataTable = $.fn.dataTable;
/**
* When dealing with time elapsed, it is common to append a post fix
* such as d(day), h(hour), m(minute) or s(second) to a string in order to easily denote the brief duration
* of the time span from now. This plug-in allows sorting to take these
* indicates of size into account.
*
* A counterpart type detection plug-in is also available.
*
* @name Time span
* @summary Sort abbreviated time span correctly (2d 3h, 2h 8m, 3m 8s, 30s, etc)
* @author [Allan Jardine](//datatables.net), caochenghua
*
* @example
* $('#example').DataTable( {
* columnDefs: [
* { type: 'time-elapsed-dhms', targets: 0 }
* ]
* } );
*/
DataTable.ext.order['time-elapsed-dhms-pre'] = function (data) {
var matches = data.match(/^(\d+(?:\.\d+)?)\s*([a-z]+)/i);
var multipliers = {
s: 1,
m: 60,
h: 3600,
d: 86400,
};
if (matches) {
var multiplier = multipliers[matches[2].toLowerCase()];
return parseFloat(matches[1]) * multiplier;
}
return -1;
};
return DataTable;
}));