DEV formatting corrections to last edit

pull/428/head
Colin Marks 6 years ago
parent d6b5dc1729
commit 1cb1d80874

@ -9,7 +9,7 @@
* @file dataTables.deepLink.js * @file dataTables.deepLink.js
* @author SpryMedia Ltd (www.sprymedia.co.uk) * @author SpryMedia Ltd (www.sprymedia.co.uk)
* @copyright Copyright 2017 SpryMedia Ltd. * @copyright Copyright 2017 SpryMedia Ltd.
* *
* License MIT - http://datatables.net/license/mit * License MIT - http://datatables.net/license/mit
* *
* This feature plug-in for DataTables provides a function which will * This feature plug-in for DataTables provides a function which will
@ -18,18 +18,18 @@
* allows deep linking to be easily implemented with DataTables - for * allows deep linking to be easily implemented with DataTables - for
* example a URL might be `myTable?displayStart=10` which will * example a URL might be `myTable?displayStart=10` which will
* automatically cause the second page of the DataTable to be displayed. * automatically cause the second page of the DataTable to be displayed.
* *
* This plug-in works on a whitelist basis - you must specify which * This plug-in works on a whitelist basis - you must specify which
* [initialisation parameters](//datatables.net/reference/option) you * [initialisation parameters](//datatables.net/reference/option) you
* want the URL search string to specify. Any parameter given in the * want the URL search string to specify. Any parameter given in the
* URL which is not listed will be ignored (e.g. you are unlikely to * URL which is not listed will be ignored (e.g. you are unlikely to
* want to let the URL search string specify the `ajax` option). * want to let the URL search string specify the `ajax` option).
* *
* This specification is done by passing an array of property names * This specification is done by passing an array of property names
* to the `$.fn.dataTable.ext.deepLink` function. If you do which to * to the `$.fn.dataTable.ext.deepLink` function. If you do which to
* allow _every_ parameter (I wouldn't recommend it) you can use `all` * allow _every_ parameter (I wouldn't recommend it) you can use `all`
* instead of an array. * instead of an array.
* *
* @example * @example
* // Allow a display start point and search string to be specified * // Allow a display start point and search string to be specified
* $('#myTable').DataTable( * $('#myTable').DataTable(
@ -47,48 +47,42 @@
* ); * );
*/ */
(function(window, document, $, undefined) { (function(window, document, $, undefined) {
// Use DataTables' object builder so strings can be used to represent
// nested objects
var setBuilder = $.fn.dataTable.ext.internal._fnSetObjectDataFn;
// Use DataTables' object builder so strings can be used to represent $.fn.dataTable.ext.deepLink = function(whitelist) {
// nested objects var search = location.search.replace(/^\?/, '').split('&');
var setBuilder = $.fn.dataTable.ext.internal._fnSetObjectDataFn; var out = {};
$.fn.dataTable.ext.deepLink = function(whitelist) {
var search = location.search.replace(/^\?/, '').split('&');
var out = {};
for (var i = 0, ien = search.length; i < ien; i++) { for (var i = 0, ien = search.length; i < ien; i++) {
var pair = search[i].split('='); var pair = search[i].split('=');
var key = decodeURIComponent(pair[0]); var key = decodeURIComponent(pair[0]);
var value = decodeURIComponent(pair[1]); var value = decodeURIComponent(pair[1]);
console.log("key: " + key); console.log('key: ' + key);
console.log("value: " + value); console.log('value: ' + value);
// "Casting" // "Casting"
if (value === 'true') { if (value === 'true') {
value = true; value = true;
} } else if (value === 'false') {
else if (value === 'false') { value = false;
value = false; } else if (!value.match(/[^\d]/) && key !== 'search.search') {
} // don't convert if searching or it'll break the search
else if (!value.match(/[^\d]/) && key !== 'search.search') { value = value * 1;
// don't convert if searching or it'll break the search } else if (value.indexOf('{') === 0 || value.indexOf('[') === 0) {
value = value * 1; // Try to JSON parse for arrays and obejcts
} try {
else if (value.indexOf('{') === 0 || value.indexOf('[') === 0) { value = $.parseJSON(value);
// Try to JSON parse for arrays and obejcts } catch (e) {}
try {
value = $.parseJSON( value );
} }
catch(e){}
}
if (whitelist === 'all' || $.inArray(key, whitelist) !== -1) { if (whitelist === 'all' || $.inArray(key, whitelist) !== -1) {
var setter = setBuilder(key); var setter = setBuilder(key);
setter(out, value); setter(out, value);
}
} }
}
return out;
};
return out;
};
})(window, document, jQuery); })(window, document, jQuery);

Loading…
Cancel
Save