From f6d3715dab4d7e97e841e6bca21aae71e491f348 Mon Sep 17 00:00:00 2001 From: Brice-W Date: Mon, 16 Aug 2021 14:46:31 +1000 Subject: [PATCH] add a link icon when there is no image available or when media download is not allowed --- stylesheets/_modules.scss | 41 +++++++++++++++++++++++++- stylesheets/_theme_dark.scss | 4 +++ ts/components/conversation/Message.tsx | 12 +++++++- ts/components/session/icon/Icons.tsx | 7 +++++ ts/receiver/attachments.ts | 14 +++++---- 5 files changed, 70 insertions(+), 8 deletions(-) diff --git a/stylesheets/_modules.scss b/stylesheets/_modules.scss index 1cd404ab9..0d26851f9 100644 --- a/stylesheets/_modules.scss +++ b/stylesheets/_modules.scss @@ -325,12 +325,51 @@ border-top-right-radius: 0px; } -.module-message__link-preview__icon_container { +.module-message__link-preview__image_container { margin: -2px; margin-inline-end: 8px; display: inline-block; } +.module-message__link-preview__icon_container { + flex: initial; + min-width: 54px; + width: 54px; + max-height: 54px; + position: relative; + margin-left: -2px; + margin-inline-end: 8px; + + img { + width: 100%; + height: 100%; + object-fit: cover; + } + + &__inner { + top: 0; + right: 0; + bottom: 0; + left: 0; + + text-align: center; + display: flex; + align-items: center; + justify-content: center; + } +} + +.module-message__link-preview__icon-container__circle-background { + display: flex; + align-items: center; + justify-content: center; + + height: 32px; + width: 32px; + border-radius: 50%; + background-color: $color-gray-05; +} + .module-message__link-preview__text--with-icon { margin-top: 5px; } diff --git a/stylesheets/_theme_dark.scss b/stylesheets/_theme_dark.scss index e0e93674c..63f0d71e7 100644 --- a/stylesheets/_theme_dark.scss +++ b/stylesheets/_theme_dark.scss @@ -520,4 +520,8 @@ .module-message-search-result__body { color: $color-gray-05; } + + .module-message__link-preview__icon-container__circle-background { + background-color: $color-gray-25; + } } diff --git a/ts/components/conversation/Message.tsx b/ts/components/conversation/Message.tsx index 221a0e7b7..bf8bd1add 100644 --- a/ts/components/conversation/Message.tsx +++ b/ts/components/conversation/Message.tsx @@ -53,6 +53,8 @@ import { MessageContextMenu } from './MessageContextMenu'; import { ReadableMessage } from './ReadableMessage'; import { getConversationController } from '../../session/conversations'; import { MessageMetadata } from './message/MessageMetadata'; +import { SessionIcon } from '../session/icon/SessionIcon'; +import { SessionIconSize, SessionIconType } from '../session/icon/Icons'; // Same as MIN_WIDTH in ImageGrid.tsx const MINIMUM_LINK_PREVIEW_IMAGE_WIDTH = 200; @@ -382,7 +384,7 @@ class MessageInner extends React.PureComponent { )} > {first.image && previewHasImage && !isFullSizeImage ? ( -
+
{ onError={this.handleImageError} />
+ ) : !first.image || !previewHasImage ? ( +
+
+
+ +
+
+
) : null}