From a596531c576a329fd170cb598e7acea7903e5afa Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Thu, 21 Oct 2021 17:08:38 +1100 Subject: [PATCH] cleanup SessionSettings by making them less a IdoEverything --- .../session/LeftPaneSettingSection.tsx | 2 +- ts/components/session/SessionRadio.tsx | 2 +- ts/components/session/SessionToggle.tsx | 14 +- .../conversation/SessionCompositionBox.tsx | 3 +- .../session/settings/BlockedUserSettings.ts | 58 --- .../session/settings/BlockedUserSettings.tsx | 46 ++ .../session/settings/LocalSettings.ts | 388 ----------------- .../SessionNotificationGroupSettings.tsx | 42 ++ .../settings/SessionSettingListItem.tsx | 133 +++--- .../session/settings/SessionSettings.tsx | 409 ++++++++++++++---- .../settings/SessionSettingsHeader.tsx | 6 +- .../session/settings/ZoomingSessionSlider.tsx | 35 ++ ts/session/utils/Toast.tsx | 2 +- ts/state/ducks/section.tsx | 3 +- ts/state/selectors/conversations.ts | 11 +- ts/state/selectors/section.ts | 2 +- ts/window.d.ts | 8 +- 17 files changed, 522 insertions(+), 642 deletions(-) delete mode 100644 ts/components/session/settings/BlockedUserSettings.ts create mode 100644 ts/components/session/settings/BlockedUserSettings.tsx delete mode 100644 ts/components/session/settings/LocalSettings.ts create mode 100644 ts/components/session/settings/SessionNotificationGroupSettings.tsx create mode 100644 ts/components/session/settings/ZoomingSessionSlider.tsx diff --git a/ts/components/session/LeftPaneSettingSection.tsx b/ts/components/session/LeftPaneSettingSection.tsx index 011b00d6e..29e87d949 100644 --- a/ts/components/session/LeftPaneSettingSection.tsx +++ b/ts/components/session/LeftPaneSettingSection.tsx @@ -7,7 +7,7 @@ import { useDispatch, useSelector } from 'react-redux'; import { showSettingsSection } from '../../state/ducks/section'; import { getFocusedSettingsSection } from '../../state/selectors/section'; import { recoveryPhraseModal, updateDeleteAccountModal } from '../../state/ducks/modalDialog'; -import { SessionSettingCategory } from './settings/LocalSettings'; +import { SessionSettingCategory } from './settings/SessionSettings'; const getCategories = () => { return [ diff --git a/ts/components/session/SessionRadio.tsx b/ts/components/session/SessionRadio.tsx index d858e4c94..3831dfe4e 100644 --- a/ts/components/session/SessionRadio.tsx +++ b/ts/components/session/SessionRadio.tsx @@ -26,7 +26,7 @@ export const SessionRadio = (props: Props) => { value={value} aria-checked={active} checked={active} - onClick={clickHandler} + onChange={clickHandler} />