2021-02-08 12:21:23 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
|
|
|
import QtQuick.Layouts 1.13
|
2021-03-31 19:14:09 +00:00
|
|
|
import "../imports"
|
|
|
|
import "./status"
|
|
|
|
// TODO move Contact into shared to get rid of that import
|
|
|
|
import "../app/AppLayouts/Chat/components"
|
|
|
|
import "."
|
2021-02-08 12:21:23 +00:00
|
|
|
|
|
|
|
Item {
|
|
|
|
id: root
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
property string filterText: ""
|
|
|
|
property bool expanded: true
|
2021-03-31 19:14:09 +00:00
|
|
|
property bool showCheckbox: false
|
|
|
|
property var pubKeys: ([])
|
2021-02-08 12:21:23 +00:00
|
|
|
signal contactClicked(var contact)
|
|
|
|
|
|
|
|
function matchesAlias(name, filter) {
|
|
|
|
let parts = name.split(" ")
|
|
|
|
return parts.some(p => p.startsWith(filter))
|
|
|
|
}
|
|
|
|
|
|
|
|
height: Math.min(contactListView.contentHeight, (expanded ? 320 : 192))
|
|
|
|
ScrollView {
|
|
|
|
anchors.fill: parent
|
|
|
|
|
|
|
|
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
|
|
|
|
ScrollBar.vertical.policy: contactListView.contentHeight > contactListView.height ? ScrollBar.AlwaysOn : ScrollBar.AlwaysOff
|
|
|
|
|
|
|
|
ListView {
|
|
|
|
anchors.fill: parent
|
|
|
|
spacing: 0
|
|
|
|
clip: true
|
|
|
|
id: contactListView
|
|
|
|
model: profileModel.contacts.list
|
|
|
|
delegate: Contact {
|
2021-03-31 19:14:09 +00:00
|
|
|
showCheckbox: root.showCheckbox
|
|
|
|
isChecked: root.pubKeys.indexOf(model.pubKey) > -1
|
2021-02-08 12:21:23 +00:00
|
|
|
pubKey: model.pubKey
|
|
|
|
isContact: model.isContact
|
|
|
|
isUser: false
|
|
|
|
name: model.name
|
|
|
|
address: model.address
|
|
|
|
identicon: model.thumbnailImage || model.identicon
|
|
|
|
visible: model.isContact && (root.filterText === "" ||
|
|
|
|
root.matchesAlias(model.name.toLowerCase(), root.filterText.toLowerCase()) ||
|
|
|
|
model.name.toLowerCase().includes(root.filterText.toLowerCase()) ||
|
|
|
|
model.address.toLowerCase().includes(root.filterText.toLowerCase()))
|
|
|
|
onContactClicked: function () {
|
|
|
|
root.contactClicked(model)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|