Browse Source

Add helper function to convert to fixed-point string

adaptive-webui-19844
Chocobo1 5 years ago
parent
commit
19b8a52e44
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C
  1. 12
      src/webui/www/private/scripts/dynamicTable.js
  2. 6
      src/webui/www/private/scripts/misc.js

12
src/webui/www/private/scripts/dynamicTable.js

@ -1092,13 +1092,9 @@ const TorrentsTable = new Class({ @@ -1092,13 +1092,9 @@ const TorrentsTable = new Class({
// ratio
this.columns['ratio'].updateTd = function(td, row) {
const ratio = this.getRowValue(row);
let html = null;
if (ratio == -1)
html = '∞';
else
html = (Math.floor(100 * ratio) / 100).toFixed(2); //Don't round up
td.set('html', html);
td.set('title', html);
const string = (ratio === -1) ? '∞' : toFixedPointString(ratio, 2);
td.set('html', string);
td.set('title', string);
};
// tags
@ -1184,7 +1180,7 @@ const TorrentsTable = new Class({ @@ -1184,7 +1180,7 @@ const TorrentsTable = new Class({
// availability
this.columns['availability'].updateTd = function(td, row) {
const value = (Math.floor(1000 * this.getRowValue(row)) / 1000).toFixed(3); // Don't round up
const value = toFixedPointString(this.getRowValue(row), 3);
td.set('html', value);
td.set('title', value);
};

6
src/webui/www/private/scripts/misc.js

@ -161,3 +161,9 @@ function safeTrim(value) { @@ -161,3 +161,9 @@ function safeTrim(value) {
throw e;
}
}
function toFixedPointString(number, digits) {
// Do not round up number
const power = Math.pow(10, digits);
return (Math.floor(power * number) / power).toFixed(digits);
}

Loading…
Cancel
Save