Fix UI glitches in forward info, support video notes
This commit is contained in:
parent
07aa92ffcc
commit
d994f8f102
14 changed files with 120 additions and 8 deletions
|
@ -279,8 +279,8 @@ ListItem {
|
||||||
forwardedThumbnail.photoData = (typeof otherUserInformation.profile_photo !== "undefined") ? otherUserInformation.profile_photo.small : "";
|
forwardedThumbnail.photoData = (typeof otherUserInformation.profile_photo !== "undefined") ? otherUserInformation.profile_photo.small : "";
|
||||||
forwardedChannelText.text = Emoji.emojify(Functions.getUserName(otherUserInformation), Theme.fontSizeExtraSmall);
|
forwardedChannelText.text = Emoji.emojify(Functions.getUserName(otherUserInformation), Theme.fontSizeExtraSmall);
|
||||||
} else {
|
} else {
|
||||||
forwardedThumbnail.photoData = "";
|
forwardedChannelText.text = Emoji.emojify(myMessage.forward_info.origin.sender_name, Theme.fontSizeExtraSmall);
|
||||||
forwardedChannelText.text = Emoji.emojify(myMessage.forward_info.origin.sender_user_name, Theme.fontSizeExtraSmall);
|
forwardedThumbnail.photoData = {};
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -293,7 +293,7 @@ ListItem {
|
||||||
|
|
||||||
Column {
|
Column {
|
||||||
spacing: Theme.paddingSmall
|
spacing: Theme.paddingSmall
|
||||||
width: parent.width
|
width: parent.width - forwardedThumbnail.width - Theme.paddingSmall
|
||||||
Text {
|
Text {
|
||||||
font.pixelSize: Theme.fontSizeExtraSmall
|
font.pixelSize: Theme.fontSizeExtraSmall
|
||||||
color: Theme.primaryColor
|
color: Theme.primaryColor
|
||||||
|
|
|
@ -27,7 +27,7 @@ Item {
|
||||||
property ListItem messageListItem
|
property ListItem messageListItem
|
||||||
property var rawMessage: messageListItem.myMessage
|
property var rawMessage: messageListItem.myMessage
|
||||||
|
|
||||||
property var videoData: ( rawMessage.content['@type'] === "messageVideo" ) ? rawMessage.content.video : ( ( rawMessage.content['@type'] === "messageAnimation" ) ? rawMessage.content.animation : "")
|
property var videoData: ( rawMessage.content['@type'] === "messageVideo" ) ? rawMessage.content.video : ( ( rawMessage.content['@type'] === "messageAnimation" ) ? rawMessage.content.animation : rawMessage.content.video_note )
|
||||||
property string videoUrl;
|
property string videoUrl;
|
||||||
property int previewFileId;
|
property int previewFileId;
|
||||||
property int videoFileId;
|
property int videoFileId;
|
||||||
|
@ -37,7 +37,7 @@ Item {
|
||||||
property bool playRequested: false;
|
property bool playRequested: false;
|
||||||
|
|
||||||
width: parent.width
|
width: parent.width
|
||||||
height: Functions.getVideoHeight(width, videoData)
|
height: ( rawMessage.content['@type'] === "messageVideoNote" ) ? width : Functions.getVideoHeight(width, videoData)
|
||||||
|
|
||||||
Timer {
|
Timer {
|
||||||
id: screensaverTimer
|
id: screensaverTimer
|
||||||
|
@ -78,7 +78,11 @@ Item {
|
||||||
|
|
||||||
function updateVideoThumbnail() {
|
function updateVideoThumbnail() {
|
||||||
if (videoData) {
|
if (videoData) {
|
||||||
videoType = videoData['@type'];
|
if (rawMessage.content['@type'] === "messageVideoNote") {
|
||||||
|
videoType = "video";
|
||||||
|
} else {
|
||||||
|
videoType = videoData['@type'];
|
||||||
|
}
|
||||||
videoFileId = videoData[videoType].id;
|
videoFileId = videoData[videoType].id;
|
||||||
if (typeof videoData.thumbnail !== "undefined") {
|
if (typeof videoData.thumbnail !== "undefined") {
|
||||||
previewFileId = videoData.thumbnail.photo.id;
|
previewFileId = videoData.thumbnail.photo.id;
|
||||||
|
|
|
@ -48,6 +48,9 @@ function getMessageText(message, simple, myself) {
|
||||||
return simple ? (myself ? qsTr("sent a video", "myself") : qsTr("sent a video")) : "";
|
return simple ? (myself ? qsTr("sent a video", "myself") : qsTr("sent a video")) : "";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (message.content['@type'] === 'messageVideoNote') {
|
||||||
|
return simple ? (myself ? qsTr("sent a video note", "myself") : qsTr("sent a video note")) : "";
|
||||||
|
}
|
||||||
if (message.content['@type'] === 'messageAnimation') {
|
if (message.content['@type'] === 'messageAnimation') {
|
||||||
if (message.content.caption.text !== "") {
|
if (message.content.caption.text !== "") {
|
||||||
return simple ? qsTr("Animation: %1").arg(message.content.caption.text) : enhanceMessageText(message.content.caption)
|
return simple ? qsTr("Animation: %1").arg(message.content.caption.text) : enhanceMessageText(message.content.caption)
|
||||||
|
|
|
@ -590,6 +590,7 @@ Page {
|
||||||
messageSticker: "StickerPreview",
|
messageSticker: "StickerPreview",
|
||||||
messagePhoto: "ImagePreview",
|
messagePhoto: "ImagePreview",
|
||||||
messageVideo: "VideoPreview",
|
messageVideo: "VideoPreview",
|
||||||
|
messageVideoNote: "VideoPreview",
|
||||||
messageAnimation: "VideoPreview",
|
messageAnimation: "VideoPreview",
|
||||||
messageAudio: "AudioPreview",
|
messageAudio: "AudioPreview",
|
||||||
messageVoiceNote: "AudioPreview",
|
messageVoiceNote: "AudioPreview",
|
||||||
|
@ -605,7 +606,7 @@ Page {
|
||||||
case "LocationPreview":
|
case "LocationPreview":
|
||||||
return parentWidth * 0.66666666; // 2 / 3;
|
return parentWidth * 0.66666666; // 2 / 3;
|
||||||
case "VideoPreview":
|
case "VideoPreview":
|
||||||
return Functions.getVideoHeight(parentWidth, ( content['@type'] === "messageVideo" ) ? content.video : content.animation);
|
return ( content['@type'] === "messageVideoNote" ) ? content.video_note.length : ( Functions.getVideoHeight(parentWidth, ( content['@type'] === "messageVideo" ) ? content.video : content.animation) );
|
||||||
case "AudioPreview":
|
case "AudioPreview":
|
||||||
return parentWidth / 2;
|
return parentWidth / 2;
|
||||||
case "DocumentPreview":
|
case "DocumentPreview":
|
||||||
|
@ -615,7 +616,21 @@ Page {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
readonly property var simpleDelegateMessages: ["messageBasicGroupChatCreate", "messageChatAddMembers", "messageChatChangePhoto", "messageChatChangeTitle", "messageChatDeleteMember", "messageChatDeletePhoto", "messageChatJoinByLink", "messageChatSetTtl", "messageChatUpgradeFrom", "messageChatUpgradeTo", "messageCustomServiceAction", "messagePinMessage", "messageScreenshotTaken", "messageSupergroupChatCreate", "messageUnsupported"]
|
readonly property var simpleDelegateMessages: ["messageBasicGroupChatCreate",
|
||||||
|
"messageChatAddMembers",
|
||||||
|
"messageChatChangePhoto",
|
||||||
|
"messageChatChangeTitle",
|
||||||
|
"messageChatDeleteMember",
|
||||||
|
"messageChatDeletePhoto",
|
||||||
|
"messageChatJoinByLink",
|
||||||
|
"messageChatSetTtl",
|
||||||
|
"messageChatUpgradeFrom",
|
||||||
|
"messageChatUpgradeTo",
|
||||||
|
"messageCustomServiceAction",
|
||||||
|
"messagePinMessage",
|
||||||
|
"messageScreenshotTaken",
|
||||||
|
"messageSupergroupChatCreate",
|
||||||
|
"messageUnsupported"]
|
||||||
delegate: Loader {
|
delegate: Loader {
|
||||||
width: chatView.width
|
width: chatView.width
|
||||||
Component {
|
Component {
|
||||||
|
|
|
@ -1468,5 +1468,14 @@
|
||||||
<source>Unable to find user %1</source>
|
<source>Unable to find user %1</source>
|
||||||
<translation>Konnte Benutzer %1 nicht finden</translation>
|
<translation>Konnte Benutzer %1 nicht finden</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>sent a video note</source>
|
||||||
|
<comment>myself</comment>
|
||||||
|
<translation>haben eine Videonachricht geschicht</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>sent a video note</source>
|
||||||
|
<translation>hat eine Videonachricht geschickt</translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
</TS>
|
</TS>
|
||||||
|
|
|
@ -1462,5 +1462,14 @@
|
||||||
<source>Unable to find user %1</source>
|
<source>Unable to find user %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>sent a video note</source>
|
||||||
|
<comment>myself</comment>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>sent a video note</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
</TS>
|
</TS>
|
||||||
|
|
|
@ -1469,5 +1469,14 @@
|
||||||
<source>Unable to find user %1</source>
|
<source>Unable to find user %1</source>
|
||||||
<translation>Käyttäjää ei löydy: %1</translation>
|
<translation>Käyttäjää ei löydy: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>sent a video note</source>
|
||||||
|
<comment>myself</comment>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>sent a video note</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
</TS>
|
</TS>
|
||||||
|
|
|
@ -1462,5 +1462,14 @@
|
||||||
<source>Unable to find user %1</source>
|
<source>Unable to find user %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>sent a video note</source>
|
||||||
|
<comment>myself</comment>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>sent a video note</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
</TS>
|
</TS>
|
||||||
|
|
|
@ -1468,5 +1468,14 @@
|
||||||
<source>Unable to find user %1</source>
|
<source>Unable to find user %1</source>
|
||||||
<translation>Impossibile trovare l'utente %1</translation>
|
<translation>Impossibile trovare l'utente %1</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>sent a video note</source>
|
||||||
|
<comment>myself</comment>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>sent a video note</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
</TS>
|
</TS>
|
||||||
|
|
|
@ -1474,5 +1474,14 @@
|
||||||
<source>Unable to find user %1</source>
|
<source>Unable to find user %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>sent a video note</source>
|
||||||
|
<comment>myself</comment>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>sent a video note</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
</TS>
|
</TS>
|
||||||
|
|
|
@ -1474,5 +1474,14 @@
|
||||||
<source>Unable to find user %1</source>
|
<source>Unable to find user %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>sent a video note</source>
|
||||||
|
<comment>myself</comment>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>sent a video note</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
</TS>
|
</TS>
|
||||||
|
|
|
@ -1468,5 +1468,14 @@
|
||||||
<source>Unable to find user %1</source>
|
<source>Unable to find user %1</source>
|
||||||
<translation>Kan inte hitta användare %1</translation>
|
<translation>Kan inte hitta användare %1</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>sent a video note</source>
|
||||||
|
<comment>myself</comment>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>sent a video note</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
</TS>
|
</TS>
|
||||||
|
|
|
@ -1462,5 +1462,14 @@
|
||||||
<source>Unable to find user %1</source>
|
<source>Unable to find user %1</source>
|
||||||
<translation>无法找到用户 %1</translation>
|
<translation>无法找到用户 %1</translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>sent a video note</source>
|
||||||
|
<comment>myself</comment>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>sent a video note</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
</TS>
|
</TS>
|
||||||
|
|
|
@ -1462,5 +1462,14 @@
|
||||||
<source>Unable to find user %1</source>
|
<source>Unable to find user %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>sent a video note</source>
|
||||||
|
<comment>myself</comment>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<source>sent a video note</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
</context>
|
</context>
|
||||||
</TS>
|
</TS>
|
||||||
|
|
Loading…
Reference in a new issue