2019-02-04 13:45:22 +08:00
|
|
|
/*
|
|
|
|
* Bittorrent Client using Qt and libtorrent.
|
|
|
|
* Copyright (C) 2008 Christophe Dumez <chris@qbittorrent.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*
|
|
|
|
* In addition, as a special exception, the copyright holders give permission to
|
|
|
|
* link this program with the OpenSSL project's "OpenSSL" library (or with
|
|
|
|
* modified versions of it that use the same license as the "OpenSSL" library),
|
|
|
|
* and distribute the linked executables. You must obey the GNU General Public
|
|
|
|
* License in all respects for all of the code used other than "OpenSSL". If you
|
|
|
|
* modify file(s), you may extend this exception to your version of the file(s),
|
|
|
|
* but you are not obligated to do so. If you do not wish to do so, delete this
|
|
|
|
* exception statement from your version.
|
|
|
|
*/
|
|
|
|
|
2024-05-27 22:50:17 +08:00
|
|
|
"use strict";
|
2018-11-30 18:30:26 +08:00
|
|
|
|
2024-07-12 15:00:36 +08:00
|
|
|
window.qBittorrent ??= {};
|
|
|
|
window.qBittorrent.ProgressBar ??= (() => {
|
|
|
|
const exports = () => {
|
2019-08-11 23:53:20 -07:00
|
|
|
return {
|
|
|
|
ProgressBar: ProgressBar
|
2016-12-18 07:34:20 +03:00
|
|
|
};
|
2019-08-11 23:53:20 -07:00
|
|
|
};
|
2009-11-27 15:48:45 +00:00
|
|
|
|
2024-12-24 22:25:18 +08:00
|
|
|
let progressBars = 0;
|
2019-08-11 23:53:20 -07:00
|
|
|
const ProgressBar = new Class({
|
2024-11-01 04:17:41 +08:00
|
|
|
initialize: (value, parameters) => {
|
2019-08-11 23:53:20 -07:00
|
|
|
const vals = {
|
2025-01-18 20:51:47 +08:00
|
|
|
id: `progressbar_${progressBars++}`,
|
2024-12-24 22:25:18 +08:00
|
|
|
value: [value, 0].pick(),
|
|
|
|
width: 0,
|
|
|
|
height: 0,
|
|
|
|
darkbg: "var(--color-background-blue)",
|
|
|
|
darkfg: "var(--color-text-white)",
|
|
|
|
lightbg: "var(--color-background-default)",
|
|
|
|
lightfg: "var(--color-text-default)"
|
2019-08-11 23:53:20 -07:00
|
|
|
};
|
2024-05-27 22:50:17 +08:00
|
|
|
if (parameters && (typeOf(parameters) === "object"))
|
2024-04-21 15:32:36 +08:00
|
|
|
Object.append(vals, parameters);
|
2022-05-18 11:37:05 +08:00
|
|
|
if (vals.height < 12)
|
|
|
|
vals.height = 12;
|
2024-12-14 20:31:44 +01:00
|
|
|
|
|
|
|
const obj = document.createElement("div");
|
|
|
|
obj.id = vals.id;
|
|
|
|
obj.className = "progressbar_wrapper";
|
|
|
|
obj.style.border = "1px solid var(--color-border-default)";
|
|
|
|
obj.style.boxSizing = "content-box";
|
|
|
|
obj.style.width = `${vals.width}px`;
|
|
|
|
obj.style.height = `${vals.height}px`;
|
|
|
|
obj.style.position = "relative";
|
|
|
|
obj.style.margin = "0 auto";
|
2019-08-11 23:53:20 -07:00
|
|
|
obj.vals = vals;
|
2024-04-21 15:32:36 +08:00
|
|
|
obj.vals.value = [value, 0].pick();
|
2024-12-14 20:31:44 +01:00
|
|
|
|
|
|
|
const dark = document.createElement("div");
|
|
|
|
dark.id = `${vals.id}_dark`;
|
|
|
|
dark.className = "progressbar_dark";
|
|
|
|
dark.style.width = `${vals.width}px`;
|
|
|
|
dark.style.height = `${vals.height}px`;
|
|
|
|
dark.style.background = vals.darkbg;
|
|
|
|
dark.style.boxSizing = "content-box";
|
|
|
|
dark.style.color = vals.darkfg;
|
|
|
|
dark.style.position = "absolute";
|
|
|
|
dark.style.textAlign = "center";
|
|
|
|
dark.style.left = "0";
|
|
|
|
dark.style.top = "0";
|
|
|
|
dark.style.lineHeight = `${vals.height}px`;
|
|
|
|
|
|
|
|
obj.vals.dark = dark;
|
|
|
|
|
|
|
|
const light = document.createElement("div");
|
|
|
|
light.id = `${vals.id}_light`;
|
|
|
|
light.className = "progressbar_light";
|
|
|
|
light.style.width = `${vals.width}px`;
|
|
|
|
light.style.height = `${vals.height}px`;
|
|
|
|
light.style.background = vals.lightbg;
|
|
|
|
light.style.boxSizing = "content-box";
|
|
|
|
light.style.color = vals.lightfg;
|
|
|
|
light.style.position = "absolute";
|
|
|
|
light.style.textAlign = "center";
|
|
|
|
light.style.left = "0";
|
|
|
|
light.style.top = "0";
|
|
|
|
light.style.lineHeight = `${vals.height}px`;
|
|
|
|
|
|
|
|
obj.vals.light = light;
|
|
|
|
|
2019-08-11 23:53:20 -07:00
|
|
|
obj.appendChild(obj.vals.dark);
|
|
|
|
obj.appendChild(obj.vals.light);
|
|
|
|
obj.getValue = ProgressBar_getValue;
|
|
|
|
obj.setValue = ProgressBar_setValue;
|
|
|
|
obj.setWidth = ProgressBar_setWidth;
|
2022-05-18 11:37:05 +08:00
|
|
|
if (vals.width)
|
|
|
|
obj.setValue(vals.value);
|
|
|
|
else
|
2024-11-01 04:17:41 +08:00
|
|
|
setTimeout(ProgressBar_checkForParent, 0, obj.id);
|
2019-08-11 23:53:20 -07:00
|
|
|
return obj;
|
|
|
|
}
|
|
|
|
});
|
2009-11-27 15:48:45 +00:00
|
|
|
|
2019-08-11 23:53:20 -07:00
|
|
|
function ProgressBar_getValue() {
|
|
|
|
return this.vals.value;
|
|
|
|
}
|
2014-11-30 14:14:09 +01:00
|
|
|
|
2019-08-11 23:53:20 -07:00
|
|
|
function ProgressBar_setValue(value) {
|
2025-02-17 15:11:55 +08:00
|
|
|
value = Number(value);
|
2025-02-12 15:11:54 +08:00
|
|
|
if (Number.isNaN(value))
|
2022-05-18 11:37:05 +08:00
|
|
|
value = 0;
|
2024-05-11 14:12:29 +08:00
|
|
|
value = Math.min(Math.max(value, 0), 100);
|
2019-08-11 23:53:20 -07:00
|
|
|
this.vals.value = value;
|
2024-05-11 14:12:29 +08:00
|
|
|
|
2025-02-17 15:11:55 +08:00
|
|
|
const displayedValue = `${window.qBittorrent.Misc.toFixedPointString(value, 1)}%`;
|
2024-05-11 14:12:29 +08:00
|
|
|
this.vals.dark.textContent = displayedValue;
|
|
|
|
this.vals.light.textContent = displayedValue;
|
|
|
|
|
2024-11-16 15:41:20 +08:00
|
|
|
const r = Number(this.vals.width * (value / 100));
|
2024-08-09 22:28:23 +08:00
|
|
|
this.vals.dark.style.clipPath = `inset(0 calc(100% - ${r}px) 0 0)`;
|
|
|
|
this.vals.light.style.clipPath = `inset(0 0 0 ${r}px)`;
|
2016-12-18 07:40:46 +03:00
|
|
|
}
|
|
|
|
|
2019-08-11 23:53:20 -07:00
|
|
|
function ProgressBar_setWidth(value) {
|
|
|
|
if (this.vals.width !== value) {
|
|
|
|
this.vals.width = value;
|
2024-08-09 23:00:06 +08:00
|
|
|
this.style.width = `${value}px`;
|
|
|
|
this.vals.dark.style.width = `${value}px`;
|
|
|
|
this.vals.light.style.width = `${value}px`;
|
2019-08-11 23:53:20 -07:00
|
|
|
this.setValue(this.vals.value);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-11-01 04:17:41 +08:00
|
|
|
const ProgressBar_checkForParent = (id) => {
|
2019-08-11 23:53:20 -07:00
|
|
|
const obj = $(id);
|
2022-05-18 11:37:05 +08:00
|
|
|
if (!obj)
|
|
|
|
return;
|
|
|
|
if (!obj.parentNode)
|
2024-11-01 04:17:41 +08:00
|
|
|
return setTimeout(ProgressBar_checkForParent, 100, id);
|
2024-08-09 23:00:06 +08:00
|
|
|
obj.style.width = "100%";
|
2019-08-11 23:53:20 -07:00
|
|
|
const w = obj.offsetWidth;
|
2024-08-09 23:00:06 +08:00
|
|
|
obj.vals.dark.style.width = `${w}px`;
|
|
|
|
obj.vals.light.style.width = `${w}px`;
|
2019-08-11 23:53:20 -07:00
|
|
|
obj.vals.width = w;
|
|
|
|
obj.setValue(obj.vals.value);
|
2024-11-01 04:17:41 +08:00
|
|
|
};
|
2014-11-30 14:14:09 +01:00
|
|
|
|
2019-08-11 23:53:20 -07:00
|
|
|
return exports();
|
|
|
|
})();
|
2021-03-23 18:50:58 +08:00
|
|
|
Object.freeze(window.qBittorrent.ProgressBar);
|