mirror of
https://github.com/status-im/status-desktop.git
synced 2025-02-03 18:25:33 +00:00
f0b39ce4f6
The openPopup function was declared in AppMain and used via dynamic scoping in many places in the application. Moved function to Global component and updated all places to call it via Global instead. Closes #4267
51 lines
1.6 KiB
QML
51 lines
1.6 KiB
QML
import QtQuick 2.13
|
|
|
|
import utils 1.0
|
|
import shared 1.0
|
|
|
|
MouseArea {
|
|
z: 50
|
|
enabled: !placeholderMessage
|
|
|
|
//TODO remove dynamic scoping
|
|
// property bool isHovered: false
|
|
// property bool isSticker: false
|
|
// property bool placeholderMessage: false
|
|
// property var isMessageActive
|
|
property bool isActivityCenterMessage: false
|
|
property var messageContextMenu
|
|
signal setMessageActive(string messageId, bool active)
|
|
signal clickMessage(bool isProfileClick, bool isSticker, bool isImage)
|
|
|
|
cursorShape: !enabled ? Qt.PointingHandCursor : undefined
|
|
|
|
acceptedButtons: Qt.LeftButton | Qt.RightButton
|
|
|
|
onClicked: {
|
|
if (isActivityCenterMessage) {
|
|
return clickMessage(false, isSticker, false)
|
|
}
|
|
if (mouse.button === Qt.RightButton) {
|
|
if (!!messageContextMenu) {
|
|
// Set parent, X & Y positions for the messageContextMenu
|
|
messageContextMenu.parent = root
|
|
messageContextMenu.setXPosition = function() { return (mouse.x)};
|
|
messageContextMenu.setYPosition = function() { return (mouse.y)};
|
|
}
|
|
clickMessage(false, isSticker, false)
|
|
if (typeof isMessageActive !== "undefined") {
|
|
setMessageActive(messageId, true)
|
|
}
|
|
return;
|
|
}
|
|
if (mouse.button === Qt.LeftButton && isSticker && stickersLoaded) {
|
|
if (isHovered) {
|
|
isHovered = false;
|
|
}
|
|
//TODO remove dynamic scoping
|
|
Global.openPopup(statusStickerPackClickPopup, {packId: stickerPackId} )
|
|
return;
|
|
}
|
|
}
|
|
}
|