feat: add invite friends modal
This commit is contained in:
parent
ff2ed712f2
commit
b3b7047fe1
|
@ -3,6 +3,7 @@ import QtQuick.Controls 2.13
|
||||||
import QtQuick.Layouts 1.13
|
import QtQuick.Layouts 1.13
|
||||||
import "../../../../shared"
|
import "../../../../shared"
|
||||||
import "../../../../imports"
|
import "../../../../imports"
|
||||||
|
import "../components"
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: element
|
id: element
|
||||||
|
@ -17,7 +18,10 @@ Item {
|
||||||
}
|
}
|
||||||
|
|
||||||
StyledText {
|
StyledText {
|
||||||
text: `<a href="shareKey" style="color:${Style.current.blue};text-decoration:none;">Share your chat key</a> or <a href="invite" style="color:${Style.current.blue};text-decoration:none">invite</a> friends to start messaging in Status`
|
text: `<a href="shareKey" style="color:${Style.current.blue};text-decoration:none;">${qsTr("Share your chat key")}</a>` +
|
||||||
|
` ${qsTr("or")} ` +
|
||||||
|
`<a href="invite" style="color:${Style.current.blue};text-decoration:none">${qsTr("invite")}</a>`+
|
||||||
|
` ${qsTr("friends to start messaging in Status")}`
|
||||||
textFormat: Text.RichText
|
textFormat: Text.RichText
|
||||||
wrapMode: Text.WordWrap
|
wrapMode: Text.WordWrap
|
||||||
horizontalAlignment: Text.AlignHCenter
|
horizontalAlignment: Text.AlignHCenter
|
||||||
|
@ -29,11 +33,15 @@ Item {
|
||||||
onLinkActivated: function (linkClicked) {
|
onLinkActivated: function (linkClicked) {
|
||||||
switch (linkClicked) {
|
switch (linkClicked) {
|
||||||
case "shareKey": console.log('Go to share key'); break;
|
case "shareKey": console.log('Go to share key'); break;
|
||||||
case "invite": console.log('Go to invite'); break;
|
case "invite": inviteFriendsPopup.open(); break;
|
||||||
default: //no idea what was clicked
|
default: //no idea what was clicked
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
InviteFriendsPopup {
|
||||||
|
id: inviteFriendsPopup
|
||||||
|
}
|
||||||
}
|
}
|
||||||
/*##^##
|
/*##^##
|
||||||
Designer {
|
Designer {
|
||||||
|
|
|
@ -84,6 +84,13 @@ Item {
|
||||||
anchors.horizontalCenter: parent.horizontalCenter
|
anchors.horizontalCenter: parent.horizontalCenter
|
||||||
anchors.bottom: parent.bottom
|
anchors.bottom: parent.bottom
|
||||||
anchors.bottomMargin: Style.current.xlPadding
|
anchors.bottomMargin: Style.current.xlPadding
|
||||||
|
onClicked: {
|
||||||
|
inviteFriendsPopup.open()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
InviteFriendsPopup {
|
||||||
|
id: inviteFriendsPopup
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,25 @@
|
||||||
|
import QtQuick 2.12
|
||||||
|
import QtQuick.Controls 2.3
|
||||||
|
import "../../../../imports"
|
||||||
|
import "../../../../shared"
|
||||||
|
|
||||||
|
ModalPopup {
|
||||||
|
id: popup
|
||||||
|
readonly property string getStatusText: qsTr("Get Status at https://status.im")
|
||||||
|
|
||||||
|
title: qsTr("Download Status link")
|
||||||
|
height: 156
|
||||||
|
|
||||||
|
StyledText {
|
||||||
|
id: linkText
|
||||||
|
text: popup.getStatusText
|
||||||
|
}
|
||||||
|
|
||||||
|
CopyToClipBoardButton {
|
||||||
|
anchors.left: linkText.right
|
||||||
|
anchors.leftMargin: Style.current.smallPadding
|
||||||
|
anchors.verticalCenter: linkText.verticalCenter
|
||||||
|
textToCopy: popup.getStatusText
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
|
@ -7,3 +7,4 @@ ChannelIcon 1.0 ChannelIcon.qml
|
||||||
RenameGroupPopup 1.0 RenameGroupPopup.qml
|
RenameGroupPopup 1.0 RenameGroupPopup.qml
|
||||||
GroupChatPopup 1.0 GroupChatPopup.qml
|
GroupChatPopup 1.0 GroupChatPopup.qml
|
||||||
StickersPopup 1.0 StickersPopup.qml
|
StickersPopup 1.0 StickersPopup.qml
|
||||||
|
InviteFriendsPopup 1.0 InviteFriendsPopup.qml
|
||||||
|
|
|
@ -57,6 +57,7 @@ else: unix:!android: target.path = /opt/$${TARGET}/bin
|
||||||
DISTFILES += \
|
DISTFILES += \
|
||||||
app/AppLayouts/Chat/ContactsColumn/ClosedEmptyView.qml \
|
app/AppLayouts/Chat/ContactsColumn/ClosedEmptyView.qml \
|
||||||
app/AppLayouts/Chat/components/EmojiPopup.qml \
|
app/AppLayouts/Chat/components/EmojiPopup.qml \
|
||||||
|
app/AppLayouts/Chat/components/InviteFriendsPopup.qml \
|
||||||
fonts/InterStatus/InterStatus-Black.otf \
|
fonts/InterStatus/InterStatus-Black.otf \
|
||||||
fonts/InterStatus/InterStatus-BlackItalic.otf \
|
fonts/InterStatus/InterStatus-BlackItalic.otf \
|
||||||
fonts/InterStatus/InterStatus-Bold.otf \
|
fonts/InterStatus/InterStatus-Bold.otf \
|
||||||
|
|
|
@ -110,12 +110,14 @@ Popup {
|
||||||
|
|
||||||
Separator {
|
Separator {
|
||||||
id: separator2
|
id: separator2
|
||||||
|
visible: !!footerContent.children[0]
|
||||||
anchors.bottom: parent.bottom
|
anchors.bottom: parent.bottom
|
||||||
anchors.bottomMargin: 75
|
anchors.bottomMargin: 75
|
||||||
}
|
}
|
||||||
|
|
||||||
Item {
|
Item {
|
||||||
id: footerContent
|
id: footerContent
|
||||||
|
visible: !!children[0]
|
||||||
height: children[0] && children[0].height
|
height: children[0] && children[0].height
|
||||||
width: parent.width
|
width: parent.width
|
||||||
anchors.top: separator2.bottom
|
anchors.top: separator2.bottom
|
||||||
|
|
Loading…
Reference in New Issue