Files
EMI-ExpoAPP/Views/NotificationsView.js
T
2025-02-22 00:00:29 -05:00

53 lines
1.6 KiB
JavaScript

import { StatusBar } from 'expo-status-bar';
import React from 'react';
import { View, Text, StyleSheet, SafeAreaView, FlatList } from 'react-native';
import { Card } from 'react-native-paper';
import SinglePost from '../components/SinglePostComponent';
import Moment from 'moment';
import { useSnapshot } from 'valtio';
import GlobalState from '../contexts/GlobalState.js';
let NotificationsView = ({ navigation, route }) => {
const gState = useSnapshot(GlobalState);
const viewer = gState.me;
const renderNotification = (({ item }) => {
const gotToPost = () => {
navigation.navigate('SinglePost', { postid: item.postid });
};
return (
<Card style={{ margin: 3 }} onPress={gotToPost}>
<Card.Content>
<Text>{item.body}</Text>
<Text style={{ fontWeight: 'normal', fontSize: 12 }}>
{" " + Moment(item.ts).fromNow()}
</Text>
<SinglePost postId={item.postid} hideComments={true} />
</Card.Content>
</Card>
)
});
return (
<SafeAreaView style={styles.container}>
<View>
<FlatList
data={[...viewer.notifications].reverse().slice(0, 10)}
renderItem={renderNotification}
keyExtractor={item => item.ts}
/>
</View>
<StatusBar style="auto" />
</SafeAreaView>
);
}
export default NotificationsView;
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor: "#edf2f7",
},
});