haptic when the user is focusing the room that received the message

This commit is contained in:
Reinaldo Neto 2023-12-18 16:19:48 -03:00
parent d167117963
commit f150e3e9bf
2 changed files with 14 additions and 12 deletions

View File

@ -1,20 +1,18 @@
import React, { useEffect } from 'react';
import React 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 { NOTIFICATION_IN_APP_VIBRATION, themes } from '../../lib/constants';
import { 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: {
@ -99,13 +97,6 @@ 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={[

View File

@ -1,11 +1,14 @@
import React, { ElementType, memo, useEffect } from 'react';
import { Easing, Notifier, NotifierRoot } from 'react-native-notifier';
import * as Haptics from 'expo-haptics';
import NotifierComponent, { INotifierComponent } from './NotifierComponent';
import EventEmitter from '../../lib/methods/helpers/events';
import Navigation from '../../lib/navigation/appNavigation';
import { getActiveRoute } from '../../lib/methods/helpers/navigation';
import { useAppSelector } from '../../lib/hooks';
import userPreferences from '../../lib/methods/userPreferences';
import { NOTIFICATION_IN_APP_VIBRATION } from '../../lib/constants';
export const INAPP_NOTIFICATION_EMITTER = 'NotificationInApp';
@ -30,7 +33,15 @@ const InAppNotification = memo(() => {
const state = Navigation.navigationRef.current?.getRootState();
const route = getActiveRoute(state);
if (payload?.rid || notification.customNotification) {
if (payload?.rid === subscribedRoom || route?.name === 'JitsiMeetView' || payload?.message?.t === 'videoconf') return;
if (route?.name === 'JitsiMeetView' || payload?.message?.t === 'videoconf') return;
if (payload?.rid === subscribedRoom) {
const notificationInAppVibration = userPreferences.getBool(NOTIFICATION_IN_APP_VIBRATION);
if (notificationInAppVibration || notificationInAppVibration === null) {
Haptics.notificationAsync(Haptics.NotificationFeedbackType.Success);
}
return;
}
Notifier.showNotification({
showEasing: Easing.inOut(Easing.quad),