From c3bd01eb26454c38583523ef8bf97fb0086d304f Mon Sep 17 00:00:00 2001
From: Akira Ohgaki <akiraohgaki@gmail.com>
Date: Thu, 13 Oct 2016 08:59:05 +0900
Subject: [PATCH] Dialogs

---
 src/qml/main.qml | 59 +++++++++++++++++++++++++++++++++++++++++++++++-
 1 file changed, 58 insertions(+), 1 deletion(-)

diff --git a/src/qml/main.qml b/src/qml/main.qml
index c08f33d..1ce2b87 100644
--- a/src/qml/main.qml
+++ b/src/qml/main.qml
@@ -1,9 +1,66 @@
 import QtQuick 2.0
 import QtQuick.Controls 1.1
+import QtQuick.Dialogs 1.1
 
 ApplicationWindow {
+    id: root
+    title: Qt.application.name
 
-    Component.onCompleted: {
+    MessageDialog {
+        id: confirmDialog
+        title: root.title
+        text: ''
+        icon: StandardIcon.Question
+        standardButtons: StandardButton.Ok | StandardButton.Cancel
+        onAccepted: xdgUrlHandler.process()
+        onRejected: Qt.quit()
+    }
+
+    MessageDialog {
+        id: infoDialog
+        title: root.title
+        text: ''
+        icon: StandardIcon.Information
+        onAccepted: Qt.quit()
+    }
+
+    MessageDialog {
+        id: errorDialog
+        title: root.title
+        text: ''
+        icon: StandardIcon.Warning
+        onAccepted: Qt.quit()
     }
 
+    Component.onCompleted: {
+        xdgUrlHandler.finished.connect(function(result) {
+            result = JSON.parse(result);
+            var messages = {
+                'download_success': 'Download finished',
+                'install_success': 'Installation finished',
+                'validation_error': 'Invalid XDG-URL',
+                'network_error': 'Download failed',
+                'filetype_error': 'Incorrect file type',
+                'save_error': 'Saving file failed',
+                'install_error': 'Installation failed'
+            };
+            if (result.success) {
+                infoDialog.text = messages[result.success];
+                infoDialog.open();
+            }
+            else if (result.error) {
+                errorDialog.text = messages[result.error];
+                errorDialog.open();
+            }
+        });
+
+        if (xdgUrlHandler.isValid()) {
+            confirmDialog.text = 'Do you want to continue?';
+            confirmDialog.open();
+        }
+        else {
+            errorDialog.text = 'Invalid XDG-URL';
+            errorDialog.open();
+        }
+    }
 }
-- 
GitLab