79 lines
2.1 KiB
TypeScript
79 lines
2.1 KiB
TypeScript
import {
|
|
View,
|
|
Image,
|
|
StyleSheet,
|
|
Platform,
|
|
Text,
|
|
TouchableOpacity,
|
|
} from "react-native";
|
|
|
|
import { HelloWave } from "@/components/HelloWave";
|
|
import ParallaxScrollView from "@/components/ParallaxScrollView";
|
|
import { ThemedText } from "@/components/ThemedText";
|
|
import { ThemedView } from "@/components/ThemedView";
|
|
import { useEffect, useState } from "react";
|
|
import { FAKE_DATA, type ImageAsset } from "@/cloudinary/cloudinary";
|
|
import { MasonryFlashList } from "@shopify/flash-list";
|
|
import { useRouter } from "expo-router";
|
|
import { useStore } from "@/store/store";
|
|
|
|
export default function HomeScreen() {
|
|
const router = useRouter();
|
|
const setSelectedWallpaper = useStore((store) => store.setSelectedWallpaper);
|
|
const [images, setImages] = useState<ImageAsset[] | null>(null);
|
|
const [isLoading, setIsLoading] = useState(false);
|
|
|
|
useEffect(() => {
|
|
async function fetchWallpapers() {
|
|
setIsLoading(true);
|
|
const res = await fetch("http://localhost:8080/wallpapers");
|
|
const images: ImageAsset[] = await res.json();
|
|
setImages(images);
|
|
setIsLoading(false);
|
|
}
|
|
fetchWallpapers();
|
|
}, []);
|
|
|
|
return (
|
|
<View className="flex-1">
|
|
<MasonryFlashList
|
|
data={FAKE_DATA}
|
|
numColumns={2}
|
|
ListHeaderComponent={() => (
|
|
<Text className="px-2 pt-20 text-2xl font-bold text-white">
|
|
Wallpapers
|
|
</Text>
|
|
)}
|
|
renderItem={({ item }) => (
|
|
<View className="w-full p-2">
|
|
<View className="w-full relative">
|
|
<TouchableOpacity
|
|
onPress={() => {
|
|
setSelectedWallpaper(item);
|
|
router.push("/wallpaper");
|
|
}}
|
|
>
|
|
<Image
|
|
className="w-full h-60"
|
|
source={{ uri: item.secure_url }}
|
|
/>
|
|
</TouchableOpacity>
|
|
<View
|
|
className="w-full absolute bottom-0 left-0 right-0 p-2"
|
|
style={{
|
|
backgroundColor: "rgba(0, 0, 0, 0.8)",
|
|
}}
|
|
>
|
|
<Text className="text-white opacity-80">
|
|
{item.public_id.replace("wallpaper/", "")}
|
|
</Text>
|
|
</View>
|
|
</View>
|
|
</View>
|
|
)}
|
|
estimatedItemSize={200}
|
|
/>
|
|
</View>
|
|
);
|
|
}
|