You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
98 lines
2.8 KiB
98 lines
2.8 KiB
import {useTheme} from "@react-navigation/native";
|
|
import {darksalmonColor, indigo, whiteColor} from "../Theme";
|
|
import React, {useEffect, useState} from "react";
|
|
import {getFavorite} from "../redux/store";
|
|
import {FlatList, SafeAreaView, StyleSheet, TouchableHighlight} from "react-native";
|
|
import {JokeListItems} from "../components/ListeJokeComponent";
|
|
import {CustomJoke} from "../model/CustomJoke";
|
|
|
|
export function ListFavoriteJokeScreen({route, navigation}) {
|
|
const [favoriteJokes, setFavoriteJokes] = useState<CustomJoke[]>([]);
|
|
|
|
useEffect(() => {
|
|
const fetchFav = async () => {
|
|
const jokes = await getFavorite();
|
|
if (jokes) {
|
|
setFavoriteJokes(jokes);
|
|
} else {
|
|
// Gérer le cas où aucun favori n'est retourné
|
|
setFavoriteJokes([]);
|
|
}
|
|
}
|
|
fetchFav();
|
|
}, []);
|
|
|
|
const styles = themeSettings();
|
|
console.log("Ceci est ma taille"+favoriteJokes.length);
|
|
|
|
return (
|
|
<SafeAreaView style={styles.container}>
|
|
<FlatList
|
|
data = {favoriteJokes}
|
|
renderItem={({ item }) => (
|
|
<TouchableHighlight onPress={() => navigation.navigate("JokeDetail", {"joke" : item.id})}>
|
|
<JokeListItems item={item}/>
|
|
</TouchableHighlight>
|
|
)}
|
|
keyExtractor={(item: CustomJoke) => item.id}
|
|
/>
|
|
</SafeAreaView>
|
|
);
|
|
}
|
|
export function themeSettings() {
|
|
const {colors} = useTheme();
|
|
const styles = StyleSheet.create({
|
|
title: {
|
|
fontSize: 24,
|
|
color: colors.text,
|
|
textAlign: 'center',
|
|
fontWeight: 'bold',
|
|
marginVertical: 20,
|
|
},
|
|
titleResume: {
|
|
fontSize: 15,
|
|
fontWeight: 'bold',
|
|
marginBottom: 20,
|
|
},
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: colors.background,
|
|
|
|
},
|
|
top: {
|
|
backgroundColor : indigo,
|
|
},
|
|
header: {
|
|
flexDirection: "row",
|
|
justifyContent: "space-between",
|
|
alignItems: "center",
|
|
margin: 9,
|
|
},
|
|
headerText: {
|
|
fontSize: 18,
|
|
color: whiteColor,
|
|
textAlign: 'center',
|
|
fontWeight: 'bold',
|
|
},
|
|
img2: {
|
|
tintColor: whiteColor,
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
},
|
|
button2:{
|
|
flexDirection: "row",
|
|
justifyContent: "center",
|
|
marginRight: 10,
|
|
borderRadius: 10,
|
|
alignItems: "center",
|
|
height: 30,
|
|
width: 70,
|
|
|
|
borderColor: darksalmonColor,
|
|
borderWidth: 1,
|
|
backgroundColor: darksalmonColor,
|
|
},
|
|
});
|
|
|
|
return styles;
|
|
} |