alert and push.info just for 6.6

This commit is contained in:
Reinaldo Neto 2023-12-08 00:39:02 -03:00
parent 10d954ebf1
commit 4fe161a19d
2 changed files with 6 additions and 2 deletions

View File

@ -7,12 +7,15 @@ import { TROUBLESHOOTING_NOTIFICATION } from '../actions/actionsTypes';
import { setTroubleshootingNotification } from '../actions/troubleshootingNotification';
import { pushInfo } from '../lib/services/restApi';
import log from '../lib/methods/helpers/log';
import { appSelector } from '../lib/hooks';
import { compareServerVersion } from '../lib/methods/helpers';
interface IGenericAction extends Action {
type: string;
}
function* request() {
const serverVersion = yield* appSelector(state => state.server.version);
let deviceNotificationEnabled = false;
let defaultPushGateway = false;
let pushGatewayEnabled = false;
@ -29,7 +32,8 @@ function* request() {
} 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 = !deviceNotificationEnabled || !pushGatewayEnabled;
const inAlertNotification =
!deviceNotificationEnabled || (compareServerVersion(serverVersion, 'greaterThanOrEqualTo', '6.6.0') && !pushGatewayEnabled);
yield put(
setTroubleshootingNotification({ deviceNotificationEnabled, defaultPushGateway, pushGatewayEnabled, inAlertNotification })
);

View File

@ -133,7 +133,7 @@ const PushTroubleshootView = ({ navigation }: IPushTroubleshootViewProps): JSX.E
</List.Section>
) : null} */}
{compareServerVersion(serverVersion, 'greaterThanOrEqualTo', '6.5.0') ? (
{compareServerVersion(serverVersion, 'greaterThanOrEqualTo', '6.6.0') ? (
<CustomListSection
title={!defaultPushGateway ? 'Custom_push_gateway_connection' : 'Push_gateway_connection'}
statusColor={pushGatewayStatusColor}