From daae55d62cbed40f78c141aa067a945b2814f96f Mon Sep 17 00:00:00 2001 From: Warrick Corfe-Tan Date: Mon, 20 Sep 2021 15:44:19 +1000 Subject: [PATCH] Adding survey button to settings menu. --- _locales/en/messages.json | 4 +++- .../session/settings/SessionSettings.tsx | 17 +++++++++++++++++ 2 files changed, 20 insertions(+), 1 deletion(-) diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 760fc8836..8b649412b 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -441,5 +441,7 @@ "deletionTypeTitle": "Deletion Type", "deleteJustForMe": "Delete just for me", "messageDeletedPlaceholder": "This message has been deleted", - "messageDeleted": "Message deleted" + "messageDeleted": "Message deleted", + "surveyTitle": "Take our Session Survey", + "goToOurSurvey": "Go to our survey" } diff --git a/ts/components/session/settings/SessionSettings.tsx b/ts/components/session/settings/SessionSettings.tsx index 92a9196ef..05db39c86 100644 --- a/ts/components/session/settings/SessionSettings.tsx +++ b/ts/components/session/settings/SessionSettings.tsx @@ -463,6 +463,23 @@ class SettingsViewInner extends React.Component { info: (value: number) => `${value}%`, }, }, + { + id: 'session-survey', + title: window.i18n('surveyTitle'), + description: undefined, + hidden: false, + type: SessionSettingType.Button, + category: SessionSettingCategory.Appearance, + setFn: undefined, + comparisonValue: undefined, + onClick: () => { + void shell.openExternal('https://getsession.org/survey'); + }, + content: { + buttonText: window.i18n('goToOurSurvey'), + buttonColor: SessionButtonColor.Primary, + }, + }, { id: 'help-translation', title: window.i18n('translation'),