refactor(ChatRequestMessage): use StatusQ components

This commit is contained in:
Pascal Precht 2021-10-18 13:03:21 +02:00 committed by Iuri Matias
parent 04523a0e85
commit cf1fc38304
1 changed files with 8 additions and 4 deletions

View File

@ -1,9 +1,11 @@
import QtQuick 2.13
import utils 1.0
import "../../../../shared"
import StatusQ.Core 0.1
import StatusQ.Controls 0.1
import "../../../../shared/panels"
import "../../../../shared/status"
Item {
width: parent.width
@ -19,7 +21,7 @@ Item {
anchors.horizontalCenter: parent.horizontalCenter
}
StyledText {
StatusBaseText {
id: contactText1
//% "You need to be mutual contacts with this person for them to receive your messages"
text: qsTrId("you-need-to-be-mutual-contacts-with-this-person-for-them-to-receive-your-messages")
@ -33,9 +35,10 @@ Item {
anchors.topMargin: Style.current.padding
anchors.horizontalCenter: parent.horizontalCenter
width: parent.width / 1.3
color: Theme.palette.directColor1
}
StyledText {
StatusBaseText {
id: contactText2
visible: !isContact
//% "Just click this button to add them as contact. They will receive a notification. Once they accept the request, you'll be able to chat"
@ -46,6 +49,7 @@ Item {
anchors.topMargin: 2
anchors.horizontalCenter: parent.horizontalCenter
width: parent.width / 1.3
color: Theme.palette.directColor1
}
StatusButton {