2022-01-19 22:33:29 +00:00
|
|
|
import QtQuick 2.12
|
|
|
|
import QtQuick.Controls 2.12
|
|
|
|
import QtQuick.Layouts 1.12
|
|
|
|
|
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
import StatusQ.Components 0.1
|
|
|
|
import StatusQ.Core 0.1
|
|
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
|
|
|
|
Page {
|
|
|
|
id: root
|
|
|
|
anchors.fill: parent
|
|
|
|
anchors.margins: 16
|
|
|
|
property ListModel contactsModel: null
|
|
|
|
background: null
|
|
|
|
|
|
|
|
header: RowLayout {
|
|
|
|
id: headerRow
|
|
|
|
width: parent.width
|
|
|
|
height: tagSelector.height
|
|
|
|
anchors.right: parent.right
|
|
|
|
anchors.rightMargin: 8
|
|
|
|
|
|
|
|
StatusTagSelector {
|
|
|
|
id: tagSelector
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.alignment: Qt.AlignVCenter | Qt.AlignLeft
|
|
|
|
Layout.leftMargin: 17
|
2022-03-24 22:03:36 +00:00
|
|
|
maxHeight: root.height
|
2022-01-19 22:33:29 +00:00
|
|
|
toLabelText: qsTr("To: ")
|
2022-03-24 22:03:36 +00:00
|
|
|
warningText: qsTr("USER LIMIT REACHED")
|
|
|
|
listLabel: qsTr("Contacts")
|
2022-01-19 22:33:29 +00:00
|
|
|
onTextChanged: {
|
2022-03-24 22:03:36 +00:00
|
|
|
sortModel(root.contactsModel);
|
2022-01-19 22:33:29 +00:00
|
|
|
}
|
2022-03-24 22:03:36 +00:00
|
|
|
Component.onCompleted: { sortModel(root.contactsModel); }
|
2022-01-19 22:33:29 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
StatusButton {
|
|
|
|
implicitHeight: 44
|
2022-03-24 22:03:36 +00:00
|
|
|
Layout.alignment: Qt.AlignTop
|
2022-01-19 22:33:29 +00:00
|
|
|
enabled: (tagSelector.namesModel.count > 0)
|
|
|
|
text: "Confirm"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
contentItem: Item {
|
|
|
|
anchors.fill: parent
|
2022-03-24 22:03:36 +00:00
|
|
|
anchors.topMargin: 68
|
2022-01-19 22:33:29 +00:00
|
|
|
|
|
|
|
StatusBaseText {
|
|
|
|
visible: (contactsModel.count === 0)
|
|
|
|
anchors.centerIn: parent
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
verticalAlignment: Text.AlignVCenter
|
|
|
|
font.pixelSize: 15
|
|
|
|
color: Theme.palette.baseColor1
|
|
|
|
text: qsTr("You can only send direct messages to your Contacts. \n\n
|
|
|
|
Send a contact request to the person you would like to chat with, you will be\n able to
|
|
|
|
chat with them once they have accepted your contact request.")
|
|
|
|
Component.onCompleted: {
|
|
|
|
if (visible) {
|
|
|
|
tagSelector.enabled = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|