diff --git a/ts/components/conversation/ConversationHeader.tsx b/ts/components/conversation/ConversationHeader.tsx
index 1ba9e0595..7e0f3cbcc 100644
--- a/ts/components/conversation/ConversationHeader.tsx
+++ b/ts/components/conversation/ConversationHeader.tsx
@@ -141,6 +141,12 @@ const SelectionOverlay = () => {
);
};
+const TripleDotContainer = styled.div`
+ user-select: none;
+ flex-grow: 0;
+ flex-shrink: 0;
+`;
+
const TripleDotsMenu = (props: { triggerId: string; showBackButton: boolean }) => {
const { showBackButton } = props;
if (showBackButton) {
@@ -162,12 +168,6 @@ const TripleDotsMenu = (props: { triggerId: string; showBackButton: boolean }) =
);
};
-const TripleDotContainer = styled.div`
- user-select: none;
- flex-grow: 0;
- flex-shrink: 0;
-`;
-
const ExpirationLength = (props: { expirationSettingName?: string }) => {
const { expirationSettingName } = props;
@@ -281,6 +281,19 @@ export type ConversationHeaderTitleProps = {
currentNotificationSetting?: ConversationNotificationSettingType;
};
+/**
+ * The subtitle beneath a conversation title when looking at a conversation screen.
+ * @param props props for subtitle. Text to be displayed
+ * @returns JSX Element of the subtitle of conversation header
+ */
+export const ConversationHeaderSubtitle = (props: { text?: string | null }): JSX.Element | null => {
+ const { text } = props;
+ if (!text) {
+ return null;
+ }
+ return {text};
+};
+
const ConversationHeaderTitle = () => {
const headerTitleProps = useSelector(getConversationHeaderTitleProps);
const notificationSetting = useSelector(getCurrentNotificationSettingText);
@@ -344,19 +357,6 @@ const ConversationHeaderTitle = () => {
);
};
-/**
- * The subtitle beneath a conversation title when looking at a conversation screen.
- * @param props props for subtitle. Text to be displayed
- * @returns JSX Element of the subtitle of conversation header
- */
-export const ConversationHeaderSubtitle = (props: { text?: string | null }): JSX.Element | null => {
- const { text } = props;
- if (!text) {
- return null;
- }
- return {text};
-};
-
export const ConversationHeaderWithDetails = () => {
const isSelectionMode = useSelector(isMessageSelectionMode);
const isMessageDetailOpened = useSelector(isMessageDetailView);
diff --git a/ts/components/conversation/message/message-content/MessageBody.tsx b/ts/components/conversation/message/message-content/MessageBody.tsx
index 4a76370e6..da29e1a52 100644
--- a/ts/components/conversation/message/message-content/MessageBody.tsx
+++ b/ts/components/conversation/message/message-content/MessageBody.tsx
@@ -88,43 +88,6 @@ const JsxSelectable = (jsx: JSX.Element): JSX.Element => {
);
};
-export const MessageBody = (props: Props) => {
- const { text, disableJumbomoji, disableLinks, isGroup } = props;
- const sizeClass: SizeClassType = disableJumbomoji ? 'default' : getEmojiSizeClass(text);
-
- if (disableLinks) {
- return JsxSelectable(
- renderEmoji({
- text,
- sizeClass,
- key: 0,
- renderNonEmoji: renderNewLines,
- isGroup,
- })
- );
- }
-
- if (text && text.startsWith('```') && text.endsWith('```') && text.length > 6) {
- return
{text.substring(4, text.length - 3)}
;
- }
-
- return JsxSelectable(
- {
- return renderEmoji({
- text: nonLinkText,
- sizeClass,
- key,
- renderNonEmoji: renderNewLines,
- isGroup,
- });
- }}
- />
- );
-};
-
type LinkifyProps = {
text: string;
/** Allows you to customize now non-links are rendered. Simplest is just a . */
@@ -184,3 +147,40 @@ const Linkify = (props: LinkifyProps): JSX.Element => {
return <>{results}>;
};
+
+export const MessageBody = (props: Props) => {
+ const { text, disableJumbomoji, disableLinks, isGroup } = props;
+ const sizeClass: SizeClassType = disableJumbomoji ? 'default' : getEmojiSizeClass(text);
+
+ if (disableLinks) {
+ return JsxSelectable(
+ renderEmoji({
+ text,
+ sizeClass,
+ key: 0,
+ renderNonEmoji: renderNewLines,
+ isGroup,
+ })
+ );
+ }
+
+ if (text && text.startsWith('```') && text.endsWith('```') && text.length > 6) {
+ return {text.substring(4, text.length - 3)}
;
+ }
+
+ return JsxSelectable(
+ {
+ return renderEmoji({
+ text: nonLinkText,
+ sizeClass,
+ key,
+ renderNonEmoji: renderNewLines,
+ isGroup,
+ });
+ }}
+ />
+ );
+};
diff --git a/ts/components/conversation/message/message-content/MessagePreview.tsx b/ts/components/conversation/message/message-content/MessagePreview.tsx
index 0550a9e71..9b987bfc7 100644
--- a/ts/components/conversation/message/message-content/MessagePreview.tsx
+++ b/ts/components/conversation/message/message-content/MessagePreview.tsx
@@ -10,7 +10,10 @@ import { SessionIcon } from '../../../icon';
import { MINIMUM_LINK_PREVIEW_IMAGE_WIDTH } from '../message-item/Message';
import { showLinkVisitWarningDialog } from '../../../dialog/SessionConfirm';
-export type MessagePreviewSelectorProps = Pick;
+export type MessagePreviewSelectorProps = Pick<
+ MessageRenderingProps,
+ 'direction' | 'attachments' | 'previews'
+>;
type Props = {
handleImageError: () => void;
@@ -24,7 +27,7 @@ export const MessagePreview = (props: Props) => {
if (!selected) {
return null;
}
- const { attachments, previews } = selected;
+ const { direction, attachments, previews } = selected;
// Attachments take precedence over Link Previews
if (attachments && attachments.length) {
@@ -53,7 +56,7 @@ export const MessagePreview = (props: Props) => {
return (
{first.image && previewHasImage && isFullSizeImage ? (
diff --git a/ts/components/conversation/message/message-item/MessageDetail.tsx b/ts/components/conversation/message/message-item/MessageDetail.tsx
index 65c49a23a..e88190cee 100644
--- a/ts/components/conversation/message/message-item/MessageDetail.tsx
+++ b/ts/components/conversation/message/message-item/MessageDetail.tsx
@@ -17,6 +17,7 @@ import {
import { ContactName } from '../../ContactName';
// tslint:disable-next-line: no-submodule-imports
import useKey from 'react-use/lib/useKey';
+import { SessionButton, SessionButtonColor, SessionButtonType } from '../../../basic/SessionButton';
const AvatarItem = (props: { pubkey: string }) => {
const { pubkey } = props;
@@ -29,14 +30,14 @@ const DeleteButtonItem = (props: { messageId: string; convoId: string; isDeletab
return props.isDeletable ? (
-
+ />
) : null;
};
diff --git a/ts/components/menu/ConversationListItemContextMenu.tsx b/ts/components/menu/ConversationListItemContextMenu.tsx
index 2c8bc19f7..7f91d0b62 100644
--- a/ts/components/menu/ConversationListItemContextMenu.tsx
+++ b/ts/components/menu/ConversationListItemContextMenu.tsx
@@ -29,7 +29,6 @@ export type PropsContextConversationItem = {
const ConversationListItemContextMenu = (props: PropsContextConversationItem) => {
const { triggerId } = props;
- // TODO Theming - Waiting on Session Components for correct colors
return (