Message: If collapsed in group, remove top margin on link previews

This commit is contained in:
Scott Nonnenberg 2022-06-13 14:29:10 -07:00 committed by GitHub
parent 410bc52fd0
commit e18510e41c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1009 additions and 1185 deletions

View File

@ -6,8 +6,8 @@
.container {
align-content: stretch;
align-items: stretch;
height: 100vh;
width: 100vw;
height: 100%;
width: 100%;
}
.dark-theme {

File diff suppressed because it is too large Load Diff

View File

@ -1147,7 +1147,9 @@ export class Message extends React.PureComponent<Props, State> {
const withContentAbove =
Boolean(quote) ||
(conversationType === 'group' && direction === 'incoming');
(!shouldCollapseAbove &&
conversationType === 'group' &&
direction === 'incoming');
const previewHasImage = isImageAttachment(first.image);
const isFullSizeImage = shouldUseFullSizeLinkPreviewImage(first);

View File

@ -4,6 +4,7 @@
import { compact, isNumber, throttle, debounce } from 'lodash';
import { batch as batchDispatch } from 'react-redux';
import PQueue from 'p-queue';
import { v4 as generateGuid } from 'uuid';
import type {
ConversationAttributesType,
@ -2590,7 +2591,7 @@ export class ConversationModel extends window.Backbone
});
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion
const { VERIFIED, UNVERIFIED } = this.verifiedEnum!;
const { VERIFIED, DEFAULT } = this.verifiedEnum!;
if (!isDirectConversation(this.attributes)) {
throw new Error(
@ -2641,7 +2642,7 @@ export class ConversationModel extends window.Backbone
const didVerifiedChange = beginningVerified !== verified;
const isExplicitUserAction = !options.viaStorageServiceSync;
const shouldShowFromStorageSync =
options.viaStorageServiceSync && verified !== UNVERIFIED;
options.viaStorageServiceSync && verified !== DEFAULT;
if (
// The message came from an explicit verification in a client (not
// storage service sync)
@ -3011,11 +3012,8 @@ export class ConversationModel extends window.Backbone
async addVerifiedChange(
verifiedChangeId: string,
verified: boolean,
providedOptions: Record<string, unknown>
options: { local?: boolean } = { local: true }
): Promise<void> {
const options = providedOptions || {};
window._.defaults(options, { local: true });
if (isMe(this.attributes)) {
log.info('refusing to add verified change advisory for our own number');
return;
@ -3030,30 +3028,30 @@ export class ConversationModel extends window.Backbone
lastMessage
);
const shouldBeUnseen = !options.local && !verified;
const timestamp = Date.now();
const message = {
const message: MessageAttributesType = {
id: generateGuid(),
conversationId: this.id,
local: options.local,
readStatus: ReadStatus.Unread,
local: Boolean(options.local),
readStatus: shouldBeUnseen ? ReadStatus.Unread : ReadStatus.Read,
received_at_ms: timestamp,
received_at: window.Signal.Util.incrementMessageCounter(),
seenStatus: SeenStatus.Unseen,
seenStatus: shouldBeUnseen ? SeenStatus.Unseen : SeenStatus.Unseen,
sent_at: lastMessage,
timestamp,
type: 'verified-change',
verified,
verifiedChanged: verifiedChangeId,
// TODO: DESKTOP-722
} as unknown as MessageAttributesType;
};
const id = await window.Signal.Data.saveMessage(message, {
await window.Signal.Data.saveMessage(message, {
ourUuid: window.textsecure.storage.user.getCheckedUuid().toString(),
forceSave: true,
});
const model = window.MessageController.register(
id,
new window.Whisper.Message({
...message,
id,
})
message.id,
new window.Whisper.Message(message)
);
this.trigger('newmessage', model);