npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

pdf-excel-downloader

v1.0.4

Published

react-native-pdf-excel-downloader

Downloads

307

Readme

react-native-pdf-excel-file-downloader

react-native-pdf-excel-file-downloader is a React Native utility component designed for easy file downloading across iOS and Android platforms.

Features

  • 📂 Download Files: Supports downloading files with various formats like PDF, Word, Excel, images, etc.
  • 🖥️ Platform Support: Works on both Android and iOS.
  • 🚀 Progress Tracking: Real-time download progress display.
  • 🛠️ Customizable: Provides callbacks for download completion, error handling, and progress updates.

Installation

## npm i pdf-excel-downloader react-native-blob-util 
## npm i pdf-excel-downloader react-native-blob-util  --force

iOS Configuration

Add the following permissions to your Info.plist file for iOS:

<key>NSPhotoLibraryUsageDescription</key>
<string>Permission to save downloaded files to your photo library.</string>
<key>NSDocumentDirectoryUsageDescription</key>
<string>Permission to save downloaded files to your document directory.</string>

<key>UIFileSharingEnabled</key> <true/> <key>LSSupportsOpeningDocumentsInPlace</key> <true/>

then run pod install or pod 'react-native-blob-util'

Android Configuration

Ensure the following permissions are added to your AndroidManifest.xml:

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>

Basic Usage

Here is an example of how to integrate DownloadFileComponent into your React Native project:

import React from 'react';
import { View, Button, Text } from 'react-native';
import {Downloader} from 'pdf-excel-downloader';

const Main = () => {
  
const fileUrl = 'https://morth.nic.in/sites/default/files/dd12-13_0.pdf';  // Replace with your file URL

  const handleDownloadComplete = (filePath) => {
    console.log('Download complete! File saved at:', filePath);
  };

  const handleError = (error) => {
    console.error('Download failed:', error);
  };

  const handleProgress = (progress) => {
    console.log(`Download progress: ${progress}%`);
  };

  const { downloadFile, downloading, downloadProgress } = Downloader({
    fileUrl,
    showProgress: true,
    onDownloadComplete: handleDownloadComplete,
    onError: handleError,
    onProgress: handleProgress,
  });

  return (
    <View>
      <Button
        title="Download File"
        onPress={downloadFile}
        disabled={downloading}
      />
      {downloading && <Text>Progress: {downloadProgress}%</Text>}
    </View>
  );
};

export default Main;

Example Callbacks

  • onDownloadComplete(path): Invoked when the download finishes, providing the saved file's path.
  • onError(error): Invoked if there’s an error during the download.
  • onProgress(percentage): Updates the download progress percentage.

API

Props

| Prop |Type|Description| |----------------|-------------------------------|-----------------------------| |fileUrl |String |he URL of the file to download. | |showProgress |Boolean |Whether to display download progress or not. | |onDownloadComplete |Function|Callback invoked when the download is complete. It receives the file path as a parameter.| |onError |Function|Callback invoked if an error occurs during the download process.| |onProgress |Function|Callback invoked during download to show progress (percentage).|

License

MIT License.