aboutsummaryrefslogtreecommitdiffstats
path: root/cmd/mist/assets/qml/views/catalog.qml
blob: 497d69ed111464f446c1839261e9936a3e8b06eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
import QtQuick 2.0
import QtQuick.Controls 1.0;
import QtQuick.Controls.Styles 1.0
import QtQuick.Layouts 1.0;
import QtWebEngine 1.0
//import QtWebEngine.experimental 1.0
import QtQuick.Window 2.0;


Rectangle {
    id: window
    anchors.fill: parent
    color: "#00000000"

    property var title: "Catalog"
    property var iconSource: ""
    property var menuItem
    property var hideUrl: true

    property alias url: webview.url
    property alias windowTitle: webview.title
    property alias webView: webview



    property var cleanPath: false
    property var open: function(url) {
        if(!window.cleanPath) {
            var uri = url;
            if(!/.*\:\/\/.*/.test(uri)) {
                uri = "http://" + uri;
            }

            var reg = /(^https?\:\/\/(?:www\.)?)([a-zA-Z0-9_\-]*\.eth)(.*)/

            if(reg.test(uri)) {
                uri.replace(reg, function(match, pre, domain, path) {
                    uri = pre;

                    var lookup = eth.lookupDomain(domain.substring(0, domain.length - 4));
                    var ip = [];
                    for(var i = 0, l = lookup.length; i < l; i++) {
                        ip.push(lookup.charCodeAt(i))
                    }

                    if(ip.length != 0) {
                        uri += lookup;
                    } else {
                        uri += domain;
                    }

                    uri += path;
                });
            }

            window.cleanPath = true;

            webview.url = uri;

            //uriNav.text = uri.text.replace(/(^https?\:\/\/(?:www\.)?)([a-zA-Z0-9_\-]*\.\w{2,3})(.*)/, "$1$2<span style='color:#CCC'>$3</span>");
            uriNav.text = uri;

        } else {
            // Prevent inf loop.
            window.cleanPath = false;
        }
    }

    Component.onCompleted: {
    }

    Item {
        objectName: "root"
        id: root
        anchors.fill: parent
        state: "inspectorShown"

        WebEngineView {
            objectName: "webView"
            id: webview
            anchors.fill: parent

            property var protocol: "http://"
            //property var domain: "localhost:3000"
            property var domain: "ethereum-dapp-catalog.meteor.com"
            url: protocol + domain

            //experimental.settings.javascriptCanAccessClipboard: true


            onJavaScriptConsoleMessage: {
                console.log(sourceID + ":" + lineNumber + ":" + JSON.stringify(message));
            }

            onNavigationRequested: { 
                // this checks if the domain of the requested link is the same as the catalog's
                // If it is, it opens on the same window, if it's not it opens a new tab

                var cleanTitle = request.url.toString()
                var matches = cleanTitle.match(/^[a-z]*\:\/\/([^\/?#]+)(?:[\/?#]|$)/i);
                var requestedDomain = matches && matches[1];

              
                if(request.navigationType==0){

                    if (requestedDomain === this.domain){
                        request.action = WebEngineView.AcceptRequest;
                    } else {
                        request.action = WebEngineView.IgnoreRequest;
                        newBrowserTab(request.url);
                    }
                    
                }
            }
            // onLoadingChanged: {
            //  if (loadRequest.status == WebEngineView.LoadSucceededStatus) {
   //                  webview.runJavaScript(eth.readFile("mist.js"));
            //  }
            // }
        }






        WebEngineView {
            id: inspector
            visible: false
            z:10
            anchors {
                left: root.left
                right: root.right
                top: root.top
                bottom: root.bottom
            }

        }

        states: [
            State {
                name: "inspectorShown"
                PropertyChanges {
                    target: inspector
                }
            }
        ]
    }
}