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.
156 lines
4.2 KiB
156 lines
4.2 KiB
|
|
import { StyleSheet, Text, View, Button, TouchableHighlight, Pressable } from 'react-native';
|
|
import { StatusBar } from 'expo-status-bar';
|
|
import React, { useState, useEffect } from "react";
|
|
import { FlatList } from 'react-native-gesture-handler';
|
|
import {useDispatch, useSelector} from 'react-redux';
|
|
|
|
import { ThunkAction } from 'redux-thunk';
|
|
|
|
|
|
//? possiblement à supprimer
|
|
import { getAllCards } from "../redux/actions/actionSelection"
|
|
|
|
import { Card } from '../models/Card';
|
|
import { Image } from 'react-native';
|
|
import { ImageURISource } from 'react-native';
|
|
|
|
import { switchMode } from '../redux/actions/action_switchMode';
|
|
|
|
//@ts-ignore
|
|
const Item = ({url}) => (
|
|
// <View style={styles.item}>
|
|
// <Text style={styles.title}>{title}</Text>
|
|
// </View>
|
|
<View>
|
|
<Image
|
|
source={{uri:url}}
|
|
style={{flex:1, minHeight:250, minWidth:180}}/>
|
|
</View>
|
|
);
|
|
|
|
//@ts-ignore
|
|
export default function ListScreen({navigation}){
|
|
const [count, setCount] = useState(0);
|
|
|
|
//@ts-ignore
|
|
const theme = useSelector(state => state.theme);
|
|
//@ts-ignore
|
|
const nList = useSelector(state => state.appReducer.cards);
|
|
//@ts-ignore
|
|
const mode = useSelector(state => state.appReducer.mode);
|
|
|
|
// Create a const that will hold the react-redux events dispatcher
|
|
const dispatch = useDispatch();
|
|
|
|
// Let's define a hook that will be used to update the rendered state after the return will be called
|
|
// You cannot perform side-effects outside of a useEffect hook
|
|
|
|
useEffect(() => {
|
|
const loadCards = async () => {
|
|
//@ts-ignore
|
|
await dispatch(getAllCards());
|
|
};
|
|
loadCards();
|
|
}, [dispatch]);
|
|
|
|
// Handle changing the theme mode
|
|
|
|
//@ts-ignore
|
|
const handleThemeChange = (mode) => {
|
|
dispatch(switchMode(mode === 'light' ? 'dark' : 'light'));
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
<View style={mode === 'light' ? styles.container_light : styles.container_dark}>
|
|
<Pressable style={mode === 'light' ? styles.button_white : styles.button_black} onPress={() => handleThemeChange(mode)}>
|
|
<Text>Switch Mode</Text>
|
|
</Pressable>
|
|
<FlatList
|
|
numColumns={2}
|
|
data={nList}
|
|
renderItem={({item}) =>
|
|
|
|
//<TouchableHighlight onPress={() => navigation.navigate("CardsDetails", {"card": item})}> //* mettre la page de detail ici, renvoi a home pour l'instant
|
|
<TouchableHighlight onPress={() => navigation.navigate("ListFav")}>
|
|
<Item url={item.img}/>
|
|
</TouchableHighlight>
|
|
|
|
} keyExtractor={(item: Card) => item.id.toString()}/>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: '#ac9585',
|
|
alignItems: 'center',
|
|
justifyContent: 'space-evenly',
|
|
|
|
},
|
|
border: {
|
|
flex: 1,
|
|
backgroundColor: '#ff0000',
|
|
maxHeight : 100,
|
|
borderWidth : 15,
|
|
borderRadius : 15,
|
|
borderColor : '#00ffaa',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
},
|
|
item: {
|
|
borderRadius : 15,
|
|
backgroundColor: '#efefef',
|
|
padding: 20,
|
|
margin : 10,
|
|
},
|
|
title: {
|
|
fontStyle: "italic",
|
|
},
|
|
|
|
///themes
|
|
container_light: {
|
|
flex: 1,
|
|
backgroundColor: '#fff',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
},
|
|
container_dark: {
|
|
flex: 1,
|
|
backgroundColor: '#3e3e42',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
},
|
|
text_light: {
|
|
marginBottom: 20,
|
|
color: '#000'
|
|
},
|
|
text_dark: {
|
|
marginBottom: 20,
|
|
color: "#fff"
|
|
},
|
|
button_black: {
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
paddingVertical: 12,
|
|
paddingHorizontal: 32,
|
|
borderRadius: 4,
|
|
elevation: 3,
|
|
backgroundColor: 'black',
|
|
},
|
|
button_white: {
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
paddingVertical: 12,
|
|
paddingHorizontal: 32,
|
|
borderRadius: 4,
|
|
elevation: 3,
|
|
backgroundColor: 'white',
|
|
}
|
|
});
|