blob: 3278031454e0252e3f1e92360081155ccc8a61f7 (
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
|
import QtQuick 2.12
import QtQuick.Controls 2.12
import QtQuick.Layouts 1.12
import QtQuick.Dialogs 1.0
import org.kde.kirigami 2.12 as Kirigami
Kirigami.Page {
id: accountsPage
title: qsTr("Accounts")
mainAction: Kirigami.Action {
iconName: "list-add-user"
text: "Add account"
onTriggered: {
let accountId = dcAccounts.addAccount()
accountsModel.insert(accountsModel.count, { number: accountId })
}
}
contextualActions: [
Kirigami.Action {
text: "Import account"
iconName: "document-import"
onTriggered: importAccountDialog.open()
}
]
FileDialog {
id: importAccountDialog
title: "Import account"
onAccepted: {
var url = importAccountDialog.fileUrl.toString()
if (url.startsWith("file://")) {
var filename = url.substring(7)
console.log("Importing " + filename)
var accountId = dcAccounts.importAccount(filename)
if (accountId == 0) {
console.log("Import failed")
} else {
console.log("Import succeeded")
}
}
}
}
ListModel {
id: accountsModel
}
function updateAccounts() {
let accountsList = dcAccounts.getAll()
accountsModel.clear()
for (let i = 0; i < accountsList.length; i++) {
accountsModel.insert(i, { number: accountsList[i] })
}
}
Component.onCompleted: {
updateAccounts()
}
ListView {
id: accountsListView
anchors.fill: parent
model: accountsModel
delegate: RowLayout {
width: accountsListView.width
Label {
Layout.fillWidth: true
text: model.number
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
Button {
width: 100
text: "Select"
onClicked: {
while (pageStack.depth > 1) {
pageStack.pop()
}
dcAccounts.selectAccount(model.number)
let context = dcAccounts.getSelectedAccount()
if (context.isConfigured()) {
pageStack.push("qrc:/qml/ChatlistPage.qml", {context: context})
} else {
pageStack.push("qrc:/qml/ConfigurePage.qml", {})
}
}
}
Button {
width: 100
text: "Delete"
onClicked: {
dcAccounts.removeAccount(model.number)
accountsModel.remove(model.index)
}
}
}
}
Menu {
id: contextMenu
MenuItem { text: "Import account" }
}
}
|