feat: add vibration when receive in-app notifications
This commit is contained in:
parent
7934141d31
commit
d167117963
|
@ -1,18 +1,20 @@
|
|||
import React from 'react';
|
||||
import React, { useEffect } from 'react';
|
||||
import { StyleSheet, Text, View } from 'react-native';
|
||||
import Touchable from 'react-native-platform-touchable';
|
||||
import { connect } from 'react-redux';
|
||||
import { useSafeAreaInsets } from 'react-native-safe-area-context';
|
||||
import * as Haptics from 'expo-haptics';
|
||||
|
||||
import Avatar from '../Avatar';
|
||||
import { CustomIcon } from '../CustomIcon';
|
||||
import sharedStyles from '../../views/Styles';
|
||||
import { themes } from '../../lib/constants';
|
||||
import { NOTIFICATION_IN_APP_VIBRATION, themes } from '../../lib/constants';
|
||||
import { useTheme } from '../../theme';
|
||||
import { ROW_HEIGHT } from '../RoomItem';
|
||||
import { goRoom } from '../../lib/methods/helpers/goRoom';
|
||||
import { IApplicationState, ISubscription, SubscriptionType } from '../../definitions';
|
||||
import { hideNotification } from '../../lib/methods/helpers/notifications';
|
||||
import userPreferences from '../../lib/methods/userPreferences';
|
||||
|
||||
export interface INotifierComponent {
|
||||
notification: {
|
||||
|
@ -97,6 +99,13 @@ const NotifierComponent = React.memo(({ notification, isMasterDetail }: INotifie
|
|||
hideNotification();
|
||||
};
|
||||
|
||||
useEffect(() => {
|
||||
const notificationInAppVibration = userPreferences.getBool(NOTIFICATION_IN_APP_VIBRATION);
|
||||
if (notificationInAppVibration || notificationInAppVibration === null) {
|
||||
Haptics.notificationAsync(Haptics.NotificationFeedbackType.Success);
|
||||
}
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<View
|
||||
style={[
|
||||
|
|
|
@ -763,5 +763,7 @@
|
|||
"Pinned_a_message": "Pinned a message:",
|
||||
"You_dont_have_permission_to_perform_this_action": "You don’t have permission to perform this action. Check with a workspace administrator.",
|
||||
"Jump_to_message": "Jump to message",
|
||||
"Missed_call": "Missed call"
|
||||
"Missed_call": "Missed call",
|
||||
"In_app_message_notifications": "In-app message notifications",
|
||||
"Vibrate": "Vibrate"
|
||||
}
|
|
@ -1 +1,2 @@
|
|||
export const NOTIFICATION_PRESENCE_CAP = 'NOTIFICATION_PRESENCE_CAP';
|
||||
export const NOTIFICATION_IN_APP_VIBRATION = 'NOTIFICATION_IN_APP_VIBRATION';
|
||||
|
|
|
@ -29,7 +29,6 @@ class UserPreferences {
|
|||
|
||||
getBool(key: string): boolean | null {
|
||||
try {
|
||||
console.log(this.mmkv.getBool(key));
|
||||
return this.mmkv.getBool(key) ?? null;
|
||||
} catch {
|
||||
return null;
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
import React, { useEffect, useLayoutEffect, useState } from 'react';
|
||||
import { Switch } from 'react-native';
|
||||
import { StackNavigationProp } from '@react-navigation/stack';
|
||||
import { useNavigation } from '@react-navigation/native';
|
||||
|
||||
|
@ -14,8 +15,11 @@ import { Services } from '../../lib/services';
|
|||
import { useAppSelector } from '../../lib/hooks';
|
||||
import ListPicker from './ListPicker';
|
||||
import log from '../../lib/methods/helpers/log';
|
||||
import { useUserPreferences } from '../../lib/methods';
|
||||
import { NOTIFICATION_IN_APP_VIBRATION, SWITCH_TRACK_COLOR } from '../../lib/constants';
|
||||
|
||||
const UserNotificationPreferencesView = () => {
|
||||
const [inAppVibration, setInAppVibration] = useUserPreferences<boolean>(NOTIFICATION_IN_APP_VIBRATION, true);
|
||||
const [preferences, setPreferences] = useState({} as INotificationPreferences);
|
||||
const [loading, setLoading] = useState(true);
|
||||
|
||||
|
@ -58,6 +62,10 @@ const UserNotificationPreferencesView = () => {
|
|||
}
|
||||
};
|
||||
|
||||
const toggleInAppVibration = () => {
|
||||
setInAppVibration(!inAppVibration);
|
||||
};
|
||||
|
||||
return (
|
||||
<SafeAreaView testID='user-notification-preference-view'>
|
||||
<StatusBar />
|
||||
|
@ -92,6 +100,18 @@ const UserNotificationPreferencesView = () => {
|
|||
<List.Info info='Push_Notifications_Alert_Info' />
|
||||
</List.Section>
|
||||
|
||||
<List.Section title='In_app_message_notifications'>
|
||||
<List.Separator />
|
||||
<List.Item
|
||||
title='Vibrate'
|
||||
testID='user-notification-preference-view-in-app-vibration'
|
||||
right={() => (
|
||||
<Switch value={inAppVibration} trackColor={SWITCH_TRACK_COLOR} onValueChange={toggleInAppVibration} />
|
||||
)}
|
||||
/>
|
||||
<List.Separator />
|
||||
</List.Section>
|
||||
|
||||
<List.Section title='Email'>
|
||||
<List.Separator />
|
||||
<ListPicker
|
||||
|
|
Loading…
Reference in New Issue