add HapticFeedback as component to use the life cycle
This commit is contained in:
parent
b156c266ee
commit
512a05336f
|
@ -0,0 +1,77 @@
|
|||
import { useNavigation } from '@react-navigation/native';
|
||||
import { useEffect, useRef } from 'react';
|
||||
import { Subscription } from 'rxjs';
|
||||
import { Q } from '@nozbe/watermelondb';
|
||||
import * as Haptics from 'expo-haptics';
|
||||
|
||||
import database from '../../../lib/database';
|
||||
import { useAppSelector } from '../../../lib/hooks';
|
||||
import { getUserSelector } from '../../../selectors/login';
|
||||
import { useUserPreferences } from '../../../lib/methods';
|
||||
import { NOTIFICATION_IN_APP_VIBRATION } from '../../../lib/constants';
|
||||
|
||||
const HapticFeedback = ({ rid, tmid }: { rid?: string; tmid?: string }) => {
|
||||
const subscription = useRef<Subscription | null>(null);
|
||||
const focused = useRef(false);
|
||||
const navigation = useNavigation();
|
||||
const userId = useAppSelector(state => getUserSelector(state).id);
|
||||
const [notificationInAppVibration] = useUserPreferences<boolean>(NOTIFICATION_IN_APP_VIBRATION, true);
|
||||
|
||||
const initHaptic = () => {
|
||||
if (!rid) {
|
||||
return;
|
||||
}
|
||||
const db = database.active;
|
||||
let observable;
|
||||
if (!tmid) {
|
||||
observable = db
|
||||
.get('messages')
|
||||
.query(
|
||||
Q.and(
|
||||
Q.where('rid', rid),
|
||||
Q.or(Q.where('tmid', null), Q.where('tshow', Q.eq(true))),
|
||||
Q.where('u', Q.notLike(`%${userId}%`))
|
||||
)
|
||||
)
|
||||
.observeCount();
|
||||
} else {
|
||||
observable = db
|
||||
.get('thread_messages')
|
||||
.query(Q.where('rid', tmid), Q.where('u', Q.notLike(`%${userId}%`)))
|
||||
.observeCount();
|
||||
}
|
||||
|
||||
// TODO: Update watermelonDB to recognize experimentalSubscribe at types
|
||||
// experimentalSubscribe(subscriber: (isDeleted: boolean) => void, debugInfo?: any): Unsubscribe
|
||||
// @ts-ignore
|
||||
subscription.current = observable.subscribe(async () => {
|
||||
if (focused.current) {
|
||||
if (notificationInAppVibration || notificationInAppVibration === null) {
|
||||
await Haptics.notificationAsync(Haptics.NotificationFeedbackType.Success);
|
||||
console.log('🚀 ~ RoomSubscription ~ Haptics:', 'Haptics');
|
||||
}
|
||||
}
|
||||
focused.current = true;
|
||||
});
|
||||
};
|
||||
|
||||
useEffect(() => {
|
||||
const unsubscribeFocus = navigation.addListener('focus', () => {
|
||||
initHaptic();
|
||||
});
|
||||
|
||||
const unsubscribeBlur = navigation.addListener('blur', () => {
|
||||
subscription.current?.unsubscribe && subscription.current.unsubscribe();
|
||||
focused.current = false;
|
||||
});
|
||||
|
||||
return () => {
|
||||
unsubscribeFocus();
|
||||
unsubscribeBlur();
|
||||
};
|
||||
}, [navigation]);
|
||||
|
||||
return null;
|
||||
};
|
||||
|
||||
export default HapticFeedback;
|
|
@ -96,6 +96,7 @@ import audioPlayer from '../../lib/methods/audioPlayer';
|
|||
import { IListContainerRef, TListRef } from './List/definitions';
|
||||
import { getThreadById } from '../../lib/database/services/Thread';
|
||||
import { focusedThreadRoom, removeFocusedThreadRoom } from '../../actions/room';
|
||||
import HapticFeedback from './components/HapticFeedback';
|
||||
|
||||
type TStateAttrsUpdate = keyof IRoomViewState;
|
||||
|
||||
|
@ -1554,6 +1555,7 @@ class RoomView extends React.Component<IRoomViewProps, IRoomViewState> {
|
|||
{this.renderActions()}
|
||||
<UploadProgress rid={rid} user={user} baseUrl={baseUrl} width={width} />
|
||||
<JoinCode ref={this.joinCode} onJoin={this.onJoin} rid={rid} t={t} theme={theme} />
|
||||
<HapticFeedback rid={this.rid} tmid={this.tmid} />
|
||||
</SafeAreaView>
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue