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/nepali-numbers.js

57 lines
1.4 KiB
JavaScript

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

/**
* Sorts a column containing nepali numbers. Nepali numbers can easily be
* mapped 1:1 to latin numbers - १ = 1, २ = 2, १२ = 12 and so on.
*
* <https://en.wikipedia.org/wiki/Numbers_in_Nepali_language>
* <http://www.imnepal.com/nepali-numbers>
* <http://stackoverflow.com/q/26856481/1407478>
* <http://jsfiddle.net/ft7f16yt>
*
* @name Nepali numbers
* @summary Sorts columns containing UTF8 nepali numbers
* @author [david konrad](davidkonrad at gmail com)
*
* @example
* $('#example').DataTable( {
* columnDefs: [
* { type: 'nepali-numbers', targets: 0 }
* ]
* } );
*/
jQuery.extend( jQuery.fn.dataTableExt.oSort, {
"nepali-numbers-pre" : function(a) {
function nepaliToLatin(nepali) {
switch(nepali) {
case "": return 0; break;
case "१": return 1; break;
case "२": return 2; break;
case "३": return 3; break;
case "४": return 4; break;
case "५": return 5; break;
case "६": return 6; break;
case "७": return 7; break;
case "८": return 8; break;
case "९": return 9; break;
default : return 0; break;
}
}
var latin = '', i = 0;
for (i; i<a.length; i++) {
latin += nepaliToLatin(a.charAt(i))
}
return parseInt(latin)
},
"nepali-numbers-asc": function(a, b) {
return ((a < b) ? -1 : ((a > b) ? 1 : 0))
},
"nepali-numbers-desc": function(a, b) {
return ((a < b) ? 1 : ((a > b) ? -1 : 0))
}
} );