2020-11-30 17:03:52 +00:00
|
|
|
import QtQuick 2.13
|
2020-05-27 22:59:17 +00:00
|
|
|
import "../../../../shared"
|
2021-10-14 12:37:59 +00:00
|
|
|
import "../../../../shared/panels"
|
2021-05-23 13:44:14 +00:00
|
|
|
import "../../../../shared/status"
|
|
|
|
import "../../../../shared/status/core"
|
2021-09-28 15:04:06 +00:00
|
|
|
|
|
|
|
import utils 1.0
|
2020-07-15 21:04:14 +00:00
|
|
|
import "./MessageComponents"
|
2020-06-04 10:30:49 +00:00
|
|
|
import "../components"
|
2020-05-27 22:59:17 +00:00
|
|
|
|
2020-05-28 19:32:14 +00:00
|
|
|
Item {
|
2021-07-16 15:02:47 +00:00
|
|
|
id: root
|
|
|
|
width: parent.width
|
|
|
|
anchors.right: !isCurrentUser ? undefined : parent.right
|
2021-09-20 22:07:31 +00:00
|
|
|
height: visible ? childrenRect.height : 0
|
2021-07-16 15:02:47 +00:00
|
|
|
z: (typeof chatLogView === "undefined") ? 1 : (chatLogView.count - index)
|
2020-06-16 21:24:43 +00:00
|
|
|
property string fromAuthor: "0x0011223344556677889910"
|
2020-05-28 15:55:52 +00:00
|
|
|
property string userName: "Jotaro Kujo"
|
2020-12-08 15:45:43 +00:00
|
|
|
property string alias: ""
|
|
|
|
property string localName: ""
|
2020-05-28 15:55:52 +00:00
|
|
|
property string message: "That's right. We're friends... Of justice, that is."
|
2020-07-10 15:24:52 +00:00
|
|
|
property string plainText: "That's right. We're friends... Of justice, that is."
|
2020-07-20 17:04:33 +00:00
|
|
|
property string identicon: "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAZAAAAGQAQMAAAC6caSPAAAABlBMVEXMzMz////TjRV2AAAAAWJLR0QB/wIt3gAAACpJREFUGBntwYEAAAAAw6D7Uw/gCtUAAAAAAAAAAAAAAAAAAAAAAAAAgBNPsAABAjKCqQAAAABJRU5ErkJggg=="
|
2020-05-28 15:55:52 +00:00
|
|
|
property bool isCurrentUser: false
|
2020-06-11 17:50:36 +00:00
|
|
|
property string timestamp: "1234567"
|
2020-05-28 21:34:04 +00:00
|
|
|
property string sticker: "Qme8vJtyrEHxABcSVGPF95PtozDgUyfr1xGjePmFdZgk9v"
|
2021-07-07 15:58:59 +00:00
|
|
|
property int contentType: 1 // constants don't work in default props
|
2020-06-08 17:29:28 +00:00
|
|
|
property string chatId: "chatId"
|
2020-07-01 18:24:13 +00:00
|
|
|
property string outgoingStatus: ""
|
2020-07-09 15:50:38 +00:00
|
|
|
property string responseTo: ""
|
2020-07-09 17:47:36 +00:00
|
|
|
property string messageId: ""
|
2020-08-12 15:01:03 +00:00
|
|
|
property string emojiReactions: ""
|
2020-07-12 01:03:39 +00:00
|
|
|
property int prevMessageIndex: -1
|
2021-05-23 13:44:14 +00:00
|
|
|
property int nextMessageIndex: -1
|
2020-07-14 15:35:21 +00:00
|
|
|
property bool timeout: false
|
2021-02-01 18:40:55 +00:00
|
|
|
property bool hasMention: false
|
2020-11-25 10:43:36 +00:00
|
|
|
property string linkUrls: ""
|
2020-11-30 17:03:52 +00:00
|
|
|
property bool placeholderMessage: false
|
2021-06-11 17:41:59 +00:00
|
|
|
property bool activityCenterMessage: false
|
2021-05-25 19:34:46 +00:00
|
|
|
property bool pinnedMessage: false
|
2021-06-14 15:40:05 +00:00
|
|
|
property bool read: true
|
2021-05-25 19:38:18 +00:00
|
|
|
property string pinnedBy
|
2021-05-25 19:34:46 +00:00
|
|
|
property bool forceHoverHandler: false // Used to force the HoverHandler to be active (useful for messages in popups)
|
2020-12-11 20:38:10 +00:00
|
|
|
property string communityId: ""
|
2021-03-08 19:24:39 +00:00
|
|
|
property int stickerPackId: -1
|
2021-05-10 19:12:26 +00:00
|
|
|
property int gapFrom: 0
|
|
|
|
property int gapTo: 0
|
2021-06-29 14:49:32 +00:00
|
|
|
property bool isEdit: false
|
|
|
|
property string replaces: ""
|
|
|
|
property bool isEdited: false
|
2021-07-09 14:18:45 +00:00
|
|
|
property bool showEdit: true
|
2021-07-16 15:02:47 +00:00
|
|
|
property var messageContextMenu
|
2021-04-29 19:08:57 +00:00
|
|
|
property string displayUserName: {
|
|
|
|
if (isCurrentUser) {
|
|
|
|
//% "You"
|
|
|
|
return qsTrId("You")
|
|
|
|
}
|
|
|
|
|
|
|
|
if (localName !== "") {
|
|
|
|
return localName
|
|
|
|
}
|
|
|
|
|
|
|
|
if (userName !== "") {
|
|
|
|
return Utils.removeStatusEns(userName)
|
|
|
|
}
|
|
|
|
return Utils.removeStatusEns(alias)
|
|
|
|
}
|
|
|
|
|
2020-06-05 22:20:45 +00:00
|
|
|
property string authorCurrentMsg: "authorCurrentMsg"
|
|
|
|
property string authorPrevMsg: "authorPrevMsg"
|
2020-05-27 22:59:17 +00:00
|
|
|
|
2021-06-23 14:20:44 +00:00
|
|
|
property string prevMsgTimestamp: chatsModel.messageView.messageList.getMessageData(prevMessageIndex, "timestamp")
|
|
|
|
property string nextMsgTimestamp: chatsModel.messageView.messageList.getMessageData(nextMessageIndex, "timestamp")
|
2021-05-23 13:44:14 +00:00
|
|
|
|
2021-02-09 14:53:54 +00:00
|
|
|
property bool shouldRepeatHeader: ((parseInt(timestamp, 10) - parseInt(prevMsgTimestamp, 10)) / 60 / 1000) > Constants.repeatHeaderInterval
|
|
|
|
|
2020-06-24 19:58:17 +00:00
|
|
|
property bool isEmoji: contentType === Constants.emojiType
|
2020-07-17 19:44:25 +00:00
|
|
|
property bool isImage: contentType === Constants.imageType
|
2020-07-30 16:07:41 +00:00
|
|
|
property bool isAudio: contentType === Constants.audioType
|
2020-06-24 19:58:17 +00:00
|
|
|
property bool isStatusMessage: contentType === Constants.systemMessagePrivateGroupType
|
2020-07-09 17:29:19 +00:00
|
|
|
property bool isSticker: contentType === Constants.stickerType
|
2021-06-29 14:49:32 +00:00
|
|
|
property bool isText: contentType === Constants.messageType || contentType === Constants.editType
|
2021-02-01 18:40:55 +00:00
|
|
|
property bool isMessage: isEmoji || isImage || isSticker || isText || isAudio
|
|
|
|
|| contentType === Constants.communityInviteType || contentType === Constants.transactionType
|
2020-06-10 15:14:12 +00:00
|
|
|
|
2021-04-23 15:49:05 +00:00
|
|
|
property bool isExpired: (outgoingStatus === "sending" && (Math.floor(timestamp) + 180000) < Date.now())
|
2020-12-10 11:47:30 +00:00
|
|
|
property bool isStatusUpdate: false
|
2021-07-15 14:59:30 +00:00
|
|
|
property int statusAgeEpoch: 0
|
2020-07-16 17:27:09 +00:00
|
|
|
|
2021-06-21 19:35:32 +00:00
|
|
|
property int replyMessageIndex: chatsModel.messageView.messageList.getMessageIndex(responseTo);
|
|
|
|
property string repliedMessageAuthor: replyMessageIndex > -1 ? chatsModel.messageView.messageList.getMessageData(replyMessageIndex, "userName") : "";
|
|
|
|
property string repliedMessageAuthorPubkey: replyMessageIndex > -1 ? chatsModel.messageView.messageList.getMessageData(replyMessageIndex, "publicKey") : "";
|
2021-04-23 15:49:05 +00:00
|
|
|
property bool repliedMessageAuthorIsCurrentUser: replyMessageIndex > -1 ? repliedMessageAuthorPubkey === profileModel.profile.pubKey : "";
|
2021-06-29 14:49:32 +00:00
|
|
|
property bool repliedMessageIsEdited: replyMessageIndex > -1 ? chatsModel.messageView.messageList.getMessageData(replyMessageIndex, "isEdited") === "true" : false;
|
2021-06-21 19:35:32 +00:00
|
|
|
property string repliedMessageContent: replyMessageIndex > -1 ? chatsModel.messageView.messageList.getMessageData(replyMessageIndex, "message") : "";
|
|
|
|
property int repliedMessageType: replyMessageIndex > -1 ? parseInt(chatsModel.messageView.messageList.getMessageData(replyMessageIndex, "contentType")) : 0;
|
|
|
|
property string repliedMessageImage: replyMessageIndex > -1 ? chatsModel.messageView.messageList.getMessageData(replyMessageIndex, "image") : "";
|
|
|
|
property string repliedMessageUserIdenticon: replyMessageIndex > -1 ? chatsModel.messageView.messageList.getMessageData(replyMessageIndex, "identicon") : "";
|
2021-04-23 15:49:05 +00:00
|
|
|
property string repliedMessageUserImage: replyMessageIndex > -1 ? appMain.getProfileImage(repliedMessageAuthorPubkey, repliedMessageAuthorIsCurrentUser , false) || "" : "";
|
2020-07-09 15:50:38 +00:00
|
|
|
|
2020-09-12 18:22:07 +00:00
|
|
|
property var imageClick: function () {}
|
2020-07-10 15:37:23 +00:00
|
|
|
property var scrollToBottom: function () {}
|
2020-11-30 17:03:52 +00:00
|
|
|
property string userPubKey: {
|
|
|
|
if (contentType === Constants.chatIdentifier) {
|
|
|
|
return chatId
|
|
|
|
}
|
|
|
|
return fromAuthor
|
|
|
|
}
|
|
|
|
property bool useLargeImage: contentType === Constants.chatIdentifier
|
|
|
|
|
2020-12-21 12:08:44 +00:00
|
|
|
property string profileImageSource: !placeholderMessage && appMain.getProfileImage(userPubKey, isCurrentUser, useLargeImage) || ""
|
2020-11-30 17:03:52 +00:00
|
|
|
|
2021-02-01 20:37:50 +00:00
|
|
|
property var emojiReactionsModel: {
|
|
|
|
if (!emojiReactions) {
|
|
|
|
return []
|
|
|
|
}
|
|
|
|
|
|
|
|
try {
|
|
|
|
// group by id
|
|
|
|
var allReactions = Object.values(JSON.parse(emojiReactions))
|
|
|
|
var byEmoji = {}
|
|
|
|
allReactions.forEach(function (reaction) {
|
|
|
|
if (!byEmoji[reaction.emojiId]) {
|
|
|
|
byEmoji[reaction.emojiId] = {
|
|
|
|
emojiId: reaction.emojiId,
|
|
|
|
fromAccounts: [],
|
|
|
|
count: 0,
|
|
|
|
currentUserReacted: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
byEmoji[reaction.emojiId].count++;
|
|
|
|
byEmoji[reaction.emojiId].fromAccounts.push(chatsModel.userNameOrAlias(reaction.from));
|
|
|
|
if (!byEmoji[reaction.emojiId].currentUserReacted && reaction.from === profileModel.profile.pubKey) {
|
|
|
|
byEmoji[reaction.emojiId].currentUserReacted = true
|
|
|
|
}
|
|
|
|
|
|
|
|
})
|
|
|
|
return Object.values(byEmoji)
|
|
|
|
} catch (e) {
|
|
|
|
console.error('Error parsing emoji reactions', e)
|
|
|
|
return []
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-22 08:25:55 +00:00
|
|
|
function startMessageFoundAnimation() {
|
|
|
|
messageLoader.item.startMessageFoundAnimation();
|
|
|
|
}
|
|
|
|
|
2020-11-30 17:03:52 +00:00
|
|
|
Connections {
|
|
|
|
enabled: !placeholderMessage
|
|
|
|
target: profileModel.contacts.list
|
|
|
|
onContactChanged: {
|
|
|
|
if (pubkey === fromAuthor) {
|
2021-02-08 18:46:20 +00:00
|
|
|
const img = appMain.getProfileImage(userPubKey, isCurrentUser, useLargeImage)
|
|
|
|
if (img) {
|
|
|
|
profileImageSource = img
|
|
|
|
}
|
2021-04-23 15:49:05 +00:00
|
|
|
} else if (replyMessageIndex > -1 && pubkey === repliedMessageAuthorPubkey) {
|
|
|
|
const imgReply = appMain.getProfileImage(repliedMessageAuthorPubkey, repliedMessageAuthorIsCurrentUser, false)
|
|
|
|
if (imgReply) {
|
|
|
|
repliedMessageUserImage = imgReply
|
|
|
|
}
|
2020-11-30 17:03:52 +00:00
|
|
|
}
|
|
|
|
}
|
2021-05-06 14:11:08 +00:00
|
|
|
}
|
|
|
|
|
2021-06-29 14:49:32 +00:00
|
|
|
Connections {
|
|
|
|
target: chatsModel.messageView
|
|
|
|
onHideMessage: {
|
|
|
|
// This hack is used because message_list deleteMessage sometimes does not remove the messages (there might be an issue with the delegate model)
|
|
|
|
if(mId === messageId){
|
|
|
|
root.visible = 0;
|
|
|
|
root.height = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-16 09:11:43 +00:00
|
|
|
property var clickMessage: function(isProfileClick, isSticker = false, isImage = false, image = null, emojiOnly = false, hideEmojiPicker = false, isReply = false, isRightClickOnImage = false, imageSource = "") {
|
2021-06-11 17:41:59 +00:00
|
|
|
if (placeholderMessage || activityCenterMessage) {
|
2021-05-28 17:35:21 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-08-03 17:17:03 +00:00
|
|
|
if (!isProfileClick) {
|
|
|
|
SelectedMessage.set(messageId, fromAuthor);
|
|
|
|
}
|
2021-03-08 19:24:39 +00:00
|
|
|
|
2021-07-28 09:52:25 +00:00
|
|
|
messageContextMenu.messageId = root.messageId
|
2021-07-20 15:26:41 +00:00
|
|
|
messageContextMenu.contentType = root.contentType
|
2021-07-28 09:52:25 +00:00
|
|
|
messageContextMenu.linkUrls = root.linkUrls;
|
2021-07-16 15:02:47 +00:00
|
|
|
messageContextMenu.isProfile = !!isProfileClick;
|
2021-07-26 18:44:25 +00:00
|
|
|
messageContextMenu.isCurrentUser = root.isCurrentUser
|
|
|
|
messageContextMenu.isText = root.isText
|
2021-07-16 15:02:47 +00:00
|
|
|
messageContextMenu.isSticker = isSticker;
|
|
|
|
messageContextMenu.emojiOnly = emojiOnly;
|
|
|
|
messageContextMenu.hideEmojiPicker = hideEmojiPicker;
|
|
|
|
messageContextMenu.pinnedMessage = pinnedMessage;
|
2021-07-22 17:08:37 +00:00
|
|
|
messageContextMenu.isCurrentUser = isCurrentUser;
|
2021-08-16 09:11:43 +00:00
|
|
|
messageContextMenu.isRightClickOnImage = isRightClickOnImage
|
|
|
|
messageContextMenu.imageSource = imageSource
|
2021-08-19 13:04:52 +00:00
|
|
|
messageContextMenu.onClickEdit = function() {root.isEdit = true}
|
2021-07-28 09:52:25 +00:00
|
|
|
|
|
|
|
if (isReply) {
|
|
|
|
let nickname = appMain.getUserNickname(repliedMessageAuthor)
|
|
|
|
messageContextMenu.show(repliedMessageAuthor, repliedMessageAuthorPubkey, repliedMessageUserImage || repliedMessageUserIdenticon, plainText, nickname, emojiReactionsModel);
|
|
|
|
} else {
|
|
|
|
let nickname = appMain.getUserNickname(fromAuthor)
|
|
|
|
messageContextMenu.show(userName, fromAuthor, root.profileImageSource || identicon, plainText, nickname, emojiReactionsModel);
|
|
|
|
}
|
|
|
|
|
2021-08-25 20:31:00 +00:00
|
|
|
messageContextMenu.x = messageContextMenu.setXPosition()
|
|
|
|
messageContextMenu.y = messageContextMenu.setYPosition()
|
2020-06-17 12:53:51 +00:00
|
|
|
}
|
|
|
|
|
2020-07-15 21:04:14 +00:00
|
|
|
Loader {
|
2021-09-22 08:25:55 +00:00
|
|
|
id: messageLoader
|
2020-07-15 21:04:14 +00:00
|
|
|
width: parent.width
|
|
|
|
sourceComponent: {
|
|
|
|
switch(contentType) {
|
|
|
|
case Constants.chatIdentifier:
|
|
|
|
return channelIdentifierComponent
|
2020-09-04 11:55:24 +00:00
|
|
|
case Constants.fetchMoreMessagesButton:
|
|
|
|
return fetchMoreMessagesButtonComponent
|
2020-07-15 21:04:14 +00:00
|
|
|
case Constants.systemMessagePrivateGroupType:
|
2020-07-22 12:23:15 +00:00
|
|
|
return privateGroupHeaderComponent
|
2021-05-10 19:12:26 +00:00
|
|
|
case Constants.gapType:
|
|
|
|
return gapComponent
|
2020-07-15 21:04:14 +00:00
|
|
|
default:
|
2021-01-25 20:13:43 +00:00
|
|
|
return isStatusUpdate ? statusUpdateComponent :
|
2021-02-10 20:41:00 +00:00
|
|
|
(appSettings.useCompactMode ? compactMessageComponent : messageComponent)
|
2021-01-25 20:13:43 +00:00
|
|
|
|
2020-06-04 10:30:49 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-27 22:59:17 +00:00
|
|
|
}
|
|
|
|
|
2020-09-07 11:47:00 +00:00
|
|
|
Timer {
|
|
|
|
id: timer
|
|
|
|
}
|
|
|
|
|
2021-05-10 19:12:26 +00:00
|
|
|
Component {
|
|
|
|
id: gapComponent
|
|
|
|
Item {
|
|
|
|
id: wrapper
|
|
|
|
height: childrenRect.height + Style.current.smallPadding * 2
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
Separator {
|
|
|
|
id: sep1
|
|
|
|
}
|
|
|
|
StyledText {
|
|
|
|
id: fetchMoreButton
|
|
|
|
font.weight: Font.Medium
|
|
|
|
font.pixelSize: Style.current.primaryTextFontSize
|
|
|
|
color: Style.current.blue
|
|
|
|
//% "↓ "
|
2021-07-16 20:22:50 +00:00
|
|
|
//% "Fetch messages"
|
|
|
|
text: qsTrId("fetch-messages")
|
2021-05-10 19:12:26 +00:00
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
anchors.top: sep1.bottom
|
|
|
|
anchors.topMargin: Style.current.smallPadding
|
|
|
|
MouseArea {
|
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
anchors.fill: parent
|
|
|
|
onClicked: {
|
2021-06-21 19:35:32 +00:00
|
|
|
chatsModel.messageView.fillGaps(messageId)
|
2021-05-10 19:12:26 +00:00
|
|
|
root.visible = false;
|
|
|
|
root.height = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
StyledText {
|
|
|
|
id: fetchDate
|
|
|
|
anchors.top: fetchMoreButton.bottom
|
|
|
|
anchors.topMargin: 3
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
color: Style.current.secondaryText
|
|
|
|
//% "before %1"
|
2021-07-16 20:22:50 +00:00
|
|
|
//% "Between %1 and %2"
|
|
|
|
text: qsTrId("between--1-and--2").arg(new Date(root.gapFrom*1000)).arg(new Date(root.gapTo*1000))
|
2021-05-10 19:12:26 +00:00
|
|
|
}
|
|
|
|
Separator {
|
|
|
|
anchors.top: fetchDate.bottom
|
|
|
|
anchors.topMargin: Style.current.smallPadding
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-09-04 11:55:24 +00:00
|
|
|
Component {
|
|
|
|
id: fetchMoreMessagesButtonComponent
|
|
|
|
Item {
|
2021-02-17 21:36:06 +00:00
|
|
|
id: wrapper
|
|
|
|
height: childrenRect.height + Style.current.smallPadding * 2
|
2020-09-04 11:55:24 +00:00
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
Separator {
|
|
|
|
id: sep1
|
|
|
|
}
|
2021-07-01 13:48:47 +00:00
|
|
|
Loader {
|
2021-05-23 13:44:14 +00:00
|
|
|
id: fetchLoaderIndicator
|
|
|
|
anchors.top: sep1.bottom
|
|
|
|
anchors.topMargin: Style.current.padding
|
|
|
|
anchors.left: parent.left
|
|
|
|
anchors.right: parent.right
|
|
|
|
active: false
|
|
|
|
sourceComponent: StatusLoadingIndicator {
|
|
|
|
width: 12
|
|
|
|
height: 12
|
|
|
|
}
|
2021-07-01 13:48:47 +00:00
|
|
|
}
|
2020-09-04 11:55:24 +00:00
|
|
|
StyledText {
|
|
|
|
id: fetchMoreButton
|
|
|
|
font.weight: Font.Medium
|
2020-11-25 10:46:18 +00:00
|
|
|
font.pixelSize: Style.current.primaryTextFontSize
|
2020-09-04 11:55:24 +00:00
|
|
|
color: Style.current.blue
|
2020-09-14 12:12:47 +00:00
|
|
|
//% "↓ Fetch more messages"
|
|
|
|
text: qsTrId("load-more-messages")
|
2020-09-04 11:55:24 +00:00
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
anchors.top: sep1.bottom
|
|
|
|
anchors.topMargin: Style.current.smallPadding
|
|
|
|
MouseArea {
|
2021-02-17 21:36:06 +00:00
|
|
|
cursorShape: Qt.PointingHandCursor
|
|
|
|
anchors.fill: parent
|
|
|
|
onClicked: {
|
|
|
|
chatsModel.requestMoreMessages(Constants.fetchRangeLast24Hours);
|
2021-05-23 13:44:14 +00:00
|
|
|
fetchLoaderIndicator.active = true;
|
|
|
|
fetchMoreButton.visible = false;
|
|
|
|
fetchDate.visible = false;
|
2021-02-17 21:36:06 +00:00
|
|
|
timer.setTimeout(function(){
|
2021-06-21 19:35:32 +00:00
|
|
|
chatsModel.messageView.hideLoadingIndicator();
|
2021-05-23 13:44:14 +00:00
|
|
|
fetchLoaderIndicator.active = false;
|
|
|
|
fetchMoreButton.visible = true;
|
|
|
|
fetchDate.visible = true;
|
2021-02-17 21:36:06 +00:00
|
|
|
}, 3000);
|
|
|
|
}
|
2020-09-04 11:55:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
StyledText {
|
|
|
|
id: fetchDate
|
|
|
|
anchors.top: fetchMoreButton.bottom
|
|
|
|
anchors.topMargin: 3
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
2021-03-16 19:19:48 +00:00
|
|
|
color: Style.current.secondaryText
|
2020-09-14 12:12:47 +00:00
|
|
|
//% "before %1"
|
2021-05-23 13:44:14 +00:00
|
|
|
text: qsTrId("before--1").arg((nextMessageIndex > -1 ? new Date(nextMsgTimestamp * 1) : new Date()).toLocaleString(Qt.locale(globalSettings.locale)))
|
2020-09-04 11:55:24 +00:00
|
|
|
}
|
|
|
|
Separator {
|
|
|
|
anchors.top: fetchDate.bottom
|
|
|
|
anchors.topMargin: Style.current.smallPadding
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-15 21:04:14 +00:00
|
|
|
Component {
|
|
|
|
id: channelIdentifierComponent
|
|
|
|
ChannelIdentifier {
|
2020-12-07 23:38:53 +00:00
|
|
|
authorCurrentMsg: root.authorCurrentMsg
|
2020-11-30 17:03:52 +00:00
|
|
|
profileImage: profileImageSource
|
2020-06-10 18:23:18 +00:00
|
|
|
}
|
2020-05-27 22:59:17 +00:00
|
|
|
}
|
|
|
|
|
2020-07-15 21:04:14 +00:00
|
|
|
// Private group Messages
|
|
|
|
Component {
|
|
|
|
id: privateGroupHeaderComponent
|
|
|
|
StyledText {
|
2020-06-25 20:17:42 +00:00
|
|
|
wrapMode: Text.Wrap
|
2020-11-30 17:03:52 +00:00
|
|
|
text: {
|
2020-09-21 15:47:15 +00:00
|
|
|
return `<html>`+
|
|
|
|
`<head>`+
|
|
|
|
`<style type="text/css">`+
|
|
|
|
`a {`+
|
|
|
|
`color: ${Style.current.textColor};`+
|
|
|
|
`text-decoration: none;`+
|
|
|
|
`}`+
|
|
|
|
`</style>`+
|
|
|
|
`</head>`+
|
|
|
|
`<body>`+
|
|
|
|
`${message}`+
|
|
|
|
`</body>`+
|
|
|
|
`</html>`;
|
|
|
|
}
|
2020-07-15 21:04:14 +00:00
|
|
|
visible: isStatusMessage
|
2020-09-21 15:47:15 +00:00
|
|
|
font.pixelSize: 14
|
|
|
|
color: Style.current.secondaryText
|
2020-07-15 21:04:14 +00:00
|
|
|
width: parent.width - 120
|
|
|
|
horizontalAlignment: Text.AlignHCenter
|
|
|
|
anchors.horizontalCenter: parent.horizontalCenter
|
|
|
|
textFormat: Text.RichText
|
2020-12-07 23:38:53 +00:00
|
|
|
topPadding: root.prevMessageIndex === 1 ? Style.current.bigPadding : 0
|
2020-07-09 17:47:36 +00:00
|
|
|
}
|
2020-07-09 15:50:38 +00:00
|
|
|
}
|
2020-05-28 19:32:14 +00:00
|
|
|
|
2020-07-15 21:04:14 +00:00
|
|
|
Component {
|
|
|
|
id: messageComponent
|
|
|
|
NormalMessage {
|
2020-12-07 23:38:53 +00:00
|
|
|
clickMessage: root.clickMessage
|
|
|
|
linkUrls: root.linkUrls
|
|
|
|
isCurrentUser: root.isCurrentUser
|
|
|
|
contentType: root.contentType
|
2020-12-16 20:50:54 +00:00
|
|
|
container: root
|
2020-05-28 19:32:14 +00:00
|
|
|
}
|
2020-07-09 15:50:38 +00:00
|
|
|
}
|
2020-07-10 15:37:23 +00:00
|
|
|
|
2020-12-10 11:47:30 +00:00
|
|
|
Component {
|
|
|
|
id: statusUpdateComponent
|
|
|
|
StatusUpdate {
|
2021-07-15 14:59:30 +00:00
|
|
|
statusAgeEpoch: root.statusAgeEpoch
|
2020-12-16 20:50:54 +00:00
|
|
|
clickMessage: root.clickMessage
|
|
|
|
container: root
|
2021-08-20 09:42:15 +00:00
|
|
|
messageContextMenu: root.messageContextMenu
|
|
|
|
onAddEmoji: {
|
|
|
|
root.clickMessage(isProfileClick, isSticker, isImage , image, emojiOnly, hideEmojiPicker);
|
|
|
|
}
|
2020-12-10 11:47:30 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-15 21:04:14 +00:00
|
|
|
Component {
|
|
|
|
id: compactMessageComponent
|
|
|
|
CompactMessage {
|
2020-12-07 23:38:53 +00:00
|
|
|
clickMessage: root.clickMessage
|
|
|
|
linkUrls: root.linkUrls
|
feat: whitelist gifs (no url extension needed)
Fixes #1377.
Fixes #1479.
Two sites have been added to the whitelist: giphy.com and tenor.com.
`imageUrls` in its entirety has been removed and instead all links are being handle through the message `linkUrls`. This prevents double-handling of urls that may or may not be images.
The logic to automatically show links previews works like this:
1. If the setting "display chat images" is enabled, all links that *contain* ".png", ".jpg", ".jpeg", ".svg", ".gif" will be automatically shown. If the URL doesn't contain the extension, we are not downloading it. This was meant to be somewhat of a security compromise as we do not want to download each and every link posted in a message just to find out its true content type.
2. If the above setting is *disabled*, then we follow the whitelist settings for tenor and giphy. This allows us to preview gifs that do not have a file extension in their url.
feat: bump status-go to the commit that supports the new whitelist (https://github.com/status-im/status-go/pull/2094), and also lets us get link preview data from urls in the whitelist. NOTE: this commit was branched off status-go `develop`, so once it is merged, and we update this PR to the new commit, we will effectively be getting status-go develop changes. We *could* base that status-go PR off of master if it makes things easier.
fix: height on settings update issue
feat: move date/time of message below links
fix: layout issues when changing setting `neverAskAboutUnfurlingAgain`
feat: Add MessageBorder component to aid in showing rounded corners with different radius
2020-12-11 00:53:44 +00:00
|
|
|
isCurrentUser: root.isCurrentUser
|
2020-12-07 23:38:53 +00:00
|
|
|
contentType: root.contentType
|
2021-07-09 14:18:45 +00:00
|
|
|
showEdit: root.showEdit
|
2020-12-16 20:50:54 +00:00
|
|
|
container: root
|
2021-07-16 15:02:47 +00:00
|
|
|
messageContextMenu: root.messageContextMenu
|
|
|
|
onAddEmoji: {
|
|
|
|
root.clickMessage(isProfileClick, isSticker, isImage , image, emojiOnly, hideEmojiPicker);
|
|
|
|
}
|
2020-07-10 15:37:23 +00:00
|
|
|
}
|
2020-05-27 22:59:17 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-28 15:55:52 +00:00
|
|
|
|
|
|
|
/*##^##
|
|
|
|
Designer {
|
2020-07-09 17:29:19 +00:00
|
|
|
D{i:0;formeditorColor:"#ffffff";formeditorZoom:1.75;height:80;width:800}
|
2020-05-28 15:55:52 +00:00
|
|
|
}
|
|
|
|
##^##*/
|