blob: 1d91a5b477d2f47fbb1318ec1db848e9658ba9f1 (
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
|
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: root
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
});
}
}
title: qsTr("Accounts")
Component.onCompleted: {
updateAccounts();
}
ListModel {
id: accountsModel
}
ListView {
id: accountsListView
anchors.fill: parent
model: accountsModel
currentIndex: -1
delegate: Kirigami.AbstractListItem {
width: accountsListView.width
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();
}
RowLayout {
Label {
Layout.fillWidth: true
text: model.title
horizontalAlignment: Text.AlignHCenter
verticalAlignment: Text.AlignVCenter
}
Button {
icon.name: "delete"
text: "Delete"
onClicked: {
dcAccounts.removeAccount(model.number);
accountsModel.remove(model.index);
}
}
}
}
}
Menu {
id: contextMenu
MenuItem {
text: "Import account"
}
}
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
});
}
}
}
|