2020-12-11 20:29:46 +00:00
|
|
|
import QtQuick 2.13
|
|
|
|
import QtQuick.Controls 2.13
|
2021-07-02 12:34:01 +00:00
|
|
|
import QtQuick.Dialogs 1.2
|
2021-02-10 20:37:17 +00:00
|
|
|
import QtGraphicalEffects 1.13
|
2020-12-11 20:29:46 +00:00
|
|
|
import QtQuick.Layouts 1.13
|
|
|
|
|
2022-05-13 15:27:26 +00:00
|
|
|
import StatusQ.Core 0.1
|
|
|
|
import StatusQ.Core.Theme 0.1
|
|
|
|
import StatusQ.Controls 0.1
|
2021-07-02 12:34:01 +00:00
|
|
|
import StatusQ.Components 0.1
|
|
|
|
import StatusQ.Popups 0.1
|
|
|
|
|
2021-09-28 15:04:06 +00:00
|
|
|
import utils 1.0
|
2021-10-27 21:27:49 +00:00
|
|
|
import shared 1.0
|
|
|
|
import shared.popups 1.0
|
|
|
|
import shared.status 1.0
|
2023-05-30 17:51:57 +00:00
|
|
|
import shared.controls.chat.menuItems 1.0
|
2023-06-23 06:17:04 +00:00
|
|
|
import shared.panels 1.0
|
|
|
|
import shared.views.chat 1.0
|
2023-05-30 17:51:57 +00:00
|
|
|
|
2023-06-23 06:17:04 +00:00
|
|
|
import AppLayouts.Communities.popups 1.0
|
|
|
|
import AppLayouts.Communities.panels 1.0
|
2021-07-02 12:34:01 +00:00
|
|
|
|
2022-09-22 07:13:03 +00:00
|
|
|
// FIXME: Rework me to use ColumnLayout instead of anchors!!
|
2021-07-02 12:34:01 +00:00
|
|
|
Item {
|
2021-07-22 14:53:19 +00:00
|
|
|
id: root
|
2022-07-25 20:30:34 +00:00
|
|
|
objectName: "communityColumnView"
|
2023-05-02 09:37:12 +00:00
|
|
|
width: Constants.chatSectionLeftColumnWidth
|
2021-07-22 14:53:19 +00:00
|
|
|
height: parent.height
|
|
|
|
|
2021-11-26 15:37:57 +00:00
|
|
|
// Important:
|
|
|
|
// We're here in case of CommunitySection
|
|
|
|
// This module is set from `ChatLayout` (each `ChatLayout` has its own communitySectionModule)
|
|
|
|
property var communitySectionModule
|
2022-03-07 14:56:05 +00:00
|
|
|
property var emojiPopup
|
2021-11-26 15:37:57 +00:00
|
|
|
|
2021-10-21 22:39:53 +00:00
|
|
|
property var store
|
2022-01-10 16:44:54 +00:00
|
|
|
property bool hasAddedContacts: false
|
2023-03-17 18:58:07 +00:00
|
|
|
property var communityData
|
2020-12-11 20:29:46 +00:00
|
|
|
|
2023-06-14 16:00:41 +00:00
|
|
|
readonly property bool isSectionAdmin:
|
|
|
|
communityData.memberRole === Constants.memberRole.owner ||
|
|
|
|
communityData.memberRole === Constants.memberRole.admin
|
|
|
|
|
2022-03-23 15:38:23 +00:00
|
|
|
signal infoButtonClicked
|
|
|
|
signal manageButtonClicked
|
|
|
|
|
2023-06-26 11:48:45 +00:00
|
|
|
ColumnHeaderPanel {
|
2020-12-11 20:29:46 +00:00
|
|
|
id: communityHeader
|
2023-01-26 18:52:41 +00:00
|
|
|
|
2022-05-13 15:27:26 +00:00
|
|
|
anchors.top: parent.top
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
2023-01-26 18:52:41 +00:00
|
|
|
name: communityData.name
|
|
|
|
membersCount: communityData.members.count
|
|
|
|
image: communityData.image
|
|
|
|
color: communityData.color
|
2023-06-14 16:00:41 +00:00
|
|
|
amISectionAdmin: root.isSectionAdmin
|
2023-01-26 18:52:41 +00:00
|
|
|
openCreateChat: root.store.openCreateChat
|
|
|
|
onInfoButtonClicked: root.infoButtonClicked()
|
|
|
|
onAdHocChatButtonClicked: root.store.openCloseCreateChatView()
|
2022-07-25 19:20:12 +00:00
|
|
|
}
|
2022-05-13 15:27:26 +00:00
|
|
|
|
2022-09-22 07:13:03 +00:00
|
|
|
StatusButton {
|
|
|
|
id: joinCommunityButton
|
|
|
|
|
|
|
|
property bool invitationPending: root.store.isCommunityRequestPending(communityData.id)
|
|
|
|
|
|
|
|
anchors.top: communityHeader.bottom
|
2023-05-02 09:37:12 +00:00
|
|
|
anchors.topMargin: Style.current.halfPadding
|
2022-09-22 07:13:03 +00:00
|
|
|
anchors.bottomMargin: Style.current.halfPadding
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
2022-12-18 20:29:18 +00:00
|
|
|
enabled: !root.communityData.amIBanned
|
2022-09-22 07:13:03 +00:00
|
|
|
|
2022-12-18 20:29:18 +00:00
|
|
|
visible: !communityData.joined || root.communityData.amIBanned
|
2022-09-22 07:13:03 +00:00
|
|
|
|
|
|
|
text: {
|
2022-12-18 20:29:18 +00:00
|
|
|
if (root.communityData.amIBanned) return qsTr("You were banned from community")
|
2022-10-21 10:09:17 +00:00
|
|
|
if (invitationPending) return qsTr("Membership request pending...")
|
2022-12-18 20:29:18 +00:00
|
|
|
|
2022-09-22 07:13:03 +00:00
|
|
|
return root.communityData.access === Constants.communityChatOnRequestAccess ?
|
|
|
|
qsTr("Request to join") : qsTr("Join Community")
|
|
|
|
}
|
|
|
|
|
2022-10-21 10:09:17 +00:00
|
|
|
onClicked: {
|
2023-06-06 14:28:27 +00:00
|
|
|
Global.openPopup(communityIntroDialog);
|
2022-10-21 10:09:17 +00:00
|
|
|
}
|
2022-09-22 07:13:03 +00:00
|
|
|
|
|
|
|
Connections {
|
|
|
|
target: root.store.communitiesModuleInst
|
2023-01-18 09:25:36 +00:00
|
|
|
function onCommunityAccessRequested(communityId: string) {
|
2022-09-22 07:13:03 +00:00
|
|
|
if (communityId === communityData.id) {
|
|
|
|
joinCommunityButton.invitationPending = root.store.isCommunityRequestPending(communityData.id)
|
2023-05-22 10:38:19 +00:00
|
|
|
joinCommunityButton.loading = false
|
2022-09-22 07:13:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-06-06 14:28:27 +00:00
|
|
|
Component {
|
2022-09-22 07:13:03 +00:00
|
|
|
id: communityIntroDialog
|
2023-06-06 14:28:27 +00:00
|
|
|
CommunityIntroDialog {
|
2022-09-22 07:13:03 +00:00
|
|
|
|
2023-06-06 14:28:27 +00:00
|
|
|
isInvitationPending: joinCommunityButton.invitationPending
|
|
|
|
name: communityData.name
|
|
|
|
introMessage: communityData.introMessage
|
|
|
|
imageSrc: communityData.image
|
|
|
|
accessType: communityData.access
|
2022-09-22 07:13:03 +00:00
|
|
|
|
2023-06-06 14:28:27 +00:00
|
|
|
onJoined: {
|
|
|
|
joinCommunityButton.loading = true
|
2023-06-22 17:34:58 +00:00
|
|
|
root.store.requestToJoinCommunityWithAuthentication(root.store.userProfileInst.name)
|
2023-06-06 14:28:27 +00:00
|
|
|
}
|
|
|
|
onCancelMembershipRequest: {
|
|
|
|
root.store.cancelPendingRequest(communityData.id)
|
|
|
|
joinCommunityButton.invitationPending = root.store.isCommunityRequestPending(communityData.id)
|
|
|
|
}
|
2023-06-14 08:42:52 +00:00
|
|
|
onClosed: destroy()
|
2022-10-21 10:09:17 +00:00
|
|
|
}
|
2022-09-22 07:13:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-16 19:05:05 +00:00
|
|
|
ChatsLoadingPanel {
|
|
|
|
chatSectionModule: root.communitySectionModule
|
|
|
|
width: parent.width
|
2023-03-30 11:19:28 +00:00
|
|
|
anchors.top: joinCommunityButton.visible ? joinCommunityButton.bottom : communityHeader.bottom
|
2023-05-02 09:37:12 +00:00
|
|
|
anchors.topMargin: active ? Style.current.halfPadding : 0
|
2023-03-16 19:05:05 +00:00
|
|
|
}
|
|
|
|
|
2022-12-01 16:58:37 +00:00
|
|
|
StatusMenu {
|
2022-07-25 19:20:12 +00:00
|
|
|
id: adminPopupMenu
|
2023-06-14 16:00:41 +00:00
|
|
|
enabled: root.isSectionAdmin
|
2022-07-25 19:20:12 +00:00
|
|
|
|
2022-07-25 20:30:34 +00:00
|
|
|
property bool showInviteButton: false
|
|
|
|
|
2022-07-25 19:20:12 +00:00
|
|
|
onClosed: adminPopupMenu.showInviteButton = false
|
|
|
|
|
2022-12-01 16:58:37 +00:00
|
|
|
StatusAction {
|
2022-07-25 19:20:12 +00:00
|
|
|
objectName: "createCommunityChannelBtn"
|
|
|
|
text: qsTr("Create channel")
|
|
|
|
icon.name: "channel"
|
|
|
|
onTriggered: Global.openPopup(createChannelPopup)
|
|
|
|
}
|
|
|
|
|
2022-12-01 16:58:37 +00:00
|
|
|
StatusAction {
|
2022-07-25 19:20:12 +00:00
|
|
|
objectName: "createCommunityCategoryBtn"
|
|
|
|
text: qsTr("Create category")
|
|
|
|
icon.name: "channel-category"
|
|
|
|
onTriggered: Global.openPopup(createCategoryPopup)
|
|
|
|
}
|
|
|
|
|
|
|
|
StatusMenuSeparator {
|
|
|
|
visible: invitePeopleBtn.enabled
|
|
|
|
}
|
|
|
|
|
2022-12-01 16:58:37 +00:00
|
|
|
StatusAction {
|
2022-07-25 19:20:12 +00:00
|
|
|
id: invitePeopleBtn
|
|
|
|
text: qsTr("Invite people")
|
|
|
|
icon.name: "share-ios"
|
|
|
|
enabled: communityData.canManageUsers && adminPopupMenu.showInviteButton
|
2022-09-28 21:07:18 +00:00
|
|
|
onTriggered: {
|
|
|
|
Global.openInviteFriendsToCommunityPopup(root.communityData,
|
2022-10-25 17:15:44 +00:00
|
|
|
root.communitySectionModule,
|
|
|
|
null)
|
2022-09-28 21:07:18 +00:00
|
|
|
}
|
2022-07-25 19:20:12 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-07-13 12:29:38 +00:00
|
|
|
StatusScrollView {
|
2022-07-14 11:03:36 +00:00
|
|
|
id: scrollView
|
2023-03-30 11:19:28 +00:00
|
|
|
anchors.top: joinCommunityButton.visible ? joinCommunityButton.bottom : communityHeader.bottom
|
2023-05-02 09:37:12 +00:00
|
|
|
anchors.topMargin: Style.current.halfPadding
|
2022-05-13 15:27:26 +00:00
|
|
|
anchors.bottom: createChatOrCommunity.top
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
2021-07-02 12:34:01 +00:00
|
|
|
|
|
|
|
width: parent.width
|
|
|
|
|
2020-12-11 20:29:46 +00:00
|
|
|
ScrollBar.horizontal.policy: ScrollBar.AlwaysOff
|
2023-05-31 20:58:23 +00:00
|
|
|
|
|
|
|
contentWidth: availableWidth
|
2021-07-02 12:34:01 +00:00
|
|
|
contentHeight: communityChatListAndCategories.height
|
2022-05-06 19:30:17 +00:00
|
|
|
+ bannerColumn.height
|
2023-05-31 20:58:23 +00:00
|
|
|
+ bannerColumn.anchors.topMargin
|
2021-07-02 12:34:01 +00:00
|
|
|
|
|
|
|
StatusChatListAndCategories {
|
|
|
|
id: communityChatListAndCategories
|
2023-05-31 20:58:23 +00:00
|
|
|
width: scrollView.availableWidth
|
2023-06-14 16:00:41 +00:00
|
|
|
draggableItems: root.isSectionAdmin
|
|
|
|
draggableCategories: root.isSectionAdmin
|
2021-11-26 15:37:57 +00:00
|
|
|
|
|
|
|
model: root.communitySectionModule.model
|
2022-07-22 11:24:28 +00:00
|
|
|
highlightItem: !root.store.openCreateChat
|
|
|
|
|
2021-11-26 15:37:57 +00:00
|
|
|
onChatItemSelected: {
|
2022-07-22 11:24:28 +00:00
|
|
|
Global.closeCreateChatView()
|
2023-01-27 15:24:00 +00:00
|
|
|
root.communitySectionModule.setActiveItem(id)
|
2021-11-26 15:37:57 +00:00
|
|
|
}
|
2021-07-28 12:40:51 +00:00
|
|
|
|
2023-06-14 16:00:41 +00:00
|
|
|
showCategoryActionButtons: root.isSectionAdmin
|
|
|
|
showPopupMenu: root.isSectionAdmin && communityData.canManageUsers
|
2021-07-02 12:34:01 +00:00
|
|
|
|
2022-09-14 23:00:18 +00:00
|
|
|
onChatItemUnmuted: root.communitySectionModule.unmuteChat(id)
|
2023-03-20 15:07:16 +00:00
|
|
|
onChatItemReordered: function(categoryId, chatId, to) {
|
|
|
|
root.store.reorderCommunityChat(categoryId, chatId, to);
|
2022-02-01 22:41:45 +00:00
|
|
|
}
|
2022-01-25 14:51:38 +00:00
|
|
|
onChatListCategoryReordered: root.store.reorderCommunityCategories(categoryId, to)
|
2021-07-02 12:34:01 +00:00
|
|
|
|
2022-01-31 13:33:42 +00:00
|
|
|
onCategoryAddButtonClicked: Global.openPopup(createChannelPopup, {
|
|
|
|
categoryId: id
|
|
|
|
})
|
2021-07-02 12:34:01 +00:00
|
|
|
|
2022-12-01 16:58:37 +00:00
|
|
|
popupMenu: StatusMenu {
|
|
|
|
StatusAction {
|
2022-04-04 11:26:30 +00:00
|
|
|
text: qsTr("Create channel")
|
2021-07-02 12:34:01 +00:00
|
|
|
icon.name: "channel"
|
2023-06-14 16:00:41 +00:00
|
|
|
enabled: root.isSectionAdmin
|
2022-01-06 15:54:13 +00:00
|
|
|
onTriggered: Global.openPopup(createChannelPopup)
|
2021-07-02 12:34:01 +00:00
|
|
|
}
|
|
|
|
|
2022-12-01 16:58:37 +00:00
|
|
|
StatusAction {
|
2022-04-04 11:26:30 +00:00
|
|
|
text: qsTr("Create category")
|
2021-07-02 12:34:01 +00:00
|
|
|
icon.name: "channel-category"
|
2023-06-14 16:00:41 +00:00
|
|
|
enabled: root.isSectionAdmin
|
2022-01-28 00:02:06 +00:00
|
|
|
onTriggered: Global.openPopup(createCategoryPopup)
|
2021-07-02 12:34:01 +00:00
|
|
|
}
|
2020-12-11 20:29:46 +00:00
|
|
|
|
2021-07-02 12:34:01 +00:00
|
|
|
StatusMenuSeparator {}
|
2021-06-25 09:13:54 +00:00
|
|
|
|
2022-12-01 16:58:37 +00:00
|
|
|
StatusAction {
|
2022-04-04 11:26:30 +00:00
|
|
|
text: qsTr("Invite people")
|
2021-07-02 12:34:01 +00:00
|
|
|
icon.name: "share-ios"
|
2022-01-10 16:44:54 +00:00
|
|
|
enabled: communityData.canManageUsers
|
2022-09-28 21:07:18 +00:00
|
|
|
onTriggered: {
|
|
|
|
Global.openInviteFriendsToCommunityPopup(root.communityData,
|
2022-10-25 17:15:44 +00:00
|
|
|
root.communitySectionModule,
|
|
|
|
null)
|
2022-09-28 21:07:18 +00:00
|
|
|
}
|
2021-07-02 12:34:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-01 16:58:37 +00:00
|
|
|
categoryPopupMenu: StatusMenu {
|
2023-05-30 17:51:57 +00:00
|
|
|
id: contextMenuCategory
|
2023-02-08 22:58:14 +00:00
|
|
|
property var categoryItem
|
2021-06-25 09:13:54 +00:00
|
|
|
|
2023-05-30 17:51:57 +00:00
|
|
|
MuteChatMenuItem {
|
|
|
|
enabled: !!categoryItem && !categoryItem.muted
|
|
|
|
title: qsTr("Mute category")
|
|
|
|
onMuteTriggered: {
|
|
|
|
root.communitySectionModule.muteCategory(categoryItem.itemId, interval)
|
|
|
|
contextMenuCategory.close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-01 16:58:37 +00:00
|
|
|
StatusAction {
|
2023-05-30 17:51:57 +00:00
|
|
|
enabled: !!categoryItem && categoryItem.muted
|
|
|
|
text: qsTr("Unmute category")
|
2022-06-29 14:30:40 +00:00
|
|
|
icon.name: "notification"
|
|
|
|
onTriggered: {
|
2023-05-30 17:51:57 +00:00
|
|
|
root.communitySectionModule.unmuteCategory(categoryItem.itemId)
|
2022-06-29 14:30:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-01 16:58:37 +00:00
|
|
|
StatusAction {
|
2022-08-16 19:39:32 +00:00
|
|
|
objectName: "editCategoryMenuItem"
|
2023-06-14 16:00:41 +00:00
|
|
|
enabled: root.isSectionAdmin
|
2022-04-04 11:26:30 +00:00
|
|
|
text: qsTr("Edit Category")
|
2021-07-02 12:34:01 +00:00
|
|
|
icon.name: "edit"
|
|
|
|
onTriggered: {
|
2022-02-01 00:32:53 +00:00
|
|
|
Global.openPopup(createCategoryPopup, {
|
|
|
|
isEdit: true,
|
2022-02-01 15:31:05 +00:00
|
|
|
channels: [],
|
2023-02-08 22:58:14 +00:00
|
|
|
categoryId: categoryItem.itemId,
|
|
|
|
categoryName: categoryItem.name
|
2022-02-01 00:32:53 +00:00
|
|
|
})
|
2021-07-02 12:34:01 +00:00
|
|
|
}
|
|
|
|
}
|
2021-06-25 09:13:54 +00:00
|
|
|
|
2021-07-02 12:34:01 +00:00
|
|
|
StatusMenuSeparator {
|
2023-06-14 16:00:41 +00:00
|
|
|
visible: root.isSectionAdmin
|
2021-07-02 12:34:01 +00:00
|
|
|
}
|
2021-06-25 09:13:54 +00:00
|
|
|
|
2022-12-01 16:58:37 +00:00
|
|
|
StatusAction {
|
2022-08-16 19:39:32 +00:00
|
|
|
objectName: "deleteCategoryMenuItem"
|
2023-06-14 16:00:41 +00:00
|
|
|
enabled: root.isSectionAdmin
|
2022-04-04 11:26:30 +00:00
|
|
|
text: qsTr("Delete Category")
|
2021-07-02 12:34:01 +00:00
|
|
|
icon.name: "delete"
|
2022-12-01 16:58:37 +00:00
|
|
|
type: StatusAction.Type.Danger
|
2021-07-02 12:34:01 +00:00
|
|
|
onTriggered: {
|
2021-12-07 20:33:12 +00:00
|
|
|
Global.openPopup(deleteCategoryConfirmationDialogComponent, {
|
2023-04-03 20:21:50 +00:00
|
|
|
"header.title": qsTr("Delete '%1' category").arg(categoryItem.name),
|
|
|
|
confirmationText: qsTr("Are you sure you want to delete '%1' category? Channels inside the category won't be deleted.")
|
2023-02-08 22:58:14 +00:00
|
|
|
.arg(categoryItem.name),
|
|
|
|
categoryId: categoryItem.itemId
|
2021-07-02 12:34:01 +00:00
|
|
|
})
|
|
|
|
}
|
2021-06-25 09:13:54 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-01 15:58:36 +00:00
|
|
|
chatListPopupMenu: ChatContextMenuView {
|
2021-11-03 19:35:12 +00:00
|
|
|
id: chatContextMenuView
|
2022-03-07 14:56:05 +00:00
|
|
|
emojiPopup: root.emojiPopup
|
2021-12-09 12:53:40 +00:00
|
|
|
|
2023-02-08 22:58:14 +00:00
|
|
|
// TODO pass the chatModel in its entirety instead of fetching the JSOn using just the id
|
2021-07-02 12:34:01 +00:00
|
|
|
openHandler: function (id) {
|
2023-01-27 15:24:00 +00:00
|
|
|
try {
|
|
|
|
let jsonObj = root.communitySectionModule.getItemAsJson(id)
|
|
|
|
let obj = JSON.parse(jsonObj)
|
|
|
|
if (obj.error) {
|
|
|
|
console.error("error parsing chat item json object, id: ", id, " error: ", obj.error)
|
|
|
|
close()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
currentFleet = root.communitySectionModule.getCurrentFleet()
|
|
|
|
isCommunityChat = root.communitySectionModule.isCommunity()
|
2023-06-14 16:00:41 +00:00
|
|
|
amIChatAdmin = root.isSectionAdmin
|
2023-01-27 15:24:00 +00:00
|
|
|
chatId = obj.itemId
|
|
|
|
chatName = obj.name
|
|
|
|
chatDescription = obj.description
|
|
|
|
chatIcon = obj.icon
|
|
|
|
chatEmoji = obj.emoji
|
|
|
|
chatColor = obj.color
|
|
|
|
chatType = obj.type
|
|
|
|
chatMuted = obj.muted
|
|
|
|
channelPosition = obj.position
|
|
|
|
chatCategoryId = obj.categoryId
|
|
|
|
} catch (e) {
|
|
|
|
console.error("error parsing chat item json object, id: ", id, " error: ", e)
|
2021-12-09 12:53:40 +00:00
|
|
|
close()
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
onMuteChat: {
|
2023-05-26 12:54:10 +00:00
|
|
|
root.communitySectionModule.muteChat(chatId, interval)
|
2021-12-09 12:53:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
onUnmuteChat: {
|
2021-12-21 09:26:13 +00:00
|
|
|
root.communitySectionModule.unmuteChat(chatId)
|
2021-07-02 12:34:01 +00:00
|
|
|
}
|
2021-12-08 11:10:34 +00:00
|
|
|
|
|
|
|
onMarkAllMessagesRead: {
|
2021-12-21 09:26:13 +00:00
|
|
|
root.communitySectionModule.markAllMessagesRead(chatId)
|
2021-12-08 11:10:34 +00:00
|
|
|
}
|
2021-12-08 13:06:31 +00:00
|
|
|
|
|
|
|
onClearChatHistory: {
|
2021-12-21 09:26:13 +00:00
|
|
|
root.communitySectionModule.clearChatHistory(chatId)
|
|
|
|
}
|
|
|
|
|
|
|
|
onRequestAllHistoricMessages: {
|
|
|
|
// Not Refactored Yet - Check in the `master` branch if this is applicable here.
|
|
|
|
}
|
|
|
|
|
|
|
|
onLeaveChat: {
|
|
|
|
root.communitySectionModule.leaveChat(chatId)
|
|
|
|
}
|
|
|
|
|
2022-01-25 12:09:27 +00:00
|
|
|
onDeleteCommunityChat: root.store.removeCommunityChat(chatId)
|
2021-12-21 09:26:13 +00:00
|
|
|
|
|
|
|
onDownloadMessages: {
|
2022-06-22 07:43:30 +00:00
|
|
|
root.communitySectionModule.downloadMessages(chatId, file)
|
2021-12-21 09:26:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
onDisplayProfilePopup: {
|
2022-01-05 15:50:03 +00:00
|
|
|
Global.openProfilePopup(publicKey)
|
2021-12-21 09:26:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
onEditCommunityChannel: {
|
2022-01-31 18:57:05 +00:00
|
|
|
communitySectionModule.editCommunityChannel(
|
|
|
|
chatId,
|
|
|
|
newName,
|
|
|
|
newDescription,
|
2022-03-07 14:56:05 +00:00
|
|
|
newEmoji,
|
2022-03-10 19:28:37 +00:00
|
|
|
newColor,
|
2022-01-31 18:57:05 +00:00
|
|
|
newCategory,
|
|
|
|
channelPosition // TODO change this to the signal once it is modifiable
|
|
|
|
)
|
2021-12-21 09:26:13 +00:00
|
|
|
}
|
2021-07-02 12:34:01 +00:00
|
|
|
}
|
2021-05-16 15:16:42 +00:00
|
|
|
}
|
|
|
|
|
2022-05-06 19:30:17 +00:00
|
|
|
Column {
|
|
|
|
id: bannerColumn
|
2022-07-14 11:03:36 +00:00
|
|
|
width: scrollView.availableWidth
|
2021-07-02 12:34:01 +00:00
|
|
|
anchors.top: communityChatListAndCategories.bottom
|
2022-05-06 19:30:17 +00:00
|
|
|
anchors.topMargin: Style.current.padding
|
|
|
|
spacing: Style.current.bigPadding
|
|
|
|
|
|
|
|
Loader {
|
2023-06-14 16:00:41 +00:00
|
|
|
active: root.isSectionAdmin &&
|
2022-05-06 19:30:17 +00:00
|
|
|
(!localAccountSensitiveSettings.hiddenCommunityWelcomeBanners ||
|
2022-09-15 22:17:51 +00:00
|
|
|
!localAccountSensitiveSettings.hiddenCommunityWelcomeBanners.includes(communityData.id))
|
2022-05-06 19:30:17 +00:00
|
|
|
width: parent.width
|
2023-01-10 12:26:39 +00:00
|
|
|
height: item.height
|
2022-05-06 19:30:17 +00:00
|
|
|
sourceComponent: Component {
|
2023-06-26 11:48:45 +00:00
|
|
|
WelcomeBannerPanel {
|
2022-05-06 19:30:17 +00:00
|
|
|
activeCommunity: communityData
|
|
|
|
store: root.store
|
|
|
|
hasAddedContacts: root.hasAddedContacts
|
|
|
|
communitySectionModule: root.communitySectionModule
|
|
|
|
onManageCommunityClicked: root.manageButtonClicked()
|
|
|
|
}
|
2021-10-21 00:41:54 +00:00
|
|
|
}
|
2022-05-25 08:57:57 +00:00
|
|
|
} // Loader
|
2021-07-02 12:34:01 +00:00
|
|
|
|
2022-05-06 19:30:17 +00:00
|
|
|
Loader {
|
2023-06-14 16:00:41 +00:00
|
|
|
active: root.isSectionAdmin &&
|
2022-05-06 19:30:17 +00:00
|
|
|
(!localAccountSensitiveSettings.hiddenCommunityChannelAndCategoriesBanners ||
|
2022-09-15 22:17:51 +00:00
|
|
|
!localAccountSensitiveSettings.hiddenCommunityChannelAndCategoriesBanners.includes(communityData.id))
|
2022-05-06 19:30:17 +00:00
|
|
|
width: parent.width
|
2023-01-10 12:26:39 +00:00
|
|
|
height: item.height
|
2022-05-06 19:30:17 +00:00
|
|
|
sourceComponent: Component {
|
2023-06-26 11:48:45 +00:00
|
|
|
ChannelsAndCategoriesBannerPanel {
|
2022-05-06 19:30:17 +00:00
|
|
|
id: channelsAndCategoriesBanner
|
|
|
|
communityId: communityData.id
|
2022-05-10 16:04:25 +00:00
|
|
|
onAddMembersClicked: {
|
|
|
|
Global.openPopup(createChannelPopup);
|
|
|
|
}
|
|
|
|
onAddCategoriesClicked: {
|
|
|
|
Global.openPopup(createCategoryPopup);
|
|
|
|
}
|
2022-05-06 19:30:17 +00:00
|
|
|
}
|
|
|
|
}
|
2022-05-25 08:57:57 +00:00
|
|
|
} // Loader
|
2022-05-06 19:30:17 +00:00
|
|
|
|
|
|
|
Loader {
|
2023-06-14 16:00:41 +00:00
|
|
|
active: root.communityData.memberRole === Constants.memberRole.owner &&
|
2022-09-15 22:17:51 +00:00
|
|
|
(!localAccountSensitiveSettings.hiddenCommunityBackUpBanners ||
|
|
|
|
!localAccountSensitiveSettings.hiddenCommunityBackUpBanners.includes(communityData.id))
|
2022-05-06 19:30:17 +00:00
|
|
|
width: parent.width
|
2023-01-10 12:26:39 +00:00
|
|
|
height: item.height
|
2022-05-06 19:30:17 +00:00
|
|
|
sourceComponent: Component {
|
|
|
|
BackUpCommuntyBannerPanel {
|
|
|
|
id: backupBanner
|
|
|
|
communityId: communityData.id
|
|
|
|
onBackupButtonClicked: {
|
|
|
|
Global.openPopup(transferOwnershipPopup, {
|
|
|
|
privateKey: communitySectionModule.exportCommunity(communityData.id),
|
|
|
|
store: root.store
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
2021-06-29 17:42:13 +00:00
|
|
|
}
|
2022-05-25 08:57:57 +00:00
|
|
|
} // Loader
|
|
|
|
} // Column
|
2023-05-31 20:58:23 +00:00
|
|
|
|
|
|
|
background: Item {
|
|
|
|
TapHandler {
|
2023-06-14 16:00:41 +00:00
|
|
|
enabled: root.isSectionAdmin
|
2023-05-31 20:58:23 +00:00
|
|
|
acceptedButtons: Qt.RightButton
|
|
|
|
onTapped: {
|
|
|
|
adminPopupMenu.showInviteButton = true
|
|
|
|
adminPopupMenu.x = eventPoint.position.x + 4
|
|
|
|
adminPopupMenu.y = eventPoint.position.y + 4
|
|
|
|
adminPopupMenu.open()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-05-25 08:57:57 +00:00
|
|
|
} // ScrollView
|
2021-07-02 12:34:01 +00:00
|
|
|
|
2022-05-13 15:27:26 +00:00
|
|
|
Loader {
|
|
|
|
id: createChatOrCommunity
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
anchors.bottom: parent.bottom
|
2023-05-02 09:37:12 +00:00
|
|
|
anchors.bottomMargin: active ? Style.current.padding : 0
|
2023-06-14 16:00:41 +00:00
|
|
|
active: root.isSectionAdmin
|
2022-05-13 15:27:26 +00:00
|
|
|
sourceComponent: Component {
|
|
|
|
StatusBaseText {
|
2022-07-25 19:20:12 +00:00
|
|
|
id: createChannelOrCategoryBtn
|
2022-07-21 16:16:25 +00:00
|
|
|
objectName: "createChannelOrCategoryBtn"
|
2022-05-13 15:27:26 +00:00
|
|
|
color: Theme.palette.baseColor1
|
|
|
|
height: visible ? implicitHeight : 0
|
|
|
|
text: qsTr("Create channel or category")
|
|
|
|
font.underline: true
|
|
|
|
font.pixelSize: 13
|
|
|
|
textFormat: Text.RichText
|
|
|
|
|
|
|
|
MouseArea {
|
|
|
|
anchors.fill: parent
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
onClicked: {
|
2022-07-25 19:20:12 +00:00
|
|
|
adminPopupMenu.showInviteButton = false
|
|
|
|
adminPopupMenu.popup()
|
2022-07-25 20:30:34 +00:00
|
|
|
adminPopupMenu.y = Qt.binding(() => root.height - adminPopupMenu.height
|
|
|
|
- createChannelOrCategoryBtn.height - 20)
|
2022-05-13 15:27:26 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-02 12:34:01 +00:00
|
|
|
Component {
|
|
|
|
id: createChannelPopup
|
|
|
|
CreateChannelPopup {
|
2021-07-07 12:45:11 +00:00
|
|
|
anchors.centerIn: parent
|
2022-03-07 14:56:05 +00:00
|
|
|
emojiPopup: root.emojiPopup
|
2022-03-10 19:28:37 +00:00
|
|
|
onCreateCommunityChannel: function (chName, chDescription, chEmoji, chColor,
|
|
|
|
chCategoryId) {
|
|
|
|
root.store.createCommunityChannel(chName, chDescription, chEmoji, chColor,
|
|
|
|
chCategoryId)
|
2022-01-05 15:11:26 +00:00
|
|
|
}
|
2021-07-02 12:34:01 +00:00
|
|
|
onClosed: {
|
|
|
|
destroy()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: createCategoryPopup
|
|
|
|
CreateCategoryPopup {
|
2021-07-09 10:09:03 +00:00
|
|
|
anchors.centerIn: parent
|
2021-10-22 20:49:47 +00:00
|
|
|
store: root.store
|
2021-07-02 12:34:01 +00:00
|
|
|
onClosed: {
|
|
|
|
destroy()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Component {
|
|
|
|
id: deleteCategoryConfirmationDialogComponent
|
|
|
|
ConfirmationDialog {
|
|
|
|
property string categoryId
|
2022-08-16 19:39:32 +00:00
|
|
|
confirmButtonObjectName: "confirmDeleteCategoryButton"
|
2021-07-02 12:34:01 +00:00
|
|
|
btnType: "warn"
|
|
|
|
showCancelButton: true
|
|
|
|
onClosed: {
|
|
|
|
destroy()
|
|
|
|
}
|
|
|
|
onCancelButtonClicked: {
|
|
|
|
close();
|
|
|
|
}
|
|
|
|
onConfirmButtonClicked: function(){
|
2022-02-01 00:32:53 +00:00
|
|
|
const error = root.store.deleteCommunityCategory(categoryId);
|
|
|
|
if (error) {
|
|
|
|
deleteError.text = error
|
|
|
|
return deleteError.open()
|
|
|
|
}
|
|
|
|
close();
|
2021-07-02 12:34:01 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
MessageDialog {
|
|
|
|
id: deleteError
|
2022-04-04 11:26:30 +00:00
|
|
|
title: qsTr("Error deleting the category")
|
2021-07-02 12:34:01 +00:00
|
|
|
icon: StandardIcon.Critical
|
|
|
|
standardButtons: StandardButton.Ok
|
|
|
|
}
|
|
|
|
|
2021-11-11 10:45:59 +00:00
|
|
|
Component {
|
|
|
|
id: transferOwnershipPopup
|
|
|
|
TransferOwnershipPopup {
|
|
|
|
anchors.centerIn: parent
|
|
|
|
onClosed: {
|
|
|
|
let hiddenBannerIds = localAccountSensitiveSettings.hiddenCommunityBackUpBanners || []
|
|
|
|
if (hiddenBannerIds.includes(root.store.activeCommunity.id)) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
hiddenBannerIds.push(root.store.activeCommunity.id)
|
|
|
|
localAccountSensitiveSettings.hiddenCommunityBackUpBanners = hiddenBannerIds
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-12-11 20:29:46 +00:00
|
|
|
}
|