{
setDeleteDeviceOnly(true);
}}
@@ -229,9 +237,11 @@ export const DeleteAccountModal = () => {
{(deleteDeviceOnly || deleteEverythingWithNetwork) && (
- {
if (deleteDeviceOnly) {
void onDeleteEverythingLocallyOnly();
@@ -242,9 +252,10 @@ export const DeleteAccountModal = () => {
disabled={isLoading}
/>
- {
dispatch(updateDeleteAccountModal(null));
}}
diff --git a/ts/components/dialog/SessionConfirm.tsx b/ts/components/dialog/SessionConfirm.tsx
index 64ddc450b..41f76ad09 100644
--- a/ts/components/dialog/SessionConfirm.tsx
+++ b/ts/components/dialog/SessionConfirm.tsx
@@ -2,7 +2,12 @@ import React, { useState } from 'react';
import { SessionHtmlRenderer } from '../basic/SessionHTMLRenderer';
import { updateConfirmModal } from '../../state/ducks/modalDialog';
import { SpacerLG } from '../basic/Text';
-import { SessionButton, SessionButtonColor } from '../basic/SessionButton';
+import {
+ SessionButton2,
+ SessionButtonColor,
+ SessionButtonShape,
+ SessionButtonType,
+} from '../basic/SessionButton2';
import { SessionSpinner } from '../basic/SessionSpinner';
import { SessionIcon, SessionIconSize, SessionIconType } from '../icon';
import { SessionWrapperModal } from '../SessionWrapperModal';
@@ -46,7 +51,7 @@ export const SessionConfirm = (props: SessionConfirmDialogProps) => {
message = '',
messageSub = '',
okTheme = SessionButtonColor.Primary,
- closeTheme = SessionButtonColor.Primary,
+ closeTheme,
onClickOk,
onClickClose,
hideCancel = false,
@@ -130,16 +135,20 @@ export const SessionConfirm = (props: SessionConfirmDialogProps) => {
-
{!hideCancel && (
-
diff --git a/ts/components/dialog/SessionPasswordDialog.tsx b/ts/components/dialog/SessionPasswordDialog.tsx
index 265d29a83..b7cdce854 100644
--- a/ts/components/dialog/SessionPasswordDialog.tsx
+++ b/ts/components/dialog/SessionPasswordDialog.tsx
@@ -7,7 +7,12 @@ import { SpacerLG, SpacerSM } from '../basic/Text';
import autoBind from 'auto-bind';
import { sessionPassword } from '../../state/ducks/modalDialog';
import { LocalizerKeys } from '../../types/LocalizerKeys';
-import { SessionButton, SessionButtonColor } from '../basic/SessionButton';
+import {
+ SessionButton2,
+ SessionButtonColor,
+ SessionButtonShape,
+ SessionButtonType,
+} from '../basic/SessionButton2';
import { SessionWrapperModal } from '../SessionWrapperModal';
import { matchesHash, validatePassword } from '../../util/passwordUtils';
@@ -59,8 +64,7 @@ export class SessionPasswordDialog extends React.Component
{
]
: [window.i18n('enterPassword'), window.i18n('confirmPassword')];
- const confirmButtonColor =
- passwordAction === 'remove' ? SessionButtonColor.Danger : SessionButtonColor.Green;
+ const confirmButtonColor = passwordAction === 'remove' ? SessionButtonColor.Danger : undefined;
// do this separately so typescript's compiler likes it
const localizedKeyAction: LocalizerKeys =
passwordAction === 'change'
@@ -108,12 +112,19 @@ export class SessionPasswordDialog extends React.Component {
{this.showError()}
-
-
+
);
diff --git a/ts/components/menu/Menu.tsx b/ts/components/menu/Menu.tsx
index 6c0fc05cc..fc7c7f1d7 100644
--- a/ts/components/menu/Menu.tsx
+++ b/ts/components/menu/Menu.tsx
@@ -52,7 +52,7 @@ import { hideMessageRequestBanner } from '../../state/ducks/userConfig';
import { getFocusedSection } from '../../state/selectors/section';
import { getTimerOptions } from '../../state/selectors/timerOptions';
import { LocalizerKeys } from '../../types/LocalizerKeys';
-import { SessionButtonColor } from '../basic/SessionButton';
+import { SessionButtonColor } from '../basic/SessionButton2';
import { ContextConversationId } from '../leftpane/conversation-list-item/ConversationListItem';
function showTimerOptions(
diff --git a/ts/components/settings/SessionSettingListItem.tsx b/ts/components/settings/SessionSettingListItem.tsx
index dbe743fe7..c48f93b62 100644
--- a/ts/components/settings/SessionSettingListItem.tsx
+++ b/ts/components/settings/SessionSettingListItem.tsx
@@ -1,5 +1,10 @@
import React from 'react';
-import { SessionButton, SessionButtonColor, SessionButtonType } from '../basic/SessionButton';
+import {
+ SessionButton2,
+ SessionButtonColor,
+ SessionButtonShape,
+ SessionButtonType,
+} from '../basic/SessionButton2';
import { SessionToggle } from '../basic/SessionToggle';
import { SessionConfirmDialogProps } from '../dialog/SessionConfirm';
import styled from 'styled-components';
@@ -8,8 +13,9 @@ import { SessionIconButton } from '../icon';
type ButtonSettingsProps = {
title?: string;
description?: string;
- buttonColor: SessionButtonColor;
- buttonType: SessionButtonType;
+ buttonColor?: SessionButtonColor;
+ buttonType?: SessionButtonType;
+ buttonShape?: SessionButtonShape;
buttonText: string;
dataTestId?: string;
onClick: () => void;
@@ -145,16 +151,26 @@ export const SessionToggleWithDescription = (props: {
};
export const SessionSettingButtonItem = (props: ButtonSettingsProps) => {
- const { title, description, buttonColor, buttonType, buttonText, dataTestId, onClick } = props;
+ const {
+ title,
+ description,
+ buttonColor,
+ buttonType,
+ buttonShape,
+ buttonText,
+ dataTestId,
+ onClick,
+ } = props;
return (
-
);
diff --git a/ts/components/settings/section/CategoryHelp.tsx b/ts/components/settings/section/CategoryHelp.tsx
index 9bdf4d88b..351f9a6ed 100644
--- a/ts/components/settings/section/CategoryHelp.tsx
+++ b/ts/components/settings/section/CategoryHelp.tsx
@@ -1,6 +1,6 @@
import { ipcRenderer, shell } from 'electron';
import React from 'react';
-import { SessionButtonColor, SessionButtonType } from '../../basic/SessionButton';
+import { SessionButtonShape } from '../../basic/SessionButton2';
import { SessionSettingButtonItem, SessionSettingsTitleWithLink } from '../SessionSettingListItem';
@@ -12,8 +12,7 @@ export const SettingsCategoryHelp = (props: { hasPassword: boolean | null }) =>
onClick={() => {
ipcRenderer.send('show-debug-log');
}}
- buttonColor={SessionButtonColor.Primary}
- buttonType={SessionButtonType.Square}
+ buttonShape={SessionButtonShape.Square}
buttonText={window.i18n('showDebugLog')}
title={window.i18n('reportIssue')}
description={window.i18n('shareBugDetails')}
diff --git a/ts/components/settings/section/CategoryPermissions.tsx b/ts/components/settings/section/CategoryPermissions.tsx
index 788be2f97..d00a46808 100644
--- a/ts/components/settings/section/CategoryPermissions.tsx
+++ b/ts/components/settings/section/CategoryPermissions.tsx
@@ -4,7 +4,7 @@ import useUpdate from 'react-use/lib/useUpdate';
import { SettingsKey } from '../../../data/settings-key';
import { CallManager, ToastUtils } from '../../../session/utils';
import { updateConfirmModal } from '../../../state/ducks/modalDialog';
-import { SessionButtonColor } from '../../basic/SessionButton';
+import { SessionButtonColor } from '../../basic/SessionButton2';
import { SessionToggleWithDescription } from '../SessionSettingListItem';
diff --git a/ts/components/settings/section/CategoryPrivacy.tsx b/ts/components/settings/section/CategoryPrivacy.tsx
index 540f3a916..909ea29aa 100644
--- a/ts/components/settings/section/CategoryPrivacy.tsx
+++ b/ts/components/settings/section/CategoryPrivacy.tsx
@@ -5,7 +5,7 @@ import { Data, hasLinkPreviewPopupBeenDisplayed } from '../../../data/data';
import { SettingsKey } from '../../../data/settings-key';
import { ConversationTypeEnum } from '../../../models/conversationAttributes';
import { sessionPassword, updateConfirmModal } from '../../../state/ducks/modalDialog';
-import { SessionButtonColor, SessionButtonType } from '../../basic/SessionButton';
+import { SessionButtonColor } from '../../basic/SessionButton2';
import { SpacerLG } from '../../basic/Text';
import { TypingBubble } from '../../conversation/TypingBubble';
import { PasswordAction } from '../../dialog/SessionPasswordDialog';
@@ -99,8 +99,6 @@ export const SettingsCategoryPrivacy = (props: {
onClick={() => {
displayPasswordModal('set', props.onPasswordUpdated);
}}
- buttonColor={SessionButtonColor.Green}
- buttonType={SessionButtonType.BrandOutline}
buttonText={window.i18n('setPassword')}
dataTestId={'set-password-button'}
/>
@@ -112,8 +110,6 @@ export const SettingsCategoryPrivacy = (props: {
onClick={() => {
displayPasswordModal('change', props.onPasswordUpdated);
}}
- buttonColor={SessionButtonColor.Green}
- buttonType={SessionButtonType.BrandOutline}
buttonText={window.i18n('changePassword')}
/>
)}
@@ -125,7 +121,6 @@ export const SettingsCategoryPrivacy = (props: {
displayPasswordModal('remove', props.onPasswordUpdated);
}}
buttonColor={SessionButtonColor.Danger}
- buttonType={SessionButtonType.BrandOutline}
buttonText={window.i18n('removePassword')}
/>
)}
diff --git a/ts/interactions/conversationInteractions.ts b/ts/interactions/conversationInteractions.ts
index 05234b099..e09c1c4f9 100644
--- a/ts/interactions/conversationInteractions.ts
+++ b/ts/interactions/conversationInteractions.ts
@@ -30,7 +30,7 @@ import { getDecryptedMediaUrl } from '../session/crypto/DecryptedAttachmentsMana
import { IMAGE_JPEG } from '../types/MIME';
import { fromHexToArray, toHex } from '../session/utils/String';
import { forceSyncConfigurationNowIfNeeded } from '../session/utils/syncUtils';
-import { SessionButtonColor } from '../components/basic/SessionButton';
+import { SessionButtonColor } from '../components/basic/SessionButton2';
import { getCallMediaPermissionsSettings } from '../components/settings/SessionSettings';
import { perfEnd, perfStart } from '../session/utils/Performance';
import { processNewAttachment } from '../types/MessageAttachment';
diff --git a/ts/interactions/conversations/unsendingInteractions.ts b/ts/interactions/conversations/unsendingInteractions.ts
index 777997400..053cfb536 100644
--- a/ts/interactions/conversations/unsendingInteractions.ts
+++ b/ts/interactions/conversations/unsendingInteractions.ts
@@ -11,7 +11,7 @@ import { PubKey } from '../../session/types';
import { ToastUtils, UserUtils } from '../../session/utils';
import { resetSelectedMessageIds } from '../../state/ducks/conversations';
import { updateConfirmModal } from '../../state/ducks/modalDialog';
-import { SessionButtonColor } from '../../components/basic/SessionButton';
+import { SessionButtonColor } from '../../components/basic/SessionButton2';
import { deleteSogsMessageByServerIds } from '../../session/apis/open_group_api/sogsv3/sogsV3DeleteMessages';
/**
diff --git a/ts/themes/SessionTheme.tsx b/ts/themes/SessionTheme.tsx
index 87d8fe79e..0319d204e 100644
--- a/ts/themes/SessionTheme.tsx
+++ b/ts/themes/SessionTheme.tsx
@@ -534,10 +534,14 @@ export const SessionGlobalStyles = createGlobalStyle`
--button-solid-background-hover-color: ${THEMES.CLASSIC_LIGHT.COLOR4};
--button-solid-text-color: var(--text-primary-color);
--button-solid-text-hover-color: var(--text-primary-color);
- --button-solid-disabled-color: var(--text-secondary-color);
+ --button-solid-disabled-color: ${THEMES.CLASSIC_LIGHT.COLOR4};
/* TODO Theming - Only light themes have shadows? */
--button-solid-shadow-color: rgba(${hexColorToRGB(THEMES.CLASSIC_LIGHT.COLOR0)}, 0.25);
+ /* Simple */
+ /* TODO Theming - Should this be different? */
+ --button-simple-disabled-color: var(--text-primary-color);
+
/* Icons */
--button-icon-background-color: var(--transparent-color);
--button-icon-stroke-color: var(--text-secondary-color);