diff --git a/_locales/en/messages.json b/_locales/en/messages.json
index 38cdb3e42..7fcb221a7 100644
--- a/_locales/en/messages.json
+++ b/_locales/en/messages.json
@@ -173,6 +173,7 @@
"sendFailed": "Send Failed",
"mediaMessage": "Media message",
"messageBodyMissing": "Please enter a message body.",
+ "messageBody": "Message body",
"unblockToSend": "Unblock this contact to send a message.",
"unblockGroupToSend": "This group is blocked. Unlock it if you would like to send a message.",
"youChangedTheTimer": "You set the disappearing message timer to $time$",
@@ -421,7 +422,7 @@
"recoveryPhraseRevealMessage": "Secure your account by saving your recovery phrase. Reveal your recovery phrase then store it safely to secure it.",
"recoveryPhraseRevealButtonText": "Reveal Recovery Phrase",
"notificationSubtitle": "Notifications - $setting$",
- "surveyTitle": "We'd love your Feedback",
+ "surveyTitle": "We'd Love Your Feedback",
"faq": "FAQ",
"support": "Support",
"clearAll": "Clear All",
diff --git a/stylesheets/_session_conversation.scss b/stylesheets/_session_conversation.scss
index 4ca66d6b7..b19a04746 100644
--- a/stylesheets/_session_conversation.scss
+++ b/stylesheets/_session_conversation.scss
@@ -393,38 +393,6 @@
}
}
- &--status {
- display: flex;
- justify-content: center;
- position: absolute;
- left: 0;
- z-index: 2;
- right: 0;
- bottom: $composition-container-height + var(--margins-md);
-
- .session-button {
- display: flex;
- justify-content: center;
- align-items: center;
- width: 173px;
- font-weight: 300;
- font-family: $session-font-default;
-
- &.primary {
- cursor: default;
- user-select: none;
-
- &:hover {
- filter: brightness(100%);
- border: 2px solid #161819;
- }
-
- background-color: $session-shade-1-alt;
- border: 2px solid #161819;
- }
- }
- }
-
&--timer {
display: inline-flex;
align-items: center;
diff --git a/stylesheets/_session_left_pane.scss b/stylesheets/_session_left_pane.scss
index f67445644..e51ec93f2 100644
--- a/stylesheets/_session_left_pane.scss
+++ b/stylesheets/_session_left_pane.scss
@@ -71,7 +71,6 @@ $session-compose-margin: 20px;
}
.module-left-pane {
- width: var(--left-pane-list-width);
position: relative;
height: 100vh;
flex-shrink: 0;
diff --git a/stylesheets/_session_signin.scss b/stylesheets/_session_signin.scss
index 4307b3566..374a1a1ec 100644
--- a/stylesheets/_session_signin.scss
+++ b/stylesheets/_session_signin.scss
@@ -178,7 +178,7 @@
&-description-long {
padding-top: 0;
padding-bottom: 20px;
-
+ // TODO Theming needs to be updated
color: rgba(black, 0.6);
text-align: center;
font-size: 12px;
diff --git a/ts/components/basic/SessionRadio.tsx b/ts/components/basic/SessionRadio.tsx
index 44f6379d4..6db7d945a 100644
--- a/ts/components/basic/SessionRadio.tsx
+++ b/ts/components/basic/SessionRadio.tsx
@@ -1,5 +1,6 @@
import React, { ChangeEvent } from 'react';
import styled from 'styled-components';
+import { black } from '../../state/ducks/SessionTheme';
import { Flex } from '../basic/Flex';
// tslint:disable: react-unused-props-and-state
@@ -46,7 +47,7 @@ const StyledLabel = styled.label<{
outline: var(--color-text) solid 1px;
border: none;
outline-offset: ${props => props.outlineOffset}px;
- margin: ${props => props.beforeMargins || ''};
+ ${props => props.beforeMargins && `margin: ${props.beforeMargins};`};
}
`;
@@ -86,6 +87,7 @@ export const SessionRadio = (props: Props) => {
filledSize={filledSize}
outlineOffset={outlineOffset}
beforeMargins={beforeMargins}
+ aria-label={label}
>
{label}
@@ -105,7 +107,7 @@ const StyledInputOutlineSelected = styled(StyledInput)`
const StyledLabelOutlineSelected = styled(StyledLabel)<{ selectedColor: string }>`
:before {
background: ${props => props.selectedColor};
- outline: #0000 solid 1px;
+ outline: ${black} solid 1px;
}
`;
diff --git a/ts/components/basic/SessionToggle.tsx b/ts/components/basic/SessionToggle.tsx
index 47f98ed96..4e3c246f3 100644
--- a/ts/components/basic/SessionToggle.tsx
+++ b/ts/components/basic/SessionToggle.tsx
@@ -2,6 +2,7 @@ import React from 'react';
import { updateConfirmModal } from '../../state/ducks/modalDialog';
import { useDispatch } from 'react-redux';
import styled from 'styled-components';
+import { white } from '../../state/ducks/SessionTheme';
const StyledKnob = styled.div<{ active: boolean }>`
position: absolute;
@@ -10,7 +11,7 @@ const StyledKnob = styled.div<{ active: boolean }>`
height: 21px;
width: 21px;
border-radius: 28px;
- background-color: white;
+ background-color: ${white};
box-shadow: ${props =>
props.active ? '-2px 1px 3px rgba(0, 0, 0, 0.15)' : '2px 1px 3px rgba(0, 0, 0, 0.15);'};
@@ -22,7 +23,7 @@ const StyledKnob = styled.div<{ active: boolean }>`
const StyledSessionToggle = styled.div<{ active: boolean }>`
width: 51px;
height: 25px;
- border: 1px solid #e5e5ea;
+ border: 1px solid #e5e5ea; // TODO Theming update
border-radius: 16px;
position: relative;
diff --git a/ts/components/conversation/TypingAnimation.tsx b/ts/components/conversation/TypingAnimation.tsx
index 0094acbea..79c1384bc 100644
--- a/ts/components/conversation/TypingAnimation.tsx
+++ b/ts/components/conversation/TypingAnimation.tsx
@@ -14,7 +14,7 @@ const StyledTypingContainer = styled.div`
const StyledTypingDot = styled.div<{ index: number }>`
border-radius: 50%;
- background-color: var(--color-text-subtle);
+ background-color: var(--color-text-subtle); // TODO Theming update
height: 6px;
width: 6px;
diff --git a/ts/components/dialog/OnionStatusPathDialog.tsx b/ts/components/dialog/OnionStatusPathDialog.tsx
index d598f08df..30a64f9ad 100644
--- a/ts/components/dialog/OnionStatusPathDialog.tsx
+++ b/ts/components/dialog/OnionStatusPathDialog.tsx
@@ -47,6 +47,25 @@ const StyledOnionDescription = styled.p`
width: 0;
`;
+const StyledVerticalLine = styled.div`
+ background: rgba(#7a7a7a, 0.6);
+ position: absolute;
+ height: calc(100% - 2 * 15px);
+ margin: 15px calc(100% / 2 - 1px);
+
+ width: 1px;
+`;
+
+const StyledLightsContainer = styled.div`
+ position: relative;
+`;
+
+const StyledGrowingIcon = styled.div`
+ flex-grow: 1;
+ display: flex;
+ align-items: center;
+`;
+
const OnionCountryDisplay = ({ labelText, snodeIp }: { snodeIp?: string; labelText: string }) => {
const element = (hovered: boolean) => (
{hovered && snodeIp ? snodeIp : labelText}
@@ -120,25 +139,6 @@ const OnionPathModalInner = () => {
);
};
-const StyledVerticalLine = styled.div`
- background: rgba(#7a7a7a, 0.6);
- position: absolute;
- height: calc(100% - 2 * 15px);
- margin: 15px calc(100% / 2 - 1px);
-
- width: 1px;
-`;
-
-const StyledLightsContainer = styled.div`
- position: relative;
-`;
-
-const StyledGrowingIcon = styled.div`
- flex-grow: 1;
- display: flex;
- align-items: center;
-`;
-
export type OnionNodeStatusLightType = {
glowStartDelay: number;
glowDuration: number;
diff --git a/ts/components/leftpane/LeftPane.tsx b/ts/components/leftpane/LeftPane.tsx
index 4e9be07ce..8bfbe1784 100644
--- a/ts/components/leftpane/LeftPane.tsx
+++ b/ts/components/leftpane/LeftPane.tsx
@@ -1,7 +1,7 @@
import React from 'react';
import { useSelector } from 'react-redux';
-import { CSSProperties } from 'styled-components';
+import styled from 'styled-components';
import { SectionType } from '../../state/ducks/section';
import { SessionTheme } from '../../state/ducks/SessionTheme';
import { getLeftPaneLists } from '../../state/selectors/conversations';
@@ -12,6 +12,11 @@ import { ActionsPanel } from './ActionsPanel';
import { LeftPaneMessageSection } from './LeftPaneMessageSection';
import { LeftPaneSettingSection } from './LeftPaneSettingSection';
+export const leftPaneListWidth = 300;
+const StyledLeftPane = styled.div`
+ width: ${leftPaneListWidth}px;
+`;
+
const InnerLeftPaneMessageSection = () => {
const showSearch = useSelector(isSearching);
@@ -46,20 +51,15 @@ const LeftPaneSection = () => {
return null;
};
-export const leftPaneListWidth = 300;
-
export const LeftPane = () => {
return (
);
diff --git a/ts/components/leftpane/LeftPaneMessageSection.tsx b/ts/components/leftpane/LeftPaneMessageSection.tsx
index 50200990b..49bbaee8e 100644
--- a/ts/components/leftpane/LeftPaneMessageSection.tsx
+++ b/ts/components/leftpane/LeftPaneMessageSection.tsx
@@ -42,6 +42,13 @@ const StyledConversationListContent = styled.div`
background: var(--color-conversation-list);
`;
+const StyledLeftPaneContent = styled.div`
+ display: flex;
+ flex-direction: column;
+ flex: 1;
+ overflow: hidden;
+`;
+
const ClosableOverlay = () => {
const overlayMode = useSelector(getOverlayMode);
@@ -146,10 +153,3 @@ export class LeftPaneMessageSection extends React.Component {
);
}
}
-
-const StyledLeftPaneContent = styled.div`
- display: flex;
- flex-direction: column;
- flex: 1;
- overflow: hidden;
-`;
diff --git a/ts/components/settings/BlockedList.tsx b/ts/components/settings/BlockedList.tsx
index 9021f1554..e32c80ace 100644
--- a/ts/components/settings/BlockedList.tsx
+++ b/ts/components/settings/BlockedList.tsx
@@ -2,7 +2,7 @@ import React, { useState } from 'react';
// tslint:disable-next-line: no-submodule-imports
import useUpdate from 'react-use/lib/useUpdate';
-import styled, { CSSProperties } from 'styled-components';
+import styled from 'styled-components';
import { useSet } from '../../hooks/useSet';
import { ToastUtils } from '../../session/utils';
import { BlockedNumberController } from '../../util';
@@ -18,14 +18,14 @@ const BlockedEntriesContainer = styled.div`
overflow: auto;
min-height: 40px;
max-height: 100%;
- background: var(--blocked-contact-list-bg);
+ background: var(--color-input-background); // TODO theming update
`;
const BlockedEntriesRoundedContainer = styled.div`
overflow: hidden;
border-radius: 16px;
padding: var(--margins-lg);
- background: var(--blocked-contact-list-bg);
+ background: var(--color-input-background); // TODO theming update
`;
const BlockedContactsSection = styled.div`
@@ -119,9 +119,7 @@ export const BlockedContactsList = () => {
}
return (
-
+
diff --git a/ts/components/settings/SessionNotificationGroupSettings.tsx b/ts/components/settings/SessionNotificationGroupSettings.tsx
index 86d2a854f..e5e96256e 100644
--- a/ts/components/settings/SessionNotificationGroupSettings.tsx
+++ b/ts/components/settings/SessionNotificationGroupSettings.tsx
@@ -57,7 +57,10 @@ export const SessionNotificationGroupSettings = (props: { hasPassword: boolean |
Notifications.addNotification(
{
conversationId: `preview-notification-${Date.now()}`,
- message: items.find(m => m.value === initialItem)?.label || 'Message body',
+ message:
+ items.find(m => m.value === initialItem)?.label ||
+ window?.i18n?.('messageBody') ||
+ 'Message body',
title: window.i18n('notificationPreview'),
iconUrl: null,
isExpiringMessage: false,
diff --git a/ts/components/settings/SessionSettings.tsx b/ts/components/settings/SessionSettings.tsx
index 7cc054aba..d991228be 100644
--- a/ts/components/settings/SessionSettings.tsx
+++ b/ts/components/settings/SessionSettings.tsx
@@ -163,7 +163,7 @@ const SettingInCategory = (props: {
case SessionSettingCategory.Permissions:
return ;
- // those three down there have no options, they are just a button
+ // these three down there have no options, they are just a button
case SessionSettingCategory.ClearData:
case SessionSettingCategory.MessageRequests:
case SessionSettingCategory.RecoveryPhrase:
diff --git a/ts/components/settings/SessionSettingsHeader.tsx b/ts/components/settings/SessionSettingsHeader.tsx
index f303a8b1b..42f8f8c01 100644
--- a/ts/components/settings/SessionSettingsHeader.tsx
+++ b/ts/components/settings/SessionSettingsHeader.tsx
@@ -1,6 +1,5 @@
import React from 'react';
import styled from 'styled-components';
-import { LocalizerKeys } from '../../types/LocalizerKeys';
import { missingCaseError } from '../../util';
import { SessionSettingCategory, SettingsViewProps } from './SessionSettings';
@@ -26,32 +25,30 @@ const StyledHeaderTittle = styled.div`
export const SettingsHeader = (props: Props) => {
const { category } = props;
- let categoryLocalized: LocalizerKeys | null = null;
+ let categoryTitle: string | null = null;
switch (category) {
case SessionSettingCategory.Appearance:
- categoryLocalized = 'appearanceSettingsTitle';
+ categoryTitle = window.i18n('appearanceSettingsTitle');
break;
case SessionSettingCategory.Conversations:
- categoryLocalized = 'conversationsSettingsTitle';
+ categoryTitle = window.i18n('conversationsSettingsTitle');
break;
case SessionSettingCategory.Notifications:
- categoryLocalized = 'notificationsSettingsTitle';
+ categoryTitle = window.i18n('notificationsSettingsTitle');
break;
case SessionSettingCategory.Help:
- categoryLocalized = 'helpSettingsTitle';
+ categoryTitle = window.i18n('helpSettingsTitle');
break;
case SessionSettingCategory.Permissions:
- categoryLocalized = 'permissionsSettingsTitle';
+ categoryTitle = window.i18n('permissionsSettingsTitle');
break;
case SessionSettingCategory.Privacy:
- categoryLocalized = 'privacySettingsTitle';
+ categoryTitle = window.i18n('privacySettingsTitle');
break;
default:
throw missingCaseError('SettingsHeader' as never);
}
- const categoryTitle = window.i18n(categoryLocalized);
-
return (
{categoryTitle}
diff --git a/ts/components/settings/SettingsThemeSwitcher.tsx b/ts/components/settings/SettingsThemeSwitcher.tsx
index ab7af0f6d..fef3d3bb0 100644
--- a/ts/components/settings/SettingsThemeSwitcher.tsx
+++ b/ts/components/settings/SettingsThemeSwitcher.tsx
@@ -159,7 +159,7 @@ const Themes = () => {
};
export const SettingsThemeSwitcher = () => {
- //FIXME store that value somewhere in the theme object
+ //TODO Theming
const [selectedAccent, setSelectedAccent] = useState(undefined);
return (
diff --git a/ts/state/ducks/SessionTheme.tsx b/ts/state/ducks/SessionTheme.tsx
index 1c42103b7..111a4e918 100644
--- a/ts/state/ducks/SessionTheme.tsx
+++ b/ts/state/ducks/SessionTheme.tsx
@@ -2,8 +2,8 @@ import React from 'react';
import { createGlobalStyle } from 'styled-components';
-const white = '#ffffff';
-const black = '#000000';
+export const white = '#ffffff';
+export const black = '#000000';
const warning = '#e7b100';
const destructive = '#ff453a';
const accentLightTheme = '#00e97b';
diff --git a/ts/types/LocalizerKeys.ts b/ts/types/LocalizerKeys.ts
index 1817fe859..d004aa636 100644
--- a/ts/types/LocalizerKeys.ts
+++ b/ts/types/LocalizerKeys.ts
@@ -7,6 +7,7 @@ export type LocalizerKeys =
| 'startedACall'
| 'mainMenuWindow'
| 'unblocked'
+ | 'keepDisabled'
| 'userAddedToModerators'
| 'otherSingular'
| 'to'
@@ -390,6 +391,7 @@ export type LocalizerKeys =
| 'changeAccountPasswordDescription'
| 'notificationSettingsDialog'
| 'invalidOldPassword'
+ | 'messageBody'
| 'audioMessageAutoplayTitle'
| 'removePasswordInvalid'
| 'password'
diff --git a/ts/util/blockedNumberController.ts b/ts/util/blockedNumberController.ts
index e49a1424e..17616ae95 100644
--- a/ts/util/blockedNumberController.ts
+++ b/ts/util/blockedNumberController.ts
@@ -88,7 +88,7 @@ export class BlockedNumberController {
}
/**
- * Unblock all thope users.
+ * Unblock all these users.
* This will only unblock the primary device of the user.
*
* @param user The user to unblock.