blob: bf39d7e008693b604c8bfb54c8ba0ded31967375 (
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
|
import QtQuick 2.12
import QtQuick.Controls 2.12
import QtQuick.Layouts 1.12
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
})
}
}
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.replace("qrc:/qml/ChatlistPage.qml", {context: context, eventEmitter: eventEmitter})
} else {
pageStack.replace("qrc:/qml/ConfigurePage.qml", {context: context, eventEmitter: eventEmitter})
}
pageStack.layers.pop()
}
}
Button {
text: "Delete"
onClicked: {
dcAccounts.removeAccount(model.number)
accountsModel.remove(model.index)
}
}
}
}
Menu {
id: contextMenu
MenuItem { text: "Import account" }
}
}
|