summaryrefslogtreecommitdiff
path: root/qml/pages
diff options
context:
space:
mode:
authorMarvin Borner2020-04-10 17:44:23 +0200
committerMarvin Borner2020-04-10 17:44:23 +0200
commit17927de45e769d4dbac5b1547464b2618150cfb4 (patch)
tree610a5e82ebecd8289343b6247f78f7d0378f9211 /qml/pages
parent71e4befa76e91721df2baeab99fff1b4987b0cdb (diff)
Implemented login page
Diffstat (limited to 'qml/pages')
-rw-r--r--qml/pages/Board.qml24
-rw-r--r--qml/pages/Login.qml45
2 files changed, 69 insertions, 0 deletions
diff --git a/qml/pages/Board.qml b/qml/pages/Board.qml
index 4bb5d9c..35e2e5e 100644
--- a/qml/pages/Board.qml
+++ b/qml/pages/Board.qml
@@ -1,5 +1,6 @@
import QtQuick 2.0
import Sailfish.Silica 1.0
+import org.nemomobile.configuration 1.0
import ".."
Page {
@@ -14,6 +15,17 @@ Page {
anchors.fill: parent
contentHeight: column.height
+ PullDownMenu {
+ MenuItem {
+ text: qsTr("Login")
+ onClicked: {
+ access_token.value = "";
+ refresh_token.value = "";
+ pageStack.push(Qt.resolvedUrl("Login.qml"))
+ }
+ }
+ }
+
Column {
id: column
@@ -44,4 +56,16 @@ Page {
}
}
}
+
+ ConfigurationValue {
+ id: access_token
+ key: "/com/sailchess/access_token"
+ defaultValue: ""
+ }
+
+ ConfigurationValue {
+ id: refresh_token
+ key: "/com/sailchess/refresh_token"
+ defaultValue: ""
+ }
}
diff --git a/qml/pages/Login.qml b/qml/pages/Login.qml
new file mode 100644
index 0000000..2f57e39
--- /dev/null
+++ b/qml/pages/Login.qml
@@ -0,0 +1,45 @@
+import QtQuick 2.2
+import Sailfish.Silica 1.0
+import QtWebKit 3.0
+import org.nemomobile.configuration 1.0
+
+Page {
+ SilicaWebView {
+ property real device_ratio: Math.round(1.5 * Theme.pixelRatio * 10) / 10.0
+
+ id: login
+ anchors.fill: parent
+ experimental.preferences.javascriptEnabled: false
+ experimental.userStyleSheets: [Qt.resolvedUrl("qrc:///css/external.css")]
+ experimental.customLayoutWidth: parent.width / device_ratio
+ url: "https://marvinborner.de/lichess/"
+
+ onNavigationRequested: {
+ if (request.url.toString().lastIndexOf("https://marvinborner.de/lichess/callback", 0) === 0) {
+ request.action = WebView.IgnoreRequest;
+
+ var xhr = new XMLHttpRequest();
+ xhr.open("GET", request.url, false);
+ xhr.send();
+ if (xhr.status === 200) {
+ const data = JSON.parse(xhr.responseText);
+ access_token.value = data["access_token"];
+ refresh_token.value = data["refresh_token"];
+ pageStack.push(Qt.resolvedUrl("Board.qml"))
+ }
+ }
+ }
+
+ ConfigurationValue {
+ id: access_token
+ key: "/com/sailchess/access_token"
+ defaultValue: ""
+ }
+
+ ConfigurationValue {
+ id: refresh_token
+ key: "/com/sailchess/refresh_token"
+ defaultValue: ""
+ }
+ }
+}