upd: dowload file

This commit is contained in:
amel
2025-06-09 17:37:28 +08:00
parent 88d9cd117d
commit 636bfcc87c
4 changed files with 11 additions and 73 deletions

View File

@@ -3,12 +3,11 @@ 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 * 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 { Alert, Platform, Text, ToastAndroid, View } from "react-native";
import { Text, ToastAndroid, View } from "react-native";
import { useDispatch, useSelector } from "react-redux";
import AlertKonfirmasi from "../alertKonfirmasi";
import BorderBottomItem from "../borderBottomItem";
@@ -80,72 +79,16 @@ export default function SectionFile({ status, member }: { status: number | undef
}
}
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);
}
const destination = new Directory(Paths.document, 'pdfs');
const filename = "dummy.pdf";
const result = await File.downloadFileAsync('https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf', destination);
console.log(result)
}
return (
<>
<View style={[Styles.mb15]}>
@@ -192,8 +135,8 @@ 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)
download()
// setModal(false)
}}
/>
{