datatables.net-plugins
Version:
Various small plug-ins for DataTables including feature, ordering, search and internationalisation plug-ins.
57 lines (51 loc) • 1.66 kB
JavaScript
/*! © SpryMedia Ltd, Alireza Mohammadi Doost - datatables.net/license */
import jQuery from 'jquery';
import DataTable from 'datatables.net';
// Allow reassignment of the $ variable
let $ = jQuery;
/**
* Convert numbers to farsi, english, arabic.
* تبدیل عداد به فارسی, انگلیسی, عربی
*
* @name convertTo
* @summary convert numbers to farsi, english, arabic.
* @author Alireza Mohammadi Doost
*
* @example
* $('#example').DataTable( {
* columnDefs: [ {
* targets: 2,
* render: DataTable.render.numberTo('fa')
* } ]
* } );
*/
DataTable.render.numberTo = function (to = 'fa') {
let result = null;
const faNumbers = ['۰', '۱', '۲', '۳', '۴', '۵', '۶', '۷', '۸', '۹'];
const enNumbers = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9'];
const arNumbers = ['۰', '١', '٢', '٣', '٤', '٥', '٦', '٧', '٨', '٩'];
return function (d, type, row) {
if (type !== 'display') {
return d;
}
if (!d && to === 'fa') {
return 'مقدار ورودی صحیح نمیباشد.';
}
else if (!d) {
return 'numbers is empty.';
}
switch (to) {
case 'fa':
result = d.toString().replace(/\d/g, x => faNumbers[x]);
break;
case 'en':
result = d.toString().replace(/\d/g, x => enNumbers[x]);
break;
case 'ar':
result = d.toString().replace(/\d/g, x => arNumbers[x]);
break;
}
return result;
};
};
export default DataTable;