summaryrefslogtreecommitdiff
path: root/gui/main.qml
diff options
context:
space:
mode:
authorkali kaneko (leap communications) <kali@leap.se>2021-09-27 19:31:51 +0200
committerkali kaneko (leap communications) <kali@leap.se>2021-10-06 18:38:22 +0200
commit45a5f7f5a431f17d0fabb5fd08229936e4390598 (patch)
tree6a3c1818b64d606675688edf1522017ed2a84188 /gui/main.qml
parent05730b9acb708bb311b7116ecc60d5e0c90e2ceb (diff)
[ui] pseudo-load based on distance
Diffstat (limited to 'gui/main.qml')
-rw-r--r--gui/main.qml49
1 files changed, 25 insertions, 24 deletions
diff --git a/gui/main.qml b/gui/main.qml
index d8bfb91..0024670 100644
--- a/gui/main.qml
+++ b/gui/main.qml
@@ -2,21 +2,11 @@
/*
TODO (ui rewrite)
- - [x] add systray
- - [x] systray status
- - [x] splash screen
- - [x] splash delay/transitions
- - [x] font: monserrat
- - [x] nested states
- - [x] splash init errors
- - [x] gateway selector
- - [ ] bridges
+ See https://0xacab.org/leap/bitmask-vpn/-/issues/523
+ - [x] udp support
- [ ] minimize/hide from systray
- [ ] control actions from systray
- [ ] add gateway to systray
- - [ ] donation dialog
- - [ ] parse ctx flags (need dialog, etc)
- - [ ] udp support
*/
import QtQuick 2.0
import QtQuick.Controls 2.4
@@ -42,7 +32,6 @@ ApplicationWindow {
minimumHeight: appHeight
maximumHeight: appHeight
-
title: ctx ? ctx.appName : "VPN"
Material.accent: Material.Green
@@ -56,6 +45,7 @@ ApplicationWindow {
// TODO get from persistance
property var selectedGateway: "auto"
+ // FIXME get svg icons
property var icons: {
"off": "qrc:/assets/icon/png/white/vpn_off.png",
"on": "qrc:/assets/icon/png/white/vpn_on.png",
@@ -90,7 +80,6 @@ ApplicationWindow {
id: systray
}
-
Connections {
target: jsonModel
function onDataChanged() {
@@ -100,7 +89,8 @@ ApplicationWindow {
}
ctx = JSON.parse(j)
if (ctx != undefined) {
- locationsModel = Object.keys(ctx.locations)
+ locationsModel = getSortedLocations()
+ console.debug("Got sorted locations:" + locationsModel)
}
if (ctx.errors) {
console.debug("errors, setting root.error")
@@ -109,10 +99,10 @@ ApplicationWindow {
root.error = ""
}
if (ctx.donateURL) {
- isDonationService = true;
+ isDonationService = true
}
if (ctx.donateDialog == 'true') {
- showDonationReminder = true;
+ showDonationReminder = true
}
// TODO check donation
@@ -122,15 +112,9 @@ ApplicationWindow {
// // move this to onClick of "close" for widget
// backend.donateSeen();
//}
- // TODO refactor donate widget into main view (with close window!)
- //if (ctx.status == "on") {
- // gwNextConnectionText.visible = false
- // gwReconnectText.visible = false
- // when: vpn.status == "on"
- //}
/*
- TODO libraries need login
+ TODO libraries need login
if (ctx.loginDialog == 'true') {
login.visible = true
}
@@ -141,6 +125,23 @@ ApplicationWindow {
}
}
+ function getSortedLocations() {
+ let obj = ctx.locations
+ var arr = []
+ for (var prop in obj) {
+ if (obj.hasOwnProperty(prop)) {
+ arr.push({
+ "key": prop,
+ "value": obj[prop]
+ })
+ }
+ }
+ arr.sort(function (a, b) {
+ return a.value - b.value
+ }).reverse()
+ return Array.from(arr, (k,_) => k.key);
+ }
+
onSceneGraphError: function (error, msg) {
console.debug("ERROR while initializing scene")
console.debug(msg)