Skip to content
Snippets Groups Projects
Commit 78b47415 authored by akiraohgaki's avatar akiraohgaki
Browse files

Add utility script

parent b9e470af
No related branches found
No related tags found
No related merge requests found
<RCC> <RCC>
<qresource prefix="/"> <qresource prefix="/">
<file>qml/main.qml</file> <file>qml/main.qml</file>
<file>qml/scripts/Utility.js</file>
</qresource> </qresource>
</RCC> </RCC>
...@@ -3,6 +3,8 @@ import QtQuick.Window 2.0 ...@@ -3,6 +3,8 @@ import QtQuick.Window 2.0
import QtQuick.Controls 1.2 import QtQuick.Controls 1.2
import QtQuick.Dialogs 1.2 import QtQuick.Dialogs 1.2
import 'scripts/Utility.js' as Utility
Window { Window {
id: root id: root
title: Qt.application.name title: Qt.application.name
...@@ -132,8 +134,8 @@ Window { ...@@ -132,8 +134,8 @@ Window {
progressDialog.primaryLabel.text = 'Downloading... '; progressDialog.primaryLabel.text = 'Downloading... ';
progressDialog.informativeLabel.text = metadata.filename; progressDialog.informativeLabel.text = metadata.filename;
progressDialog.progressBar.value = received / total; progressDialog.progressBar.value = received / total;
progressDialog.progressLabel.text = convertByteToHumanReadable(received) progressDialog.progressLabel.text = Utility.convertByteToHumanReadable(received)
+ ' / ' + convertByteToHumanReadable(total) + ' / ' + Utility.convertByteToHumanReadable(total)
}); });
if (xdgUrlHandler.isValid()) { if (xdgUrlHandler.isValid()) {
...@@ -150,46 +152,4 @@ Window { ...@@ -150,46 +152,4 @@ Window {
errorDialog.open(); errorDialog.open();
} }
} }
function convertByteToHumanReadable(bytes) {
bytes = parseFloat(bytes);
var kb = 1024;
var mb = 1024 * kb;
var gb = 1024 * mb;
var tb = 1024 * gb;
var pb = 1024 * tb;
var eb = 1024 * pb;
var zb = 1024 * eb;
var yb = 1024 * zb;
var text = '';
if (bytes < kb) {
text = bytes.toFixed(0) + ' B';
}
else if (bytes < mb) {
text = (bytes / kb).toFixed(2) + ' KB';
}
else if (bytes < gb) {
text = (bytes / mb).toFixed(2) + ' MB';
}
else if (bytes < tb) {
text = (bytes / gb).toFixed(2) + ' GB';
}
else if (bytes < pb) {
text = (bytes / tb).toFixed(2) + ' TB';
}
else if (bytes < eb) {
text = (bytes / pb).toFixed(2) + ' PB';
}
else if (bytes < zb) {
text = (bytes / eb).toFixed(2) + ' EB';
}
else if (bytes < yb) {
text = (bytes / zb).toFixed(2) + ' ZB';
}
else if (bytes >= yb) {
text = (bytes / yb).toFixed(2) + ' YB';
}
return text;
}
} }
.pragma library
function convertByteToHumanReadable(bytes) {
bytes = parseFloat(bytes);
var kb = 1024;
var mb = 1024 * kb;
var gb = 1024 * mb;
var tb = 1024 * gb;
var pb = 1024 * tb;
var eb = 1024 * pb;
var zb = 1024 * eb;
var yb = 1024 * zb;
var text = '';
if (bytes < kb) {
text = bytes.toFixed(0) + ' B';
}
else if (bytes < mb) {
text = (bytes / kb).toFixed(2) + ' KB';
}
else if (bytes < gb) {
text = (bytes / mb).toFixed(2) + ' MB';
}
else if (bytes < tb) {
text = (bytes / gb).toFixed(2) + ' GB';
}
else if (bytes < pb) {
text = (bytes / tb).toFixed(2) + ' TB';
}
else if (bytes < eb) {
text = (bytes / pb).toFixed(2) + ' PB';
}
else if (bytes < zb) {
text = (bytes / eb).toFixed(2) + ' EB';
}
else if (bytes < yb) {
text = (bytes / zb).toFixed(2) + ' ZB';
}
else if (bytes >= yb) {
text = (bytes / yb).toFixed(2) + ' YB';
}
return text;
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment