Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Dev/issues #386

Merged
merged 5 commits into from
Sep 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions frontend/src/Components/LikesTab.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useState, useEffect } from "react";
import { View, Text, StyleSheet, ScrollView } from "react-native";
import { View, Text, StyleSheet, ScrollView, RefreshControl } from "react-native";
import { useTheme } from "../styles/ThemeContext";
import { getUserLikedPosts, getLikesOfPost, getLikesOfReview } from "../Services/LikesApiService";
import { getCountCommentsOfPost, getCountCommentsOfReview, removePost, removeReview } from "../Services/PostsApiServices";
Expand All @@ -8,7 +8,7 @@ import Post from "./Post";
import Review from "./Review";


export default function LikesTab({ userInfo, userProfile, handleCommentPress, refreshing }) {
export default function LikesTab({ userInfo, userProfile, handleCommentPress, refreshing, onRefresh }) {
const [likedPosts, setLikedPosts] = useState([]);
const [loading, setLoading] = useState(false);
const { theme } = useTheme();
Expand Down Expand Up @@ -88,10 +88,11 @@ export default function LikesTab({ userInfo, userProfile, handleCommentPress, re

useEffect(() => {
fetchLikedPosts();
}, []);
}, [refreshing]);

const handleRefresh = () => {
if (refreshing) {
console.log("refreshing");
fetchLikedPosts();
}
};
Expand Down
4 changes: 3 additions & 1 deletion frontend/src/Components/PostsTab.js
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,9 @@ export default function PostsTab({ userInfo, userProfile, handleCommentPress, re

useEffect(() => {
fetchPostsAndReviews();
}, []);
}, [refreshing]);



if (refreshing) {
console.log("refreshing");
Expand Down
8 changes: 4 additions & 4 deletions frontend/src/Components/Review.js
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ export default function Review({
<Text style={styles.reviewButtonText}>Review</Text>
</TouchableOpacity>
<Pressable onPress={toggleModal} style={{ marginLeft: 10 }}>
<Icon name="more-vert" size={20} />
<Icon name="more-vert" size={20} color={theme.iconColor} />
</Pressable>
</View>

Expand All @@ -232,7 +232,7 @@ export default function Review({
<Text style={styles.star}>
<Icon name="star" size={22} color={"gold"} />
</Text>
<Text>{rating}</Text>
<Text style={{ color: theme.textColor }}>{rating}</Text>
</View>
</View>

Expand All @@ -244,7 +244,7 @@ export default function Review({
<Icon
name={hasLiked ? 'favorite' : 'favorite-border'}
size={20}
color={hasLiked ? 'red' : 'black'}
color={hasLiked ? 'red' : theme.iconColor}
style={{ marginRight: 5 }}
/>
<Text style={styles.statsNumber}>{likeCount}</Text>
Expand All @@ -254,7 +254,7 @@ export default function Review({
onPress={() => {
handleCommentPress(reviewId, true);
}}>
<CommIcon name="comment-outline" size={20} style={styles.icon} />
<CommIcon name="comment-outline" size={20} style={styles.icon} color={theme.iconColor} />
</Pressable>
<Text style={styles.statsNumber}>{comments}</Text>
</View>
Expand Down
18 changes: 14 additions & 4 deletions frontend/src/Components/Watchlist.js
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
import React, { useState, useEffect } from "react";
import { View, Text, ScrollView, TouchableOpacity, StyleSheet, Modal, Image, Alert } from "react-native";
import { View, Text, ScrollView, TouchableOpacity, StyleSheet, Modal, Image, Alert, RefreshControl } from "react-native";
import { MaterialIcons } from "@expo/vector-icons";
import { useNavigation } from '@react-navigation/native';
import { getUserWatchlists } from "../Services/UsersApiService";
import { deleteWatchlist } from "../Services/ListApiService"; // Import the deleteWatchlist function
import { useTheme } from "../styles/ThemeContext";

const WatchlistTab = ({ userInfo }) => {
const WatchlistTab = ({ userInfo , refreshing, onRefresh}) => {

const [modalVisible, setModalVisible] = useState(false);
const [selectedWatchlist, setSelectedWatchlist] = useState(null);
const [watchlists, setWatchlists] = useState([]);
const navigation = useNavigation();
const {theme} = useTheme();
// Fetch user watchlists
useEffect(() => {

const fetchUserWatchlists = async () => {
try {
const userId = userInfo.userId;
Expand All @@ -32,8 +32,18 @@ const WatchlistTab = ({ userInfo }) => {
}
};


useEffect(() => {
fetchUserWatchlists();
}, [refreshing]);



if (refreshing) {
console.log("refreshing");
fetchUserWatchlists();
}, []);
}


const openOptionsMenu = (watchlist) => {
setSelectedWatchlist(watchlist);
Expand Down
36 changes: 23 additions & 13 deletions frontend/src/Screens/ExplorePage.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import React, { useState, useEffect, useRef, useCallback } from 'react';
import { StyleSheet, Text, View, ScrollView, FlatList, TextInput } from 'react-native';
import { StyleSheet, Text, View, ScrollView, FlatList, TextInput , RefreshControl} from 'react-native';
import { useNavigation, useFocusEffect } from "@react-navigation/native";
import { Ionicons } from '@expo/vector-icons';
import { TouchableOpacity } from "react-native";
Expand All @@ -22,6 +22,7 @@ import Post from "../Components/Post"; // To render posts
import Review from "../Components/Review"; // To render reviews
import moment from "moment";
import { useTheme } from '../styles/ThemeContext';
import { colors, themeStyles } from "../styles/theme";
import SearchBar from '../Components/SearchBar';


Expand All @@ -41,10 +42,10 @@ export default function ExplorePage({ route }) {
const [recentRooms, setRecentRooms] = useState([]);
const [searchResults, setSearchResults] = useState([]);
const [sortedContent, setSortedContent] = useState([]);
const [refreshing, setRefreshing] = useState(false);

const keywords = ["art", "city", "neon", "space", "movie", "night", "stars", "sky", "sunset", "sunrise"];

useEffect(() => {
const fetchContent = async () => {
try {
const friendsContent = await getFriendsOfFriendsContent(userInfo);
Expand Down Expand Up @@ -86,9 +87,10 @@ export default function ExplorePage({ route }) {
console.error('Error fetching content:', error);
}
};

fetchContent();
}, [userInfo]);

useEffect(() => {
fetchContent();
}, [userInfo]);

useFocusEffect(
useCallback(() => {
Expand Down Expand Up @@ -133,14 +135,19 @@ export default function ExplorePage({ route }) {
console.error("Failed to fetch friends content:", error);
}
}, [userInfo]);

useEffect(() => {
if (userInfo) {
fetchFriendsContent();
}
}, [userInfo, fetchFriendsContent]);

const onRefresh = useCallback(async () => {
setRefreshing(true);
await Promise.all([fetchContent(), fetchFriendsContent()]);
setRefreshing(false);
}, []);

useFocusEffect(
useCallback(() => {
if (userInfo) {
fetchFriendsContent();
}
}, [userInfo, fetchFriendsContent])
);

const handleOpenHub = () => {
navigation.navigate("HubScreen", { userInfo });
Expand Down Expand Up @@ -305,7 +312,10 @@ export default function ExplorePage({ route }) {
});
return (
<View style={{ flex: 1, backgroundColor: useTheme.backgroundColor }}>
<ScrollView>
<ScrollView style={{ backgroundColor: theme.backgroundColor }}
refreshControl={
<RefreshControl refreshing={refreshing} onRefresh={onRefresh} tintColor={colors.primary} />
}>
<SearchBar onChangeText={handleSearch} />

{searchResults.length > 0 ? (
Expand Down
Loading
Loading