aboutsummaryrefslogtreecommitdiff
path: root/qml/main.qml
blob: e095f5804c3e6b9c4557aac2392ed3e9ef2d7ae0 (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
import QtQuick 2.12
import QtQuick.Controls 2.12 as Controls
import org.kde.kirigami 2.12 as Kirigami

import DeltaChat 1.0


Kirigami.ApplicationWindow {
    id: root

    property DcAccountsEventEmitter eventEmitter

    title: qsTr("Delta Chat")

    Component {id: accountsPage; AccountsPage {}}

    pageStack.initialPage: Kirigami.Page {}

    globalDrawer: Kirigami.GlobalDrawer {
        header: Controls.Switch {
            text: "Work offline"
            onCheckedChanged: {
                if (checked) {
                    dcAccounts.stopIo()
                } else {
                    dcAccounts.startIo()
                }
            }
        }

        actions: [
            Kirigami.Action {
                text: "Maybe network"
                iconName: "view-refresh"
                onTriggered: dcAccounts.maybeNetwork()
            },
            Kirigami.Action {
                text: "Switch account"
                iconName: "system-switch-user"
                onTriggered: {
                    while (pageStack.layers.depth > 1) {
                        pageStack.layers.pop()
                    }
                    pageStack.layers.push(accountsPage)
                }
            }
        ]
    }

    contextDrawer: Kirigami.ContextDrawer {
        id: contextDrawer
    }

    DcAccounts {
        id: dcAccounts
    }

    Component.onCompleted: {
        console.log('starting')
        eventEmitter = dcAccounts.getEventEmitter()
        eventEmitter.start();

        // Create an account if there is none.
        if (dcAccounts.getSelectedAccount() == null) {
            console.log("Adding first account");
            dcAccounts.addAccount();
        }

        // Open selected account if there is one.
        let selectedAccount = dcAccounts.getSelectedAccount();
        if (selectedAccount) {
            if (selectedAccount.isConfigured()) {
                pageStack.replace("qrc:/qml/ChatlistPage.qml", {context: selectedAccount, eventEmitter: eventEmitter})
            } else {
                pageStack.replace("qrc:/qml/ConfigurePage.qml", {context: selectedAccount, eventEmitter: eventEmitter})
            }
        }

        dcAccounts.startIo()
    }

    onClosing: {
        // Cancel all tasks that may block the termination of event loop.
        dcAccounts.stopIo()
    }
}