import React, {useState, useEffect, useRef} from 'react'
import { Button, Text, View, StyleSheet, Dimensions} from 'react-native'
import {FlatList, ListViewBase } from 'react-native'
import {TouchableOpacity} from 'react-native-gesture-handler'
import {List, Divider} from 'react-native-paper'
import Loading from './Loading'
import firebase from 'firebase';
import { styles } from "../../config/styles";
import { TextInput, TouchableWithoutFeedback, Keyboard, ImageBackground} from "react-native";
import { connect } from 'react-redux'
import { bindActionCreators } from 'redux'
import { fetchUser } from '../../redux/actions/index'
import Constants from 'expo-constants';
import * as Notifications from 'expo-notifications';
Notifications.setNotificationHandler({
handleNotification: async () => ({
shouldShowAlert: true,
shouldPlaySound: true,
shouldSetBadge: false,
}),
});
export function Home_page({navigation}) {
const [threads, setThreads] = useState([]);
const [loading, setLoading] = useState(true);
const [appointments, setAppointments] = useState([]);
const [expoPushToken, setExpoPushToken] = useState('');
const [notification, setNotification] = useState(false);
const notificationListener = useRef();
const responseListener = useRef();
useEffect(() => {
registerForPushNotificationsAsync().then(token => setExpoPushToken(token));
notificationListener.current = Notifications.addNotificationReceivedListener(notification => {
setNotification(notification);
});
responseListener.current = Notifications.addNotificationResponseReceivedListener(response => {
console.log(response);
});
const fire = firebase.firestore()
.collection('THREADS')
.where("members", "array-contains", firebase.auth().currentUser.uid)
.onSnapshot(querySnapshot => {
const threads = querySnapshot.docs.map(documentSnapshot => {
return{
_id:documentSnapshot.id,
name:'',
...documentSnapshot.data()
};
});
setThreads(threads);
console.log(threads);
if(loading){
setLoading(false);
}
});
const cita = firebase.firestore().collection('APPOINTMENTS').where('Day', '==', 8).onSnapshot(snapShot => {
const appointments = snapShot.docs.map(docSnap => {
return{
_id:docSnap.id,
Day:'',
Month:'',
Time:'',
i_id:'',
uid1:'',
...docSnap.data()
};
});
setAppointments(appointments);
console.log(appointments);
});
return () => {
Notifications.removeNotificationSubscription(notificationListener.current);
Notifications.removeNotificationSubscription(responseListener.current);
fire();
cita();
}
}, []);
if (loading) {
return ;
}
function handleButtonPress() {
firebase.firestore()
.collection('THREADS')
.add({
name: 'PedroFecha',
members: [
firebase.auth().currentUser.uid,
'02yOZHxFcGUX4MNwjeEbAlCShdu1'
]
})
}
const dimensions = Dimensions.get('window');
const screenWidth = dimensions.width;
return (
item._id}
ItemSeparatorComponent={() => }
renderItem = {({item}) => (
navigation.navigate('Room', {thread: item})}
>
)}
/>
item._id}
ItemSeparatorComponent={() => }
renderItem = {({item}) => (
{
await sendPushNotification(expoPushToken);
}}
>
)}
/>
Your expo push token: {expoPushToken}
Title: {notification && notification.request.content.title}
Body: {notification && notification.request.content.body}
Data: {notification && JSON.stringify(notification.request.content.data)}
);
}
// Can use this function below, OR use Expo's Push Notification Tool-> https://expo.dev/notifications
async function sendPushNotification(expoPushToken) {
const message = {
to: expoPushToken,
sound: 'default',
title: 'Original Title',
body: 'And here is the body!',
data: { someData: 'goes here' },
};
await fetch('https://exp.host/--/api/v2/push/send', {
method: 'POST',
headers: {
Accept: 'application/json',
'Accept-encoding': 'gzip, deflate',
'Content-Type': 'application/json',
},
body: JSON.stringify(message),
});
}
async function registerForPushNotificationsAsync() {
let token;
if (Constants.isDevice) {
const { status: existingStatus } = await Notifications.getPermissionsAsync();
let finalStatus = existingStatus;
if (existingStatus !== 'granted') {
const { status } = await Notifications.requestPermissionsAsync();
finalStatus = status;
}
if (finalStatus !== 'granted') {
alert('Failed to get push token for push notification!');
return;
}
token = (await Notifications.getExpoPushTokenAsync()).data;
console.log(token);
} else {
alert('Must use physical device for Push Notifications');
}
if (Platform.OS === 'android') {
Notifications.setNotificationChannelAsync('default', {
name: 'default',
importance: Notifications.AndroidImportance.MAX,
vibrationPattern: [0, 250, 250, 250],
lightColor: '#FF231F7C',
});
}
firebase.firestore().collection('Interprete').doc(firebase.auth().currentUser.uid).update({'push_token': token})
firebase.firestore().collection('Users').doc(firebase.auth().currentUser.uid).update({'push_token': token})
return token;
}
const mapStateToProps = (store) => ({
currentUser: store.userState.currentUser
})
const mapDispatchProps = (dispatch) => bindActionCreators({fetchUser}, dispatch);
export default connect(mapStateToProps, mapDispatchProps)(Home_page);