94 lines
2.8 KiB
QML
94 lines
2.8 KiB
QML
import QtQuick 2.14
|
|
import QtQuick.Controls 2.14
|
|
import QtQuick.Layouts 1.1
|
|
import QtQml.Models 2.14
|
|
|
|
import utils 1.0
|
|
|
|
import StatusQ.Core 0.1
|
|
import StatusQ.Core.Theme 0.1
|
|
import StatusQ.Controls 0.1
|
|
import StatusQ.Components 0.1
|
|
import StatusQ.Popups.Dialog 0.1
|
|
|
|
StatusDialog {
|
|
id: root
|
|
|
|
property string name
|
|
property string introMessage
|
|
property int accessType
|
|
property url imageSrc
|
|
property bool isInvitationPending: false
|
|
|
|
signal joined
|
|
signal cancelMembershipRequest
|
|
|
|
padding: 0
|
|
title: qsTr("Welcome to %1").arg(name)
|
|
|
|
footer: StatusDialogFooter {
|
|
rightButtons: ObjectModel {
|
|
StatusButton {
|
|
text: root.isInvitationPending ? qsTr("Cancel Membership Request")
|
|
: (root.accessType === Constants.communityChatOnRequestAccess
|
|
? qsTr("Request to join %1").arg(root.name)
|
|
: qsTr("Join %1").arg(root.name) )
|
|
type: root.isInvitationPending ? StatusBaseButton.Type.Danger
|
|
: StatusBaseButton.Type.Normal
|
|
enabled: checkBox.checked || root.isInvitationPending
|
|
textFillWidth: true
|
|
onClicked: {
|
|
if (root.isInvitationPending) {
|
|
root.cancelMembershipRequest()
|
|
} else {
|
|
root.joined()
|
|
}
|
|
|
|
root.close()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
StatusScrollView {
|
|
id: scrollView
|
|
anchors.fill: parent
|
|
implicitWidth: 640 // by design
|
|
contentWidth: availableWidth
|
|
|
|
ColumnLayout {
|
|
id: columnContent
|
|
|
|
spacing: 24
|
|
width: scrollView.availableWidth
|
|
|
|
StatusRoundedImage {
|
|
id: roundImage
|
|
|
|
Layout.alignment: Qt.AlignCenter
|
|
Layout.preferredHeight: 64
|
|
Layout.preferredWidth: Layout.preferredHeight
|
|
visible: image.status == Image.Loading || image.status == Image.Ready
|
|
image.source: root.imageSrc
|
|
}
|
|
|
|
StatusBaseText {
|
|
id: introText
|
|
|
|
Layout.fillWidth: true
|
|
text: root.introMessage !== "" ? root.introMessage : qsTr("Community <b>%1</b> has no intro message...").arg(root.name)
|
|
color: Theme.palette.directColor1
|
|
wrapMode: Text.WordWrap
|
|
}
|
|
|
|
StatusCheckBox {
|
|
id: checkBox
|
|
|
|
Layout.alignment: Qt.AlignCenter
|
|
visible: !root.isInvitationPending
|
|
text: qsTr("I agree with the above")
|
|
}
|
|
}
|
|
}
|
|
}
|