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.
|
|
|
/*! © SpryMedia Ltd, caochenghua - datatables.net/license */
|
|
|
|
|
|
|
|
import $ from 'jquery';
|
|
|
|
import DataTable from 'datatables.net';
|
|
|
|
|
|
|
|
/**
|
|
|
|
* 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;
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
export default DataTable;
|