mirror of
https://github.com/status-im/status-desktop.git
synced 2025-01-10 06:16:32 +00:00
0c8231a6b6
- fix the corner case and allow the user to join a community without an explicitely stated "Member" permission - enable/disable the Share/Join/Save buttons when the permission to join check is ongoing, or when the permission check failed - display tooltips over the disabled buttons explaining why it's disabled - always display the eligibility button floating on top of the (scrollable) contents Fixes #14473 Fixes #14299
240 lines
8.2 KiB
QML
240 lines
8.2 KiB
QML
import QtQuick 2.14
|
|
import QtQuick.Controls 2.14
|
|
import QtQuick.Layouts 1.14
|
|
|
|
import Storybook 1.0
|
|
import Models 1.0
|
|
|
|
import shared.popups 1.0
|
|
import utils 1.0
|
|
|
|
import AppLayouts.Wallet.stores 1.0
|
|
|
|
SplitView {
|
|
SplitView {
|
|
id: root
|
|
|
|
orientation: Qt.Vertical
|
|
SplitView.fillWidth: true
|
|
|
|
Logs { id: logs }
|
|
|
|
readonly property WalletAssetsStore walletAssetStore: WalletAssetsStore {
|
|
assetsWithFilteredBalances: groupedAccountsAssetsModel
|
|
}
|
|
|
|
function openDialog() {
|
|
popupComponent.createObject(popupBg)
|
|
}
|
|
|
|
Component.onCompleted: openDialog()
|
|
|
|
Component {
|
|
id: popupComponent
|
|
CommunityMembershipSetupDialog {
|
|
anchors.centerIn: parent
|
|
modal: false
|
|
visible: true
|
|
closePolicy: Popup.NoAutoClose
|
|
|
|
isEditMode: ctrlIsEditMode.checked
|
|
communityId: "community_id"
|
|
communityName: ctrlCommunityName.text
|
|
communityIcon: {
|
|
if (ctrlIconStatus.checked)
|
|
return ModelsData.icons.status
|
|
if (ctrlIconCryptoPunks.checked)
|
|
return ModelsData.icons.cryptPunks
|
|
if (ctrlIconRarible.checked)
|
|
return ModelsData.icons.rarible
|
|
if (ctrlIconNone.checked)
|
|
return ""
|
|
}
|
|
|
|
introMessage: ctrlIntro.text.arg(communityName)
|
|
|
|
isInvitationPending: ctrlIsInvitationPending.checked
|
|
requirementsCheckPending: ctrlRequirementsCheckPending.checked
|
|
joinPermissionsCheckSuccessful: ctrlJoinPermissionsCheckSuccessful.checked
|
|
|
|
walletAccountsModel: WalletAccountsModel {}
|
|
walletAssetsModel: root.walletAssetStore.groupedAccountAssetsModel
|
|
walletCollectiblesModel: ListModel {}
|
|
permissionsModel: ctrlPermissionsModel.currentValue
|
|
assetsModel: AssetsModel {}
|
|
collectiblesModel: CollectiblesModel {}
|
|
|
|
onCancelMembershipRequest: logs.logEvent("CommunityMembershipSetupDialog::onCancelMembershipRequest()")
|
|
|
|
onPrepareForSigning: logs.logEvent("CommunityMembershipSetupDialog::onPrepareForSigning", ["airdropAddress", "sharedAddresses"], arguments)
|
|
onJoinCommunity: logs.logEvent("CommunityMembershipSetupDialog::onJoinCommunity")
|
|
onEditRevealedAddresses: logs.logEvent("CommunityMembershipSetupDialog::editRevealedAddresses")
|
|
onSignProfileKeypairAndAllNonKeycardKeypairs: logs.logEvent("CommunityMembershipSetupDialog::onSignProfileKeypairAndAllNonKeycardKeypairs")
|
|
onSignSharedAddressesForKeypair: logs.logEvent("CommunityMembershipSetupDialog::onSignSharedAddressesForKeypair", ["keyUid"], arguments)
|
|
onSharedAddressesUpdated: logs.logEvent("CommunityMembershipSetupDialog::onSharedAddressesUpdated", ["sharedAddresses"], arguments)
|
|
getCurrencyAmount: function (balance, symbol) {
|
|
return ({
|
|
amount: balance,
|
|
symbol: symbol.toUpperCase(),
|
|
displayDecimals: 2,
|
|
stripTrailingZeroes: false
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
Item {
|
|
SplitView.fillWidth: true
|
|
SplitView.fillHeight: true
|
|
|
|
PopupBackground {
|
|
id: popupBg
|
|
anchors.fill: parent
|
|
}
|
|
|
|
Button {
|
|
anchors.centerIn: parent
|
|
text: "Reopen"
|
|
|
|
onClicked: root.openDialog()
|
|
}
|
|
}
|
|
|
|
LogsAndControlsPanel {
|
|
id: logsAndControlsPanel
|
|
|
|
SplitView.minimumHeight: 100
|
|
SplitView.preferredHeight: 200
|
|
|
|
logsView.logText: logs.logText
|
|
}
|
|
}
|
|
|
|
Pane {
|
|
SplitView.minimumWidth: 300
|
|
SplitView.preferredWidth: 300
|
|
|
|
ColumnLayout {
|
|
anchors.fill: parent
|
|
|
|
Label {
|
|
Layout.fillWidth: true
|
|
text: "Community name"
|
|
font.weight: Font.Bold
|
|
}
|
|
|
|
TextField {
|
|
id: ctrlCommunityName
|
|
Layout.fillWidth: true
|
|
text: "Status"
|
|
}
|
|
|
|
Label {
|
|
Layout.fillWidth: true
|
|
text: "Intro"
|
|
font.weight: Font.Bold
|
|
}
|
|
|
|
TextField {
|
|
id: ctrlIntro
|
|
Layout.fillWidth: true
|
|
text: "%1 sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo.
|
|
|
|
1. Ut enim ad minim veniam
|
|
2. Excepteur sint occaecat cupidatat non proident
|
|
3. Duis aute irure
|
|
4. Dolore eu fugiat nulla pariatur
|
|
5. 🚗 consectetur adipiscing elit
|
|
|
|
Nemo enim 😋 ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt."
|
|
}
|
|
|
|
ColumnLayout {
|
|
Label {
|
|
Layout.fillWidth: true
|
|
text: "Icon:"
|
|
font.weight: Font.Bold
|
|
}
|
|
RadioButton {
|
|
id: ctrlIconStatus
|
|
checked: true
|
|
text: "Status"
|
|
}
|
|
RadioButton {
|
|
id: ctrlIconCryptoPunks
|
|
text: "Crypto Punks"
|
|
}
|
|
RadioButton {
|
|
id: ctrlIconRarible
|
|
text: "Rarible"
|
|
}
|
|
RadioButton {
|
|
id: ctrlIconNone
|
|
text: "None"
|
|
}
|
|
}
|
|
|
|
CheckBox {
|
|
id: ctrlIsInvitationPending
|
|
text: "Is invitation pending"
|
|
}
|
|
|
|
CheckBox {
|
|
id: ctrlIsEditMode
|
|
visible: !ctrlIsInvitationPending.checked
|
|
text: "Is edit mode"
|
|
}
|
|
|
|
ColumnLayout {
|
|
visible: !ctrlIsInvitationPending.checked
|
|
|
|
RowLayout {
|
|
Layout.fillWidth: true
|
|
Layout.leftMargin: 12
|
|
Label {
|
|
text: "Permissions:"
|
|
}
|
|
ComboBox {
|
|
Layout.fillWidth: true
|
|
id: ctrlPermissionsModel
|
|
textRole: "text"
|
|
valueRole: "value"
|
|
model: [
|
|
{ value: PermissionsModel.complexCombinedPermissionsModel, text: "complexCombined" },
|
|
{ value: PermissionsModel.complexCombinedPermissionsModelNotMet, text: "complexCombinedNotMet" },
|
|
{ value: PermissionsModel.complexPermissionsModel, text: "complex" },
|
|
{ value: PermissionsModel.complexPermissionsModelNotMet, text: "complexNotMet" },
|
|
{ value: PermissionsModel.channelsOnlyPermissionsModel, text: "channelsOnly" },
|
|
{ value: PermissionsModel.channelsOnlyPermissionsModelNotMet, text: "channelsOnlyNotMet" },
|
|
{ value: null, text: "null" }
|
|
]
|
|
}
|
|
}
|
|
}
|
|
|
|
CheckBox {
|
|
Layout.leftMargin: 12
|
|
id: ctrlRequirementsCheckPending
|
|
visible: !ctrlIsInvitationPending.checked
|
|
text: "Requirements check pending"
|
|
}
|
|
|
|
CheckBox {
|
|
Layout.leftMargin: 12
|
|
id: ctrlJoinPermissionsCheckSuccessful
|
|
visible: !ctrlIsInvitationPending.checked
|
|
text: "Join permission successful"
|
|
checked: true
|
|
}
|
|
|
|
Item {
|
|
Layout.fillHeight: true
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// category: Popups
|
|
|
|
// https://www.figma.com/file/17fc13UBFvInrLgNUKJJg5/Kuba%E2%8E%9CDesktop?node-id=31461%3A563897&mode=dev
|