From a853d27b2850e3294f5a9dbef3e4e34f2a1c69c7 Mon Sep 17 00:00:00 2001 From: Audric Ackermann Date: Tue, 28 Jul 2020 08:34:20 +1000 Subject: [PATCH] disable multi device link and show warnings placeholder --- _locales/en/messages.json | 12 ++++++++++++ ts/components/session/ActionsPanel.tsx | 13 +++++++++++++ ts/components/session/RegistrationTabs.tsx | 6 ++++-- ts/components/session/settings/SessionSettings.tsx | 2 +- .../session/settings/SessionSettingsHeader.tsx | 5 ++++- 5 files changed, 34 insertions(+), 4 deletions(-) diff --git a/_locales/en/messages.json b/_locales/en/messages.json index e47117dd9..ba0f26866 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -1318,6 +1318,18 @@ "message": "Typing Indicators", "description": "Title of the typing indicators setting" }, + "multiDeviceDisabledTemporary": { + "message": "", + "description": "Description of why multi device is disabled" + }, + "multiDeviceDisabledTemporaryToastMessage": { + "message": "", + "description": "Description of why multi device is disabled on a toast on app start" + }, + "multiDeviceDisabledTemporaryToastDescription": { + "message": " ", + "description": "Description of why multi device is disabled on a toast on app start" + }, "messageTTL": { "message": "Message TTL", "description": "Title of the Message TTL setting" diff --git a/ts/components/session/ActionsPanel.tsx b/ts/components/session/ActionsPanel.tsx index 2664b6ba0..05fa564b8 100644 --- a/ts/components/session/ActionsPanel.tsx +++ b/ts/components/session/ActionsPanel.tsx @@ -56,6 +56,19 @@ export class ActionsPanel extends React.Component { }, 'refreshAvatarCallback' ); + setTimeout( + () => + window.pushToast({ + title: window.i18n('multiDeviceDisabledTemporaryToastMessage'), + description: window.i18n( + 'multiDeviceDisabledTemporaryToastMessage' + ), + type: 'warning', + id: 'multiDeviceDisabledTemporaryToastMessage', + shouldFade: false, + }), + 4000 + ); } ); } diff --git a/ts/components/session/RegistrationTabs.tsx b/ts/components/session/RegistrationTabs.tsx index be7d733ea..f934be28c 100644 --- a/ts/components/session/RegistrationTabs.tsx +++ b/ts/components/session/RegistrationTabs.tsx @@ -558,7 +558,8 @@ export class RegistrationTabs extends React.Component<{}, State> { SessionButtonColor.Green )}

{or}

- {this.renderLinkDeviceToExistingAccountButton()} + {/* FIXME enable back to allow linking of device + this.renderLinkDeviceToExistingAccountButton() */} ); } @@ -584,7 +585,8 @@ export class RegistrationTabs extends React.Component<{}, State> {
{this.renderContinueYourSessionButton()}

{or}

- {this.renderLinkDeviceToExistingAccountButton()} + {/* FIXME enable back to allow linking of device + this.renderLinkDeviceToExistingAccountButton()*/}
); } diff --git a/ts/components/session/settings/SessionSettings.tsx b/ts/components/session/settings/SessionSettings.tsx index 3b4076da0..f60459ea8 100644 --- a/ts/components/session/settings/SessionSettings.tsx +++ b/ts/components/session/settings/SessionSettings.tsx @@ -644,7 +644,7 @@ export class SettingsView extends React.Component { id: 'no-linked-device', title: noPairedDeviceText, type: undefined, - description: '', + description: window.i18n('multiDeviceDisabledTemporary'), category: SessionSettingCategory.Devices, content: {}, comparisonValue: undefined, diff --git a/ts/components/session/settings/SessionSettingsHeader.tsx b/ts/components/session/settings/SessionSettingsHeader.tsx index 21e663e96..b1e33393a 100644 --- a/ts/components/session/settings/SessionSettingsHeader.tsx +++ b/ts/components/session/settings/SessionSettingsHeader.tsx @@ -74,9 +74,12 @@ export class SettingsHeader extends React.Component { ? `${categoryTitlePrefix.slice(0, -1)} Settings` : `${categoryTitlePrefix} Settings`; const showSearch = false; - const showAddDevice = + const showAddDevice = false; + /* FIXME enable back to allow linking of device + const showAddDevice = category === SessionSettingCategory.Devices && this.props.showLinkDeviceButton; + */ return (