diff --git a/app/reducers/troubleshootingNotification.test.ts b/app/reducers/troubleshootingNotification.test.ts index ea2860aef..b34ed265a 100644 --- a/app/reducers/troubleshootingNotification.test.ts +++ b/app/reducers/troubleshootingNotification.test.ts @@ -17,7 +17,7 @@ describe('test troubleshootingNotification reducer', () => { it('should return correctly value after call troubleshootingNotification action', () => { const payload: ITroubleshootingNotification = { deviceNotificationEnabled: true, - inAlertNotification: false, + highlightTroubleshooting: false, defaultPushGateway: true, pushGatewayEnabled: true }; diff --git a/app/reducers/troubleshootingNotification.ts b/app/reducers/troubleshootingNotification.ts index 2b8ab5274..be7311060 100644 --- a/app/reducers/troubleshootingNotification.ts +++ b/app/reducers/troubleshootingNotification.ts @@ -5,14 +5,14 @@ export interface ITroubleshootingNotification { deviceNotificationEnabled: boolean; pushGatewayEnabled: boolean; defaultPushGateway: boolean; - inAlertNotification: boolean; + highlightTroubleshooting: boolean; } export const initialState: ITroubleshootingNotification = { deviceNotificationEnabled: false, pushGatewayEnabled: false, defaultPushGateway: false, - inAlertNotification: false + highlightTroubleshooting: false // TODO: This will be used in the near future when the consumption percentage is implemented on the server. // consumptionPercentage: 0, // isCommunityEdition: false, diff --git a/app/sagas/troubleshootingNotification.ts b/app/sagas/troubleshootingNotification.ts index 85ed1b032..634f11c74 100644 --- a/app/sagas/troubleshootingNotification.ts +++ b/app/sagas/troubleshootingNotification.ts @@ -31,11 +31,16 @@ function* request() { log(e); } finally { // If Any of the items that can have red values: notification settings, CE quota, or gateway connection; the red icon should show. - // Then inAlertNotification has to be true - const inAlertNotification = + // Then highlightTroubleshooting has to be true + const highlightTroubleshooting = !deviceNotificationEnabled || (compareServerVersion(serverVersion, 'greaterThanOrEqualTo', '6.6.0') && !pushGatewayEnabled); yield put( - setTroubleshootingNotification({ deviceNotificationEnabled, defaultPushGateway, pushGatewayEnabled, inAlertNotification }) + setTroubleshootingNotification({ + deviceNotificationEnabled, + defaultPushGateway, + pushGatewayEnabled, + highlightTroubleshooting + }) ); } } diff --git a/app/views/RoomView/RightButtons.tsx b/app/views/RoomView/RightButtons.tsx index 17a438cec..9c357985b 100644 --- a/app/views/RoomView/RightButtons.tsx +++ b/app/views/RoomView/RightButtons.tsx @@ -46,7 +46,7 @@ interface IRightButtonsProps extends Pick { rid?: string; theme?: TSupportedThemes; colors?: TColors; - inAlertNotification: boolean; + highlightTroubleshooting: boolean; } interface IRigthButtonsState { @@ -95,7 +95,7 @@ class RightButtonsContainer extends Component { const { room } = this; - const { rid, navigation, isMasterDetail, inAlertNotification } = this.props; + const { rid, navigation, isMasterDetail, highlightTroubleshooting } = this.props; if (!rid || !room) { return; } - if (!inAlertNotification && room) { + if (!highlightTroubleshooting && room) { if (isMasterDetail) { navigation.navigate('ModalStackNavigator', { screen: 'NotificationPrefView', @@ -357,7 +357,7 @@ class RightButtonsContainer extends Component ({ threadsEnabled: state.settings.Threads_enabled as boolean, isMasterDetail: state.app.isMasterDetail, livechatRequestComment: state.settings.Livechat_request_comment_when_closing_conversation as boolean, - inAlertNotification: state.troubleshootingNotification.inAlertNotification + highlightTroubleshooting: state.troubleshootingNotification.highlightTroubleshooting }); export default connect(mapStateToProps)(withTheme(RightButtonsContainer)); diff --git a/app/views/RoomsListView/index.tsx b/app/views/RoomsListView/index.tsx index d6ba331b3..eb30cc153 100644 --- a/app/views/RoomsListView/index.tsx +++ b/app/views/RoomsListView/index.tsx @@ -92,7 +92,7 @@ interface IRoomsListViewProps { createPrivateChannelPermission: []; createDiscussionPermission: []; serverVersion: string; - inAlertNotification: boolean; + highlightTroubleshooting: boolean; } interface IRoomsListViewState { @@ -147,7 +147,7 @@ const shouldUpdateProps = [ 'createPublicChannelPermission', 'createPrivateChannelPermission', 'createDiscussionPermission', - 'inAlertNotification', + 'highlightTroubleshooting', 'supportedVersionsStatus' ]; @@ -335,7 +335,7 @@ class RoomsListView extends React.Component { const { searching, canCreateRoom } = this.state; - const { navigation, isMasterDetail, notificationPresenceCap, inAlertNotification, supportedVersionsStatus, theme } = + const { navigation, isMasterDetail, notificationPresenceCap, highlightTroubleshooting, supportedVersionsStatus, theme } = this.props; if (searching) { return { @@ -462,12 +462,14 @@ class RoomsListView extends React.Component , headerRight: () => ( - + {highlightTroubleshooting ? ( + + ) : null} {canCreateRoom ? ( ({ createPrivateChannelPermission: state.permissions['create-p'], createDiscussionPermission: state.permissions['start-discussion'], serverVersion: state.server.version, - inAlertNotification: state.troubleshootingNotification.inAlertNotification + highlightTroubleshooting: state.troubleshootingNotification.highlightTroubleshooting }); export default connect(mapStateToProps)(withDimensions(withTheme(withSafeAreaInsets(RoomsListView))));