2024-05-14 22:47:13 +02:00
|
|
|
import { View, StyleSheet, FlatList } from "react-native";
|
|
|
|
import Text from "@components/Text";
|
|
|
|
import Button from "@components/Button";
|
|
|
|
import { colors } from "@components/style";
|
|
|
|
import { router } from "expo-router";
|
|
|
|
import { useEffect, useState } from "react";
|
2024-05-15 02:04:16 +02:00
|
|
|
import { useAuth } from "@context/AuthContext";
|
2024-05-14 22:47:13 +02:00
|
|
|
|
|
|
|
export default function Tab() {
|
2024-05-15 02:04:16 +02:00
|
|
|
const { authState } = useAuth();
|
|
|
|
const user = authState.user;
|
2024-05-14 22:47:13 +02:00
|
|
|
const [data, setData] = useState([]);
|
|
|
|
useEffect(() => {
|
|
|
|
fetchData();
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
async function fetchData() {
|
|
|
|
try {
|
|
|
|
const res = await fetch(`${process.env.EXPO_PUBLIC_API_URL}/review/get`, {
|
|
|
|
method: "GET",
|
|
|
|
credentials: "include",
|
|
|
|
});
|
2024-05-15 02:04:16 +02:00
|
|
|
let data = await res.json();
|
|
|
|
// show only logged in user's data
|
|
|
|
data = data.data.filter((review) => review.user_id == user._id);
|
|
|
|
console.log("reviews", data);
|
|
|
|
setData(data);
|
2024-05-14 22:47:13 +02:00
|
|
|
} catch (err) {
|
|
|
|
console.error(err);
|
|
|
|
alert("Something went wrong");
|
|
|
|
}
|
|
|
|
}
|
2024-05-15 02:04:58 +02:00
|
|
|
const opt3 = ["Bad", "Medium", "Excellent!"];
|
|
|
|
const opt5 = [
|
|
|
|
"Disgust",
|
|
|
|
"Not great, not terrible",
|
|
|
|
"Good",
|
|
|
|
"Why not?",
|
|
|
|
"Excellent!",
|
|
|
|
];
|
2024-05-14 22:47:13 +02:00
|
|
|
|
|
|
|
return (
|
|
|
|
<View style={styles.container}>
|
|
|
|
<FlatList
|
|
|
|
data={data}
|
|
|
|
style={styles.reviewList}
|
|
|
|
keyExtractor={(item) => String(item._id)}
|
|
|
|
renderItem={({ item }) => (
|
|
|
|
<View style={styles.item}>
|
|
|
|
<Text>Name: {item.name}</Text>
|
|
|
|
<Text>Brand: {item.brand}</Text>
|
|
|
|
<Text>Degree: {item.degree}</Text>
|
|
|
|
<Text>Packaging: {item.packaging}</Text>
|
|
|
|
</View>
|
|
|
|
)}
|
|
|
|
/>
|
|
|
|
</View>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
export const styles = StyleSheet.create({
|
|
|
|
container: {
|
|
|
|
flex: 1,
|
|
|
|
justifyContent: "center",
|
|
|
|
alignItems: "center",
|
|
|
|
marginTop: "5%",
|
|
|
|
},
|
|
|
|
reviewList: {
|
|
|
|
width: "100%",
|
|
|
|
paddingHorizontal: "15%",
|
|
|
|
marginTop: "5%",
|
|
|
|
},
|
|
|
|
item: {
|
|
|
|
borderColor: "gray",
|
|
|
|
borderWidth: 1,
|
|
|
|
borderRadius: 10,
|
|
|
|
padding: 13,
|
|
|
|
marginBottom: "5%",
|
|
|
|
},
|
|
|
|
});
|