2022-03-23 15:38:23 +00:00
|
|
|
import QtQuick 2.14
|
|
|
|
import QtQuick.Layouts 1.14
|
|
|
|
import QtQuick.Controls 2.14
|
|
|
|
import QtQuick.Dialogs 1.3
|
|
|
|
import QtGraphicalEffects 1.13
|
|
|
|
|
2023-03-09 10:08:43 +00:00
|
|
|
import SortFilterProxyModel 0.2
|
|
|
|
|
2022-03-23 15:38:23 +00:00
|
|
|
import utils 1.0
|
|
|
|
import shared.panels 1.0
|
|
|
|
import shared.popups 1.0
|
|
|
|
|
|
|
|
import StatusQ.Core 0.1
|
|
|
|
import StatusQ.Core.Theme 0.1
|
2022-07-05 10:12:27 +00:00
|
|
|
import StatusQ.Core.Utils 0.1 as StatusQUtils
|
2022-03-23 15:38:23 +00:00
|
|
|
import StatusQ.Layout 0.1
|
|
|
|
import StatusQ.Components 0.1
|
|
|
|
import StatusQ.Controls 0.1
|
|
|
|
import StatusQ.Controls.Validators 0.1
|
|
|
|
|
2023-01-09 12:51:31 +00:00
|
|
|
import AppLayouts.Chat.stores 1.0
|
|
|
|
|
2023-02-17 11:57:17 +00:00
|
|
|
import shared.stores 1.0
|
|
|
|
|
2022-03-23 15:38:23 +00:00
|
|
|
import "../panels/communities"
|
2022-06-06 15:23:24 +00:00
|
|
|
import "../popups/community"
|
2022-03-23 15:38:23 +00:00
|
|
|
import "../layouts"
|
|
|
|
|
2022-08-09 15:08:39 +00:00
|
|
|
StatusSectionLayout {
|
2022-03-23 15:38:23 +00:00
|
|
|
id: root
|
|
|
|
|
2022-10-26 16:00:20 +00:00
|
|
|
notificationCount: activityCenterStore.unreadNotificationsCount
|
2023-02-07 15:53:56 +00:00
|
|
|
hasUnseenNotifications: activityCenterStore.hasUnseenNotifications
|
2022-08-09 15:08:39 +00:00
|
|
|
onNotificationButtonClicked: Global.openActivityCenterPopup()
|
2022-03-23 15:38:23 +00:00
|
|
|
// TODO: get this model from backend?
|
2023-01-09 12:51:31 +00:00
|
|
|
property var settingsMenuModel: [{name: qsTr("Overview"), icon: "show", enabled: true},
|
|
|
|
{name: qsTr("Members"), icon: "group-chat", enabled: true},
|
|
|
|
{name: qsTr("Permissions"), icon: "objects", enabled: root.rootStore.communityPermissionsEnabled},
|
2023-02-17 11:57:17 +00:00
|
|
|
{name: qsTr("Mint Tokens"), icon: "token", enabled: root.rootStore.communityTokensEnabled}]
|
2023-01-09 12:51:31 +00:00
|
|
|
|
2022-06-09 15:27:14 +00:00
|
|
|
// TODO: Next community settings options:
|
|
|
|
// {name: qsTr("Airdrops"), icon: "airdrop"},
|
|
|
|
// {name: qsTr("Token sales"), icon: "token-sale"},
|
|
|
|
// {name: qsTr("Subscriptions"), icon: "subscription"},
|
|
|
|
|
2022-09-27 12:16:03 +00:00
|
|
|
property var rootStore
|
2022-03-23 15:38:23 +00:00
|
|
|
property var community
|
|
|
|
property var chatCommunitySectionModule
|
2023-02-22 17:51:49 +00:00
|
|
|
required property CommunitiesStore communityStore
|
2022-06-06 15:23:24 +00:00
|
|
|
property bool hasAddedContacts: false
|
2023-02-17 11:57:17 +00:00
|
|
|
property var transactionStore: TransactionStore {}
|
2022-03-23 15:38:23 +00:00
|
|
|
|
2022-07-01 11:58:56 +00:00
|
|
|
readonly property string filteredSelectedTags: {
|
2023-01-11 13:04:38 +00:00
|
|
|
var tagsArray = []
|
2022-12-20 15:23:49 +00:00
|
|
|
if (community && community.tags) {
|
|
|
|
try {
|
2023-01-11 13:04:38 +00:00
|
|
|
const json = JSON.parse(community.tags)
|
|
|
|
if (!!json) {
|
|
|
|
tagsArray = json.map(tag => {
|
|
|
|
return tag.name
|
|
|
|
})
|
|
|
|
}
|
2022-12-20 15:23:49 +00:00
|
|
|
}
|
|
|
|
catch (e) {
|
|
|
|
console.warn("Error parsing community tags: ", community.tags, " error: ", e.message)
|
|
|
|
}
|
2022-12-14 15:40:00 +00:00
|
|
|
}
|
2023-01-11 13:04:38 +00:00
|
|
|
return JSON.stringify(tagsArray);
|
2022-07-01 11:58:56 +00:00
|
|
|
}
|
|
|
|
|
2022-03-23 15:38:23 +00:00
|
|
|
signal backToCommunityClicked
|
|
|
|
signal openLegacyPopupClicked // TODO: remove me when migration to new settings is done
|
|
|
|
|
2022-09-13 16:17:54 +00:00
|
|
|
onBackButtonClicked: {
|
2022-12-07 16:14:36 +00:00
|
|
|
centerPanelContentLoader.item.children[d.currentIndex].navigateBack()
|
2022-09-13 16:17:54 +00:00
|
|
|
}
|
|
|
|
|
2022-10-05 11:07:39 +00:00
|
|
|
leftPanel: Item {
|
2022-09-27 12:16:03 +00:00
|
|
|
anchors.fill: parent
|
2022-03-23 15:38:23 +00:00
|
|
|
|
2022-09-27 12:16:03 +00:00
|
|
|
ColumnLayout {
|
|
|
|
anchors {
|
|
|
|
top: parent.top
|
|
|
|
bottom: footer.top
|
2022-10-05 12:14:29 +00:00
|
|
|
bottomMargin: 12
|
|
|
|
topMargin: Style.current.smallPadding
|
2022-09-27 12:16:03 +00:00
|
|
|
horizontalCenter: parent.horizontalCenter
|
|
|
|
}
|
2022-10-05 12:14:29 +00:00
|
|
|
width: parent.width
|
|
|
|
spacing: 32
|
2022-09-27 12:16:03 +00:00
|
|
|
clip: true
|
2022-03-23 15:38:23 +00:00
|
|
|
|
2022-10-05 12:14:29 +00:00
|
|
|
StatusChatInfoButton {
|
|
|
|
id: communityHeader
|
|
|
|
|
|
|
|
title: community.name
|
2022-12-13 10:45:26 +00:00
|
|
|
subTitle: qsTr("%n member(s)", "", community.members.count || 0)
|
2022-10-05 12:14:29 +00:00
|
|
|
asset.name: community.image
|
|
|
|
asset.color: community.color
|
|
|
|
asset.isImage: true
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.leftMargin: Style.current.halfPadding
|
|
|
|
Layout.rightMargin: Style.current.halfPadding
|
|
|
|
type: StatusChatInfoButton.Type.OneToOneChat
|
|
|
|
hoverEnabled: false
|
2022-09-27 12:16:03 +00:00
|
|
|
}
|
2022-03-23 15:38:23 +00:00
|
|
|
|
2022-09-27 12:16:03 +00:00
|
|
|
StatusListView {
|
|
|
|
id: listView
|
|
|
|
|
|
|
|
Layout.fillWidth: true
|
|
|
|
Layout.fillHeight: true
|
2022-10-05 12:14:29 +00:00
|
|
|
Layout.leftMargin: Style.current.padding
|
|
|
|
Layout.rightMargin: Style.current.padding
|
2022-09-27 12:16:03 +00:00
|
|
|
model: root.settingsMenuModel
|
|
|
|
delegate: StatusNavigationListItem {
|
2022-10-25 19:08:15 +00:00
|
|
|
objectName: "CommunitySettingsView_NavigationListItem_" + modelData.name
|
2022-09-27 12:16:03 +00:00
|
|
|
width: listView.width
|
|
|
|
title: modelData.name
|
|
|
|
asset.name: modelData.icon
|
2022-10-05 12:14:29 +00:00
|
|
|
asset.height: 24
|
|
|
|
asset.width: 24
|
2022-09-27 12:16:03 +00:00
|
|
|
selected: d.currentIndex === index
|
|
|
|
onClicked: d.currentIndex = index
|
2023-01-09 12:51:31 +00:00
|
|
|
visible: modelData.enabled
|
|
|
|
height: modelData.enabled ? implicitHeight : 0
|
2022-09-27 12:16:03 +00:00
|
|
|
}
|
2022-03-23 15:38:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-27 12:16:03 +00:00
|
|
|
// TODO: remove me when migration to new settings is done. Only keep back button and anchor to it.
|
|
|
|
ColumnLayout {
|
|
|
|
id: footer
|
2022-03-23 15:38:23 +00:00
|
|
|
|
2022-09-27 12:16:03 +00:00
|
|
|
anchors {
|
|
|
|
bottom: parent.bottom
|
|
|
|
bottomMargin: 16
|
|
|
|
}
|
|
|
|
width: parent.width
|
|
|
|
spacing: 16
|
|
|
|
|
|
|
|
// TODO: remove me when migration to new settings is done
|
|
|
|
StatusBaseText {
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
text: qsTr("Open legacy popup (to be removed)")
|
|
|
|
color: Theme.palette.baseColor1
|
|
|
|
font.pixelSize: 10
|
|
|
|
font.underline: true
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
onClicked: root.openLegacyPopupClicked()
|
|
|
|
}
|
2022-03-23 15:38:23 +00:00
|
|
|
}
|
|
|
|
|
2022-09-27 12:16:03 +00:00
|
|
|
StatusBaseText {
|
|
|
|
objectName: "communitySettingsBackToCommunityButton"
|
|
|
|
Layout.alignment: Qt.AlignHCenter
|
|
|
|
text: "<- " + qsTr("Back to community")
|
|
|
|
color: Theme.palette.baseColor1
|
|
|
|
font.pixelSize: 15
|
|
|
|
font.underline: true
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
onClicked: root.backToCommunityClicked()
|
|
|
|
hoverEnabled: true
|
|
|
|
}
|
2022-03-23 15:38:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-09 15:08:39 +00:00
|
|
|
centerPanel: Loader {
|
2022-09-13 16:17:54 +00:00
|
|
|
id: centerPanelContentLoader
|
2022-03-23 15:38:23 +00:00
|
|
|
anchors.fill: parent
|
|
|
|
active: root.community
|
|
|
|
sourceComponent: StackLayout {
|
|
|
|
currentIndex: d.currentIndex
|
|
|
|
|
|
|
|
CommunityOverviewSettingsPanel {
|
2022-06-06 15:23:24 +00:00
|
|
|
communityId: root.community.id
|
2022-03-23 15:38:23 +00:00
|
|
|
name: root.community.name
|
|
|
|
description: root.community.description
|
2022-05-26 15:46:02 +00:00
|
|
|
introMessage: root.community.introMessage
|
|
|
|
outroMessage: root.community.outroMessage
|
2022-05-23 18:53:51 +00:00
|
|
|
logoImageData: root.community.image
|
|
|
|
bannerImageData: root.community.bannerImageData
|
2022-03-23 15:38:23 +00:00
|
|
|
color: root.community.color
|
2022-06-09 14:59:54 +00:00
|
|
|
tags: root.rootStore.communityTags
|
2022-07-01 11:58:56 +00:00
|
|
|
selectedTags: root.filteredSelectedTags
|
2022-05-26 15:46:02 +00:00
|
|
|
archiveSupportEnabled: root.community.historyArchiveSupportEnabled
|
2022-10-07 16:33:23 +00:00
|
|
|
encrypted: root.community.encrypted
|
2022-05-26 15:46:02 +00:00
|
|
|
requestToJoinEnabled: root.community.access === Constants.communityChatOnRequestAccess
|
|
|
|
pinMessagesEnabled: root.community.pinMessageAllMembersEnabled
|
2022-03-23 15:38:23 +00:00
|
|
|
editable: root.community.amISectionAdmin
|
|
|
|
|
|
|
|
onEdited: {
|
2022-06-02 17:48:10 +00:00
|
|
|
const error = root.chatCommunitySectionModule.editCommunity(
|
2022-07-05 10:12:27 +00:00
|
|
|
StatusQUtils.Utils.filterXSS(item.name),
|
|
|
|
StatusQUtils.Utils.filterXSS(item.description),
|
|
|
|
StatusQUtils.Utils.filterXSS(item.introMessage),
|
|
|
|
StatusQUtils.Utils.filterXSS(item.outroMessage),
|
2022-05-26 15:46:02 +00:00
|
|
|
item.options.requestToJoinEnabled ? Constants.communityChatOnRequestAccess : Constants.communityChatPublicAccess,
|
2022-04-28 07:41:57 +00:00
|
|
|
item.color.toString().toUpperCase(),
|
2022-06-09 14:59:54 +00:00
|
|
|
item.selectedTags,
|
2022-08-11 10:58:09 +00:00
|
|
|
Utils.getImageAndCropInfoJson(item.logoImagePath, item.logoCropRect),
|
|
|
|
Utils.getImageAndCropInfoJson(item.bannerPath, item.bannerCropRect),
|
2022-05-26 15:46:02 +00:00
|
|
|
item.options.archiveSupportEnabled,
|
|
|
|
item.options.pinMessagesEnabled
|
2022-04-28 07:41:57 +00:00
|
|
|
)
|
2022-05-26 15:46:02 +00:00
|
|
|
if (error) {
|
|
|
|
errorDialog.text = error.error
|
|
|
|
errorDialog.open()
|
|
|
|
}
|
2022-03-23 15:38:23 +00:00
|
|
|
}
|
2022-06-06 15:23:24 +00:00
|
|
|
|
|
|
|
onInviteNewPeopleClicked: {
|
2022-09-28 21:07:18 +00:00
|
|
|
Global.openInviteFriendsToCommunityPopup(root.community,
|
2022-10-25 17:15:44 +00:00
|
|
|
root.chatCommunitySectionModule,
|
|
|
|
null)
|
2022-06-06 15:23:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
onAirdropTokensClicked: { /* TODO in future */ }
|
|
|
|
onBackUpClicked: {
|
|
|
|
Global.openPopup(transferOwnershipPopup, {
|
|
|
|
privateKey: root.chatCommunitySectionModule.exportCommunity(root.communityId),
|
|
|
|
})
|
|
|
|
}
|
2022-12-07 16:14:36 +00:00
|
|
|
onPreviousPageNameChanged: root.backButtonName = previousPageName
|
2022-03-23 15:38:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
CommunityMembersSettingsPanel {
|
|
|
|
membersModel: root.community.members
|
2022-06-28 15:03:10 +00:00
|
|
|
bannedMembersModel: root.community.bannedMembers
|
2022-08-04 07:49:41 +00:00
|
|
|
pendingMemberRequestsModel: root.community.pendingMemberRequests
|
|
|
|
declinedMemberRequestsModel: root.community.declinedMemberRequests
|
2022-03-23 15:38:23 +00:00
|
|
|
editable: root.community.amISectionAdmin
|
2022-06-28 15:03:10 +00:00
|
|
|
communityName: root.community.name
|
2022-03-23 15:38:23 +00:00
|
|
|
|
|
|
|
onUserProfileClicked: Global.openProfilePopup(id)
|
|
|
|
onKickUserClicked: root.rootStore.removeUserFromCommunity(id)
|
2022-04-07 14:49:38 +00:00
|
|
|
onBanUserClicked: root.rootStore.banUserFromCommunity(id)
|
2022-06-28 15:03:10 +00:00
|
|
|
onUnbanUserClicked: root.rootStore.unbanUserFromCommunity(id)
|
2022-10-19 12:56:00 +00:00
|
|
|
onAcceptRequestToJoin: root.rootStore.acceptRequestToJoinCommunity(id, root.communityId)
|
|
|
|
onDeclineRequestToJoin: root.rootStore.declineRequestToJoinCommunity(id, root.communityId)
|
2022-03-23 15:38:23 +00:00
|
|
|
}
|
2022-06-09 15:27:14 +00:00
|
|
|
|
2022-09-13 16:17:54 +00:00
|
|
|
CommunityPermissionsSettingsPanel {
|
2023-03-07 08:47:04 +00:00
|
|
|
readonly property PermissionsStore permissionsStore:
|
|
|
|
rootStore.permissionsStore
|
|
|
|
|
|
|
|
permissionsModel: permissionsStore.permissionsModel
|
2023-03-09 10:08:43 +00:00
|
|
|
|
|
|
|
// temporary solution to provide icons for assets, similar
|
|
|
|
// method is used in wallet (constructing filename from asset's
|
|
|
|
// symbol) and is intended to be replaced by more robust
|
|
|
|
// solution soon.
|
|
|
|
|
2023-03-07 16:51:06 +00:00
|
|
|
assetsModel: rootStore.assetsModel
|
2023-03-07 08:47:04 +00:00
|
|
|
collectiblesModel: rootStore.collectiblesModel
|
|
|
|
channelsModel: rootStore.chatCommunitySectionModule.model
|
|
|
|
|
|
|
|
communityDetails: QtObject {
|
|
|
|
readonly property var _activeSection:
|
|
|
|
rootStore.mainModuleInst.activeSection
|
|
|
|
|
|
|
|
readonly property string name: _activeSection.name
|
|
|
|
readonly property string image: _activeSection.image
|
|
|
|
readonly property string color: _activeSection.color
|
|
|
|
}
|
|
|
|
|
|
|
|
onCreatePermissionRequested:
|
|
|
|
permissionsStore.createPermission(holdings, permissionType,
|
|
|
|
isPrivate, channels)
|
|
|
|
|
|
|
|
onUpdatePermissionRequested:
|
|
|
|
permissionsStore.editPermission(
|
|
|
|
key, holdings, permissionType, channels, isPrivate)
|
|
|
|
|
|
|
|
onRemovePermissionRequested:
|
|
|
|
permissionsStore.removePermission(key)
|
2023-02-22 17:51:49 +00:00
|
|
|
|
2022-12-07 16:14:36 +00:00
|
|
|
onPreviousPageNameChanged: root.backButtonName = previousPageName
|
2022-09-13 16:17:54 +00:00
|
|
|
}
|
2022-12-07 16:14:36 +00:00
|
|
|
|
2023-02-17 11:57:17 +00:00
|
|
|
CommunityMintTokensSettingsPanel {
|
2023-02-22 17:10:46 +00:00
|
|
|
communityId: root.community.id
|
|
|
|
communitiesStore: root.communityStore
|
2023-02-17 11:57:17 +00:00
|
|
|
transactionStore: root.transactionStore
|
2023-01-29 13:33:58 +00:00
|
|
|
tokensModel: root.community.communityTokens
|
2023-02-17 11:57:17 +00:00
|
|
|
onPreviousPageNameChanged: root.backButtonName = previousPageName
|
2023-01-09 12:51:31 +00:00
|
|
|
}
|
|
|
|
|
2022-12-07 16:14:36 +00:00
|
|
|
onCurrentIndexChanged: root.backButtonName = centerPanelContentLoader.item.children[d.currentIndex].previousPageName
|
2022-03-23 15:38:23 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-09 15:27:14 +00:00
|
|
|
onSettingsMenuModelChanged: d.currentIndex = 0
|
2022-03-23 15:38:23 +00:00
|
|
|
|
|
|
|
QtObject {
|
|
|
|
id: d
|
|
|
|
property int currentIndex: 0
|
|
|
|
}
|
2022-05-26 15:46:02 +00:00
|
|
|
|
|
|
|
MessageDialog {
|
|
|
|
id: errorDialog
|
|
|
|
title: qsTr("Error editing the community")
|
|
|
|
icon: StandardIcon.Critical
|
|
|
|
standardButtons: StandardButton.Ok
|
|
|
|
}
|
2022-06-06 15:23:24 +00:00
|
|
|
|
|
|
|
Component {
|
|
|
|
id: transferOwnershipPopup
|
|
|
|
TransferOwnershipPopup {
|
|
|
|
anchors.centerIn: parent
|
2022-06-29 13:19:18 +00:00
|
|
|
store: root.rootStore
|
2022-06-06 15:23:24 +00:00
|
|
|
}
|
|
|
|
}
|
2022-03-23 15:38:23 +00:00
|
|
|
}
|