feat: push quota

This commit is contained in:
Reinaldo Neto 2024-02-02 17:19:07 -03:00
parent c1a065ab4a
commit 05c2475d8d
4 changed files with 34 additions and 28 deletions

View File

@ -19,7 +19,9 @@ describe('test troubleshootingNotification reducer', () => {
deviceNotificationEnabled: true,
highlightTroubleshooting: false,
defaultPushGateway: true,
pushGatewayEnabled: true
pushGatewayEnabled: true,
consumptionPercentage: 0,
isCommunityEdition: false
};
mockedStore.dispatch(setTroubleshootingNotification(payload));
const state = mockedStore.getState().troubleshootingNotification;

View File

@ -6,16 +6,17 @@ export interface ITroubleshootingNotification {
pushGatewayEnabled: boolean;
defaultPushGateway: boolean;
highlightTroubleshooting: boolean;
consumptionPercentage: number;
isCommunityEdition: boolean;
}
export const initialState: ITroubleshootingNotification = {
deviceNotificationEnabled: false,
pushGatewayEnabled: false,
defaultPushGateway: 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,
highlightTroubleshooting: false,
consumptionPercentage: 0,
isCommunityEdition: false
};
export default (state = initialState, action: TActionTroubleshootingNotification): ITroubleshootingNotification => {

View File

@ -20,13 +20,14 @@ function* request() {
let defaultPushGateway = false;
let pushGatewayEnabled = false;
try {
const { authorizationStatus } = yield* call(notifee.getNotificationSettings);
const { authorizationStatus } = yield * call(notifee.getNotificationSettings);
deviceNotificationEnabled = authorizationStatus > 0;
const pushInfoResult = yield* call(pushInfo);
const pushInfoResult = yield * call(pushInfo);
if (pushInfoResult.success) {
pushGatewayEnabled = pushInfoResult.pushGatewayEnabled;
defaultPushGateway = pushInfoResult.defaultPushGateway;
}
// TODO: Need to request the information of push quota and if the server is a community edition
} catch (e) {
log(e);
} finally {

View File

@ -15,8 +15,7 @@ import { compareServerVersion, isIOS, showErrorAlert } from '../../lib/methods/h
import { requestTroubleshootingNotification } from '../../actions/troubleshootingNotification';
import { useAppSelector, usePermissions } from '../../lib/hooks';
import { Services } from '../../lib/services';
// TODO: This will be used in the near future when the consumption percentage is implemented on the server.
// import ListPercentage from './components/ListPercentage';
import ListPercentage from './components/ListPercentage';
interface IPushTroubleshootViewProps {
navigation: StackNavigationProp<SettingsStackParamList, 'PushTroubleshootView'>;
@ -26,18 +25,23 @@ const PushTroubleshootView = ({ navigation }: IPushTroubleshootViewProps): JSX.E
const { colors } = useTheme();
const dispatch = useDispatch();
const { deviceNotificationEnabled, defaultPushGateway, pushGatewayEnabled, foreground, serverVersion } = useAppSelector(
state => ({
deviceNotificationEnabled: state.troubleshootingNotification.deviceNotificationEnabled,
pushGatewayEnabled: state.troubleshootingNotification.pushGatewayEnabled,
defaultPushGateway: state.troubleshootingNotification.defaultPushGateway,
foreground: state.app.foreground,
serverVersion: state.server.version
// TODO: This will be used in the near future when the consumption percentage is implemented on the server.
// isCommunityEdition: state.troubleshootingNotification.isCommunityEdition,
// consumptionPercentage: state.troubleshootingNotification.consumptionPercentage,
})
);
const {
deviceNotificationEnabled,
defaultPushGateway,
pushGatewayEnabled,
consumptionPercentage,
isCommunityEdition,
foreground,
serverVersion
} = useAppSelector(state => ({
deviceNotificationEnabled: state.troubleshootingNotification.deviceNotificationEnabled,
pushGatewayEnabled: state.troubleshootingNotification.pushGatewayEnabled,
defaultPushGateway: state.troubleshootingNotification.defaultPushGateway,
foreground: state.app.foreground,
serverVersion: state.server.version,
isCommunityEdition: state.troubleshootingNotification.isCommunityEdition,
consumptionPercentage: state.troubleshootingNotification.consumptionPercentage
}));
const [testPushNotificationsPermission] = usePermissions(['test-push-notifications']);
@ -65,10 +69,9 @@ const PushTroubleshootView = ({ navigation }: IPushTroubleshootViewProps): JSX.E
);
};
// TODO: This will be used in the near future when the consumption percentage is implemented on the server.
// const alertWorkspaceConsumption = () => {
// Alert.alert(I18n.t('Push_consumption_alert_title'), I18n.t('Push_consumption_alert_description'));
// };
const alertWorkspaceConsumption = () => {
Alert.alert(I18n.t('Push_consumption_alert_title'), I18n.t('Push_consumption_alert_description'));
};
const goToNotificationSettings = () => {
if (isIOS) {
@ -84,7 +87,7 @@ const PushTroubleshootView = ({ navigation }: IPushTroubleshootViewProps): JSX.E
const result = await Services.pushTest();
if (result.success) {
message = I18n.t('Your_push_was_sent_to_s_devices', { s: result.tokensCount });
}
}
} catch (error: any) {
message = I18n.isTranslated(error?.data?.errorType) ? I18n.t(error?.data?.errorType) : error?.data?.error;
} finally {
@ -120,7 +123,6 @@ const PushTroubleshootView = ({ navigation }: IPushTroubleshootViewProps): JSX.E
<List.Separator />
</CustomListSection>
{/* TODO: This will be used in the near future when the consumption percentage is implemented on the server.
{isCommunityEdition ? (
<List.Section title='Community_edition_push_quota'>
<List.Separator />
@ -133,7 +135,7 @@ const PushTroubleshootView = ({ navigation }: IPushTroubleshootViewProps): JSX.E
<List.Separator />
<List.Info info='Workspace_consumption_description' />
</List.Section>
) : null} */}
) : null}
{compareServerVersion(serverVersion, 'greaterThanOrEqualTo', '6.6.0') ? (
<CustomListSection