167 lines
5.7 KiB
QML
167 lines
5.7 KiB
QML
import QtQuick 2.13
|
|
import QtQuick.Controls 2.13
|
|
import QtQuick.Layouts 1.13
|
|
import "./"
|
|
import "../../../../shared"
|
|
import "../../../../imports"
|
|
|
|
import StatusQ.Popups 0.1
|
|
|
|
StatusPopupMenu {
|
|
|
|
property var chatItem
|
|
property bool communityActive: chatsModel.communities.activeCommunity.active
|
|
|
|
StatusMenuItem {
|
|
id: viewProfileMenuItem
|
|
text: {
|
|
if (chatItem) {
|
|
switch (chatItem.chatType) {
|
|
case Constants.chatTypeOneToOne:
|
|
//% "View Profile"
|
|
return qsTrId("view-profile")
|
|
case Constants.chatTypePrivateGroupChat:
|
|
//% "View Group"
|
|
return qsTrId("view-group")
|
|
}
|
|
}
|
|
return ""
|
|
}
|
|
icon.name: "group-chat"
|
|
enabled: chatItem &&
|
|
(chatItem.chatType === Constants.chatTypeOneToOne ||
|
|
chatItem.chatType === Constants.chatTypePrivateGroupChat)
|
|
onTriggered: {
|
|
if (chatItem.chatType === Constants.chatTypeOneToOne) {
|
|
const userProfileImage = appMain.getProfileImage(chatItem.id)
|
|
return openProfilePopup(
|
|
chatItem.name,
|
|
chatItem.id,
|
|
userProfileImage || chatItem.identicon,
|
|
"",
|
|
chatItem.name
|
|
)
|
|
}
|
|
if (chatItem.chatType === Constants.chatTypePrivateGroupChat) {
|
|
return openPopup(groupInfoPopupComponent, {
|
|
channel: chatItem,
|
|
channelType: GroupInfoPopup.ChannelType.ContextChannel
|
|
})
|
|
}
|
|
}
|
|
}
|
|
|
|
StatusMenuSeparator {
|
|
visible: viewProfileMenuItem.enabled
|
|
}
|
|
|
|
|
|
Action {
|
|
enabled: profileModel.fleets.fleet == Constants.waku_prod || profileModel.fleets.fleet === Constants.waku_test
|
|
//% "Test WakuV2 - requestAllHistoricMessages"
|
|
text: qsTrId("test-wakuv2---requestallhistoricmessages")
|
|
onTriggered: chatsModel.requestAllHistoricMessages()
|
|
}
|
|
|
|
StatusMenuItem {
|
|
text: chatItem && chatItem.muted ?
|
|
//% "Unmute chat"
|
|
qsTrId("unmute-chat") :
|
|
//% "Mute chat"
|
|
qsTrId("mute-chat")
|
|
icon.name: "notification"
|
|
enabled: chatItem && chatItem.chatType !== Constants.chatTypePrivateGroupChat
|
|
onTriggered: {
|
|
if (chatItem && chatItem.muted) {
|
|
return chatsModel.channelView.unmuteChatItem(chatItem.id)
|
|
}
|
|
chatsModel.channelView.muteChatItem(chatItem.id)
|
|
}
|
|
}
|
|
|
|
StatusMenuItem {
|
|
//% "Mark as Read"
|
|
text: qsTrId("mark-as-read")
|
|
icon.name: "checkmark-circle"
|
|
enabled: chatItem && chatItem.chatType !== Constants.chatTypePrivateGroupChat
|
|
onTriggered: chatsModel.channelView.markChatItemAsRead(chatItem.id)
|
|
}
|
|
|
|
StatusMenuItem {
|
|
//% "Clear history"
|
|
text: qsTrId("clear-history")
|
|
icon.name: "close-circle"
|
|
onTriggered: chatsModel.channelView.clearChatHistory(chatItem.id)
|
|
}
|
|
|
|
StatusMenuItem {
|
|
//% "Edit Channel"
|
|
text: qsTrId("edit-channel")
|
|
icon.name: "edit"
|
|
enabled: communityActive &&
|
|
chatsModel.communities.activeCommunity.admin
|
|
onTriggered: openPopup(editChannelPopup, {
|
|
communityId: chatsModel.communities.activeCommunity.id,
|
|
channel: chatItem
|
|
})
|
|
}
|
|
|
|
StatusMenuSeparator {
|
|
visible: deleteOrLeaveMenuItem.enabled
|
|
}
|
|
|
|
StatusMenuItem {
|
|
id: deleteOrLeaveMenuItem
|
|
text: {
|
|
if (communityActive) {
|
|
return qsTr("Delete Channel")
|
|
}
|
|
return chatItem && chatItem.chatType === Constants.chatTypeOneToOne ?
|
|
//% "Delete chat"
|
|
qsTrId("delete-chat") :
|
|
//% "Leave chat"
|
|
qsTrId("leave-chat")
|
|
}
|
|
icon.name: chatItem && chatItem.chatType === Constants.chatTypeOneToOne || communityActive ? "delete" : "arrow-right"
|
|
icon.width: chatItem && chatItem.chatType === Constants.chatTypeOneToOne || communityActive ? 18 : 14
|
|
iconRotation: chatItem && chatItem.chatType === Constants.chatTypeOneToOne || communityActive ? 0 : 180
|
|
|
|
type: StatusMenuItem.Type.Danger
|
|
onTriggered: {
|
|
let label = chatItem && chatItem.chatType === Constants.chatTypeOneToOne ?
|
|
//% "Delete chat"
|
|
qsTrId("delete-chat") :
|
|
//% "Leave chat"
|
|
qsTrId("leave-chat")
|
|
openPopup(deleteChatConfirmationDialogComponent, {
|
|
title: label,
|
|
confirmButtonLabel: label,
|
|
chatId: chatItem.id
|
|
})
|
|
}
|
|
|
|
enabled: !communityActive || chatsModel.communities.activeCommunity.admin
|
|
}
|
|
|
|
Component {
|
|
id: deleteChatConfirmationDialogComponent
|
|
ConfirmationDialog {
|
|
property string chatId
|
|
btnType: "warn"
|
|
confirmationText: communityActive ? qsTr("Are you sure you want to delete this channel?") :
|
|
qsTr("Are you sure you want to leave this chat?")
|
|
onClosed: {
|
|
destroy()
|
|
}
|
|
onConfirmButtonClicked: {
|
|
if (communityActive) {
|
|
chatsModel.communities.deleteCommunityChat(chatsModel.communities.activeCommunity.id, chatId)
|
|
} else {
|
|
chatsModel.channelView.leaveChat(chatId)
|
|
}
|
|
close();
|
|
}
|
|
}
|
|
}
|
|
}
|