status-desktop/ui/app/AppLayouts/Chat/panels/communities/CommunityWelcomeBannerPanel...

114 lines
3.4 KiB
QML
Raw Normal View History

2020-12-11 20:29:46 +00:00
import QtQuick 2.13
import QtQuick.Controls 2.13
import QtGraphicalEffects 1.13
import StatusQ.Core 0.1
import StatusQ.Core.Theme 0.1
import StatusQ.Controls 0.1 as StatusQControls
import shared.panels 1.0
import shared.status 1.0
import utils 1.0
2020-12-11 20:29:46 +00:00
Rectangle {
id: root
height: 220
2020-12-11 20:29:46 +00:00
anchors.left: parent.left
anchors.leftMargin: Style.current.padding
anchors.right: parent.right
anchors.rightMargin: Style.current.padding
border.color: Style.current.border
radius: 16
color: Style.current.transparent
property var activeCommunity
property var store
property var communitySectionModule
property bool hasAddedContacts
2020-12-11 20:29:46 +00:00
MouseArea {
anchors.fill: parent
acceptedButtons: Qt.RightButton
onClicked: {
/* Prevents sending events to the component beneath
if Right Mouse Button is clicked. */
mouse.accepted = false;
}
}
2020-12-11 20:29:46 +00:00
SVGImage {
anchors.top: parent.top
anchors.topMargin: -6
anchors.horizontalCenter: parent.horizontalCenter
source: Style.svg("chatEmptyHeader")
2020-12-11 20:29:46 +00:00
width: 66
height: 50
}
StatusQControls.StatusFlatRoundButton {
2020-12-11 20:29:46 +00:00
id: closeImg
implicitWidth: 32
implicitHeight: 32
2020-12-11 20:29:46 +00:00
anchors.top: parent.top
anchors.topMargin: 10
anchors.right: parent.right
anchors.rightMargin: 10
icon.height: 20
icon.width: 20
icon.name: "close-circle"
type: StatusQControls.StatusFlatRoundButton.Type.Tertiary
2020-12-11 20:29:46 +00:00
onClicked: {
let hiddenBannerIds = localAccountSensitiveSettings.hiddenCommunityWelcomeBanners || []
if (hiddenBannerIds.includes(root.activeCommunity.id)) {
return
}
hiddenBannerIds.push(root.activeCommunity.id)
localAccountSensitiveSettings.hiddenCommunityWelcomeBanners = hiddenBannerIds
2020-12-11 20:29:46 +00:00
}
}
StatusBaseText {
2020-12-11 20:29:46 +00:00
id: welcomeText
2021-02-18 16:36:05 +00:00
//% "Welcome to your community!"
text: qsTrId("welcome-to-your-community-")
2020-12-11 20:29:46 +00:00
anchors.top: parent.top
anchors.topMargin: 60
horizontalAlignment: Text.AlignHCenter
font.pixelSize: 15
color: Theme.palette.directColor1
2020-12-11 20:29:46 +00:00
wrapMode: Text.WordWrap
anchors.right: parent.right
anchors.rightMargin: Style.current.xlPadding
anchors.left: parent.left
anchors.leftMargin: Style.current.xlPadding
}
StatusQControls.StatusButton {
2020-12-11 20:29:46 +00:00
id: addMembersBtn
2021-02-18 16:36:05 +00:00
//% "Add members"
text: qsTrId("add-members")
2020-12-11 20:29:46 +00:00
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottom: manageBtn.top
anchors.bottomMargin: Style.current.halfPadding
onClicked: Global.openPopup(inviteFriendsToCommunityPopup, {
community: root.activeCommunity,
hasAddedContacts: root.hasAddedContacts,
communitySectionModule: root.communitySectionModule
})
2020-12-11 20:29:46 +00:00
}
StatusQControls.StatusFlatButton {
2020-12-11 20:29:46 +00:00
id: manageBtn
2021-02-18 16:36:05 +00:00
//% "Manage community"
text: qsTrId("manage-community")
2020-12-11 20:29:46 +00:00
anchors.horizontalCenter: parent.horizontalCenter
anchors.bottom: parent.bottom
anchors.bottomMargin: Style.current.padding
onClicked: Global.openPopup(communityProfilePopup, {
store: rootStore,
community: root.activeCommunity,
communitySectionModule: root.communitySectionModule
})
2020-12-11 20:29:46 +00:00
}
}