Files
doors-wallpaper/app/wallpaper.tsx

147 lines
4.0 KiB
TypeScript
Raw Normal View History

2024-09-24 23:40:27 +01:00
import { useStore } from "@/store/store";
import * as FileSystem from "expo-file-system";
import * as MediaLibrary from "expo-media-library";
import * as Linking from "expo-linking";
2024-09-24 23:40:27 +01:00
import { Ionicons } from "@expo/vector-icons";
import { useRouter } from "expo-router";
import { Image, Text, View, TouchableOpacity, Alert } from "react-native";
import { useState } from "react";
2024-10-01 19:09:56 +01:00
import {
SafeAreaView,
useSafeAreaInsets,
} from "react-native-safe-area-context";
2024-09-24 23:40:27 +01:00
export default function WallpaperPage() {
const selectedWallpaper = useStore((store) => store.selectedWallpaper);
const [isDownloading, setIsDownloading] = useState(false);
2024-09-24 23:40:27 +01:00
const router = useRouter();
2024-10-01 19:09:56 +01:00
const safeArea = useSafeAreaInsets();
2024-09-24 23:40:27 +01:00
if (!selectedWallpaper) {
return null;
}
const imageName = selectedWallpaper.display_name;
2024-09-24 23:40:27 +01:00
async function downloadWallpaper() {
if (!selectedWallpaper) {
return;
}
setIsDownloading(true);
try {
2024-09-29 12:02:41 +01:00
const permStatus = await MediaLibrary.requestPermissionsAsync(true, [
"photo",
]);
if (permStatus.status != MediaLibrary.PermissionStatus.GRANTED) {
Alert.alert(
"Media library access required",
"Doors need access to your media library in order to save wallpapers.",
);
return;
}
const result = await FileSystem.downloadAsync(
selectedWallpaper.secure_url,
`${FileSystem.documentDirectory}${selectedWallpaper.asset_id}.${selectedWallpaper.format}`,
);
await MediaLibrary.createAssetAsync(result.uri);
2024-09-24 23:40:27 +01:00
Alert.alert(
"Wallpaper saved successfully",
"You can change the wallpaper in Settings.",
2024-09-24 23:40:27 +01:00
);
} catch {
Alert.alert(
"Unable to download wallpaper",
"Check your internet connection. Otherwise, it's probably our fault.",
);
} finally {
setIsDownloading(false);
2024-09-24 23:40:27 +01:00
}
}
async function openSourceUrl() {
if (selectedWallpaper?.source_url) {
Linking.openURL(selectedWallpaper.source_url);
}
}
2024-09-24 23:40:27 +01:00
return (
2024-09-25 18:34:58 +01:00
<View className="flex-1 w-full h-full">
2024-09-24 23:40:27 +01:00
<Image
2024-09-25 18:34:58 +01:00
className="flex-1 w-full h-full"
2024-09-24 23:40:27 +01:00
source={{ uri: selectedWallpaper.secure_url }}
/>
2024-09-28 10:56:20 +01:00
<SafeAreaView className="absolute top-0 left-0 right-0 flex-row px-4">
2024-09-24 23:40:27 +01:00
<TouchableOpacity
onPress={() => {
router.dismiss();
}}
>
<View
2024-09-25 18:34:58 +01:00
className="w-8 h-8 rounded-full items-center justify-center"
style={{ backgroundColor: "rgba(0, 0, 0, 0.8)", padding: 5 }}
2024-09-24 23:40:27 +01:00
>
<Ionicons size={24} name="close" color="white" />
</View>
</TouchableOpacity>
2024-09-28 10:56:20 +01:00
</SafeAreaView>
2024-10-01 17:48:21 +01:00
<View
2024-10-01 19:09:56 +01:00
className="absolute bottom-0 left-0 right-0 h-min w-full justify-between items-center px-8"
style={{
backgroundColor: "rgba(0, 0, 0, 0.8)",
paddingTop: 24,
paddingBottom: safeArea.bottom + 24,
}}
2024-10-01 17:48:21 +01:00
>
2024-10-01 19:09:56 +01:00
{Boolean(selectedWallpaper.creator_name) ||
Boolean(selectedWallpaper.source_url) ? (
<View className="flex-col justify-center items-center mb-8">
{selectedWallpaper.creator_name ? (
<Text className="text-white text-center opacity-50 text-xs">
{selectedWallpaper.creator_name}
{selectedWallpaper.is_ai_generated ? " · AI Generated" : ""}
2024-09-25 19:23:57 +01:00
</Text>
2024-10-01 19:09:56 +01:00
) : null}
{selectedWallpaper.source_url ? (
<TouchableOpacity
onPress={() => {
openSourceUrl();
}}
>
<Text className="text-white underline text-center opacity-50 text-xs">
{selectedWallpaper.source_url}
</Text>
</TouchableOpacity>
) : null}
</View>
) : null}
2024-09-24 23:40:27 +01:00
<TouchableOpacity
disabled={isDownloading}
2024-09-25 18:34:58 +01:00
className="w-full"
2024-09-24 23:40:27 +01:00
onPress={() => {
if (!isDownloading) {
downloadWallpaper();
}
2024-09-24 23:40:27 +01:00
}}
>
<View
2024-09-25 19:23:57 +01:00
className="w-full rounded justify-center items-center px-4 py-1"
2024-09-24 23:40:27 +01:00
style={{
backgroundColor: "#E5202B",
}}
>
<Text className="text-white">
{isDownloading ? "Downloading…" : "Download"}
</Text>
2024-09-25 19:23:57 +01:00
<Text className="text-white opacity-80 text-xs">
{selectedWallpaper.width}x{selectedWallpaper.height}
</Text>
2024-09-24 23:40:27 +01:00
</View>
</TouchableOpacity>
</View>
2024-09-25 18:34:58 +01:00
</View>
2024-09-24 23:40:27 +01:00
);
}