diff --git a/ts/components/session/conversation/SessionFileDropzone.tsx b/ts/components/session/conversation/SessionFileDropzone.tsx
index fb7c97e44..0cc51bbed 100644
--- a/ts/components/session/conversation/SessionFileDropzone.tsx
+++ b/ts/components/session/conversation/SessionFileDropzone.tsx
@@ -1,7 +1,7 @@
import React, { useContext } from 'react';
import styled, { ThemeContext } from 'styled-components';
import { Flex } from '../../basic/Flex';
-import { SessionIcon, SessionIconSize, SessionIconType } from '../icon';
+import { SessionIcon, SessionIconType } from '../icon';
const DropZoneContainer = styled.div`
display: inline-block;
@@ -32,7 +32,7 @@ export const SessionFileDropzone = () => {
diff --git a/ts/components/session/conversation/SessionQuotedMessageComposition.tsx b/ts/components/session/conversation/SessionQuotedMessageComposition.tsx
index 2b8b93354..5c7dcc81d 100644
--- a/ts/components/session/conversation/SessionQuotedMessageComposition.tsx
+++ b/ts/components/session/conversation/SessionQuotedMessageComposition.tsx
@@ -1,6 +1,6 @@
import React, { useCallback } from 'react';
import { Flex } from '../../basic/Flex';
-import { SessionIcon, SessionIconButton, SessionIconSize, SessionIconType } from '../icon';
+import { SessionIcon, SessionIconButton, SessionIconType } from '../icon';
import styled, { useTheme } from 'styled-components';
import { getAlt, isAudio } from '../../../types/Attachment';
import { Image } from '../../conversation/Image';
@@ -78,7 +78,7 @@ export const SessionQuotedMessageComposition = () => {
{window.i18n('replyingToMessage')}
@@ -98,11 +98,7 @@ export const SessionQuotedMessageComposition = () => {
)}
{hasAudioAttachment && (
-
+
)}
diff --git a/ts/components/session/conversation/SessionRecording.tsx b/ts/components/session/conversation/SessionRecording.tsx
index 6f2f77909..5402e03ba 100644
--- a/ts/components/session/conversation/SessionRecording.tsx
+++ b/ts/components/session/conversation/SessionRecording.tsx
@@ -2,7 +2,7 @@ import React from 'react';
import classNames from 'classnames';
import moment from 'moment';
-import { SessionIconButton, SessionIconSize, SessionIconType } from '../icon';
+import { SessionIconButton, SessionIconType } from '../icon';
import { Constants } from '../../../session';
import { ToastUtils } from '../../../session/utils';
import autoBind from 'auto-bind';
@@ -130,7 +130,7 @@ class SessionRecordingInner extends React.Component {
{isRecording && (
@@ -138,31 +138,28 @@ class SessionRecordingInner extends React.Component {
{actionPauseAudio && (
)}
{hasRecordingAndPaused && (
)}
{hasRecording && (
)}
{actionDefault && (
-
+
)}
@@ -188,7 +185,7 @@ class SessionRecordingInner extends React.Component {
>
diff --git a/ts/components/session/conversation/SessionRightPanel.tsx b/ts/components/session/conversation/SessionRightPanel.tsx
index ec857e717..a40539749 100644
--- a/ts/components/session/conversation/SessionRightPanel.tsx
+++ b/ts/components/session/conversation/SessionRightPanel.tsx
@@ -1,5 +1,5 @@
import React, { useEffect, useState } from 'react';
-import { SessionIconButton, SessionIconSize, SessionIconType } from '../icon';
+import { SessionIconButton, SessionIconType } from '../icon';
import { Avatar, AvatarSize } from '../../Avatar';
import { SessionButton, SessionButtonColor, SessionButtonType } from '../SessionButton';
import { SessionDropdown } from '../SessionDropdown';
@@ -136,7 +136,7 @@ const HeaderItem = () => {
{
dispatch(closeRightPanel());
@@ -154,7 +154,7 @@ const HeaderItem = () => {
{showInviteContacts && (
{
if (selectedConversation) {
showInviteContactByConvoId(selectedConversation.id);
diff --git a/ts/components/session/icon/Icons.tsx b/ts/components/session/icon/Icons.tsx
index 4e0aa2c0e..d97f37747 100644
--- a/ts/components/session/icon/Icons.tsx
+++ b/ts/components/session/icon/Icons.tsx
@@ -62,14 +62,7 @@ export enum SessionIconType {
Timer60 = 'timer60',
}
-export enum SessionIconSize {
- Tiny = 'tiny',
- Small = 'small',
- Medium = 'medium',
- Large = 'large',
- Huge = 'huge',
- Max = 'max',
-}
+export type SessionIconSize = 'tiny' | 'small' | 'medium' | 'large' | 'huge' | 'huge2' | 'max';
export const icons = {
[SessionIconType.AddUser]: {
diff --git a/ts/components/session/icon/SessionIcon.tsx b/ts/components/session/icon/SessionIcon.tsx
index 8ab21c4aa..c4055a384 100644
--- a/ts/components/session/icon/SessionIcon.tsx
+++ b/ts/components/session/icon/SessionIcon.tsx
@@ -21,17 +21,19 @@ const getIconDimensionFromIconSize = (iconSize: SessionIconSize | number) => {
return iconSize;
} else {
switch (iconSize) {
- case SessionIconSize.Tiny:
+ case 'tiny':
return 12;
- case SessionIconSize.Small:
+ case 'small':
return 15;
- case SessionIconSize.Medium:
+ case 'medium':
return 20;
- case SessionIconSize.Large:
+ case 'large':
return 25;
- case SessionIconSize.Huge:
+ case 'huge':
return 30;
- case SessionIconSize.Max:
+ case 'huge2':
+ return 40;
+ case 'max':
return 80;
default:
return 20;
@@ -174,9 +176,11 @@ export const SessionIcon = (props: SessionIconProps) => {
borderRadius,
glowStartDelay,
noScale,
+ backgroundColor,
+ iconPadding,
} = props;
let { iconSize, iconRotation } = props;
- iconSize = iconSize || SessionIconSize.Medium;
+ iconSize = iconSize || 'medium';
iconRotation = iconRotation || 0;
const themeToUse = theme || useTheme() || lightTheme;
@@ -201,6 +205,8 @@ export const SessionIcon = (props: SessionIconProps) => {
borderRadius={borderRadius}
iconRotation={iconRotation}
iconColor={iconColor}
+ backgroundColor={backgroundColor}
+ iconPadding={iconPadding}
theme={themeToUse}
/>
);
diff --git a/ts/components/session/icon/SessionIconButton.tsx b/ts/components/session/icon/SessionIconButton.tsx
index 3d8638965..b96c88ec2 100644
--- a/ts/components/session/icon/SessionIconButton.tsx
+++ b/ts/components/session/icon/SessionIconButton.tsx
@@ -26,6 +26,9 @@ const SessionIconButtonInner = (props: SProps) => {
glowStartDelay,
noScale,
isHidden,
+ backgroundColor,
+ borderRadius,
+ iconPadding,
} = props;
const clickHandler = (e: any) => {
if (props.onClick) {
@@ -52,6 +55,9 @@ const SessionIconButtonInner = (props: SProps) => {
glowDuration={glowDuration}
glowStartDelay={glowStartDelay}
noScale={noScale}
+ backgroundColor={backgroundColor}
+ borderRadius={borderRadius}
+ iconPadding={iconPadding}
/>
{Boolean(notificationCount) && }
diff --git a/ts/components/session/settings/SessionSettings.tsx b/ts/components/session/settings/SessionSettings.tsx
index 5d37087e8..3986e5942 100644
--- a/ts/components/session/settings/SessionSettings.tsx
+++ b/ts/components/session/settings/SessionSettings.tsx
@@ -15,13 +15,12 @@ import {
hasLinkPreviewPopupBeenDisplayed,
} from '../../../../ts/data/data';
import { shell } from 'electron';
-import { SessionConfirmDialogProps } from '../../dialog/SessionConfirm';
import { mapDispatchToProps } from '../../../state/actions';
import { unblockConvoById } from '../../../interactions/conversationInteractions';
import { toggleAudioAutoplay } from '../../../state/ducks/userConfig';
import { sessionPassword, updateConfirmModal } from '../../../state/ducks/modalDialog';
import { PasswordAction } from '../../dialog/SessionPasswordDialog';
-import { SessionIconButton, SessionIconSize, SessionIconType } from '../icon';
+import { SessionIconButton, SessionIconType } from '../icon';
import { ToastUtils } from '../../../session/utils';
export enum SessionSettingCategory {
@@ -54,10 +53,6 @@ interface State {
shouldLockSettings: boolean | null;
}
-interface ConfirmationDialogParams extends SessionConfirmDialogProps {
- shouldShowConfirm: boolean | undefined;
-}
-
interface LocalSettingType {
category: SessionSettingCategory;
description: string | undefined;
@@ -70,7 +65,6 @@ interface LocalSettingType {
type: SessionSettingType | undefined;
setFn: any;
onClick: any;
- confirmationDialogParams: ConfirmationDialogParams | undefined;
}
class SettingsViewInner extends React.Component {
@@ -162,7 +156,6 @@ class SettingsViewInner extends React.Component {
onClick={onClickFn}
onSliderChange={sliderFn}
content={content}
- confirmationDialogParams={setting.confirmationDialogParams}
/>
)}