From 1fe6b61308ea48f0614b0adc088cd88e89bae1dd Mon Sep 17 00:00:00 2001 From: Warrick Corfe-Tan Date: Mon, 11 Oct 2021 12:25:27 +1100 Subject: [PATCH] Re-adding code that wasn't commited. Adding button for debug log in settings. --- _locales/en/messages.json | 1 + .../message/OutgoingMessageStatus.tsx | 7 ++++++- .../session/settings/SessionSettings.tsx | 19 ++++++++++++++++++- 3 files changed, 25 insertions(+), 2 deletions(-) diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 148d68311..652bb95f4 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -73,6 +73,7 @@ "attemptingReconnection": "Attempting reconnect in $reconnect_duration_in_seconds$ seconds", "submitDebugLog": "Debug log", "debugLog": "Debug Log", + "showDebugLog": "Show Debug Log", "goToReleaseNotes": "Go to Release Notes", "goToSupportPage": "Go to Support Page", "menuReportIssue": "Report an Issue", diff --git a/ts/components/conversation/message/OutgoingMessageStatus.tsx b/ts/components/conversation/message/OutgoingMessageStatus.tsx index 2a6869b75..a386fdd95 100644 --- a/ts/components/conversation/message/OutgoingMessageStatus.tsx +++ b/ts/components/conversation/message/OutgoingMessageStatus.tsx @@ -1,3 +1,4 @@ +import { ipcRenderer } from 'electron/renderer'; import React from 'react'; import styled from 'styled-components'; import { MessageDeliveryStatus } from '../../../models/messageType'; @@ -40,8 +41,12 @@ const MessageStatusRead = () => { }; const MessageStatusError = () => { + const showDebugLog = () => { + ipcRenderer.send('show-debug-log'); + }; + return ( - + ); diff --git a/ts/components/session/settings/SessionSettings.tsx b/ts/components/session/settings/SessionSettings.tsx index 05db39c86..487bc236b 100644 --- a/ts/components/session/settings/SessionSettings.tsx +++ b/ts/components/session/settings/SessionSettings.tsx @@ -14,7 +14,7 @@ import { getPasswordHash, hasLinkPreviewPopupBeenDisplayed, } from '../../../../ts/data/data'; -import { shell } from 'electron'; +import { ipcRenderer, shell } from 'electron'; import { mapDispatchToProps } from '../../../state/actions'; import { unblockConvoById } from '../../../interactions/conversationInteractions'; import { toggleAudioAutoplay } from '../../../state/ducks/userConfig'; @@ -497,6 +497,23 @@ class SettingsViewInner extends React.Component { buttonColor: SessionButtonColor.Primary, }, }, + { + id: 'debug-log-setting', + title: window.i18n('showDebugLog'), + description: undefined, + hidden: false, + type: SessionSettingType.Button, + category: SessionSettingCategory.Appearance, + setFn: undefined, + comparisonValue: undefined, + onClick: () => { + ipcRenderer.send('show-debug-log'); + }, + content: { + buttonText: window.i18n('debugLog'), + buttonColor: SessionButtonColor.Primary, + }, + }, { id: 'media-permissions', title: window.i18n('mediaPermissionsTitle'),