blob: 48c98b57839987f821a992b35254341188d46b4c (
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
|
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()
let context = dcAccounts.getAccount(accountId);
let title;
if (context.isConfigured()) {
title = context.getConfig("addr");
} else {
title = `Unconfigured ${accountId}`
}
accountsModel.insert(accountsModel.count, {
number: accountId,
title: title
})
}
}
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++) {
let accountId = accountsList[i];
let title;
let context = dcAccounts.getAccount(accountId);
if (context.isConfigured()) {
title = context.getConfig("addr");
} else {
title = `Unconfigured ${accountId}`
}
accountsModel.insert(i, {
number: accountId,
title: title
})
}
}
Component.onCompleted: {
updateAccounts()
}
ListView {
id: accountsListView
anchors.fill: parent
model: accountsModel
delegate: RowLayout {
width: accountsListView.width
Label {
Layout.fillWidth: true
text: model.title
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
Button {
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 {
text: "Delete"
onClicked: {
dcAccounts.removeAccount(model.number)
accountsModel.remove(model.index)
}
}
}
}
Menu {
id: contextMenu
MenuItem { text: "Import account" }
}
}
|