upd: project

Deskripsi:
- tambah file
- hapus file
- upload file pada tambah data
- download file blm selesai

No Issues
This commit is contained in:
amel
2025-05-20 14:37:53 +08:00
parent 3199d31d57
commit 3ed9681912
6 changed files with 179 additions and 25 deletions

View File

@@ -1,16 +1,21 @@
import Styles from "@/constants/Styles";
import { apiGetProjectOne } from "@/lib/api";
import { apiDeleteFileProject, apiGetProjectOne } from "@/lib/api";
import { setUpdateProject } from "@/lib/projectUpdate";
import { useAuthSession } from "@/providers/AuthProvider";
import { Ionicons, MaterialCommunityIcons } from "@expo/vector-icons";
import * as FileSystem from 'expo-file-system';
import { Directory, File, Paths } from 'expo-file-system/next';
import * as MediaLibrary from 'expo-media-library';
import { useLocalSearchParams } from "expo-router";
import { useEffect, useState } from "react";
import { Text, ToastAndroid, View } from "react-native";
import { useSelector } from "react-redux";
import { Alert, Platform, Text, ToastAndroid, View } from "react-native";
import { useDispatch, useSelector } from "react-redux";
import AlertKonfirmasi from "../alertKonfirmasi";
import BorderBottomItem from "../borderBottomItem";
import DrawerBottom from "../drawerBottom";
import MenuItemRow from "../menuItemRow";
type Props = {
id: string
name: string
@@ -25,6 +30,8 @@ export default function SectionFile({ status, member }: { status: number | undef
const { id } = useLocalSearchParams<{ id: string }>();
const [data, setData] = useState<Props[]>([]);
const update = useSelector((state: any) => state.projectUpdate)
const [idSelect, setIdSelect] = useState('')
const dispatch = useDispatch()
async function handleLoad() {
try {
@@ -44,6 +51,90 @@ export default function SectionFile({ status, member }: { status: number | undef
handleLoad();
}, [update.file]);
async function handleDelete() {
try {
const hasil = await decryptToken(String(token?.current));
const response = await apiDeleteFileProject({ user: hasil }, idSelect);
if (response.success) {
ToastAndroid.show('Berhasil menghapus file', ToastAndroid.SHORT)
dispatch(setUpdateProject({ ...update, file: !update.file }))
} else {
ToastAndroid.show(response.message, ToastAndroid.SHORT)
}
} catch (error) {
console.error(error);
ToastAndroid.show('Terjadi kesalahan', ToastAndroid.SHORT)
} finally {
setModal(false)
}
}
const downloadFile = async (fileUrl: string) => {
try {
// Get file name from URL
const fileName = fileUrl.substring(fileUrl.lastIndexOf('/') + 1);
// Create local file path
const fileUri = `${FileSystem.documentDirectory}${fileName}`;
// Download the file with progress tracking
const downloadResumable = FileSystem.createDownloadResumable(
fileUrl,
fileUri,
{},
(downloadProgress) => {
const progress = downloadProgress.totalBytesWritten / downloadProgress.totalBytesExpectedToWrite;
}
);
const downloadResult = await downloadResumable.downloadAsync();
if (downloadResult && downloadResult.uri) {
const uri = downloadResult.uri;
if (Platform.OS === 'android') {
// For Android, we need to save to media library
const { status } = await MediaLibrary.requestPermissionsAsync();
if (status === 'granted') {
const fileString = await FileSystem.readAsStringAsync(uri, { encoding: FileSystem.EncodingType.Base64 });
const newFile = await FileSystem.StorageAccessFramework.createFileAsync(
uri,
'sample',
downloadResult.headers['content-type']
);
await FileSystem.writeAsStringAsync(newFile, fileString, { encoding: FileSystem.EncodingType.Base64 });
Alert.alert('Success', `File downloaded and saved to Downloads folder`);
} else {
Alert.alert('Error', 'Permission to access media library denied');
}
} else {
// For iOS, the file is already saved to the app's document directory
Alert.alert('Success', `File downloaded and saved to app's documents folder`);
}
return uri;
}
} catch (error) {
console.error('Error downloading file:', error);
Alert.alert('Error', `Failed to download file: ${error}`);
return null;
}
};
async function download() {
const url = 'https://pdfobject.com/pdf/sample.pdf';
const destination = new Directory(Paths.cache, 'pdfs');
try {
destination.create();
const output = await File.downloadFileAsync(url, destination);
} catch (error) {
console.error(error);
}
}
return (
<>
<View style={[Styles.mb15]}>
@@ -59,7 +150,7 @@ export default function SectionFile({ status, member }: { status: number | undef
icon={<MaterialCommunityIcons name="file-outline" size={25} color="black" />}
title={item.name + '.' + item.extension}
titleWeight="normal"
onPress={() => { setModal(true) }}
onPress={() => { setIdSelect(item.id); setModal(true) }}
/>
)
})
@@ -82,6 +173,7 @@ export default function SectionFile({ status, member }: { status: number | undef
icon={<MaterialCommunityIcons name="download" color="black" size={25} />}
title="Download"
onPress={() => {
downloadFile('https://pdfobject.com/pdf/sample.pdf')
setModal(false)
}}
/>
@@ -98,8 +190,7 @@ export default function SectionFile({ status, member }: { status: number | undef
title: 'Konfirmasi',
desc: 'Apakah Anda yakin ingin menghapus file ini? File yang dihapus tidak dapat dikembalikan',
onPress: () => {
setModal(false)
ToastAndroid.show('Berhasil menghapus data', ToastAndroid.SHORT)
handleDelete()
}
})