Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

rn-buyme-saver-media

Package Overview
Dependencies
Maintainers
0
Versions
10
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

rn-buyme-saver-media

Downloader any medias with process callback

  • 0.1.9
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4
decreased by-98.18%
Maintainers
0
Weekly downloads
 
Created
Source

rn-buyme-saver-media

rn-buyme-saver-media — это нативный модуль для React Native, позволяющий скачивать файлы из сети и сохранять их в галерею на устройствах iOS и Android. Модуль поддерживает отслеживание прогресса загрузки.

Установка

  1. Добавьте модуль в ваш проект:
yarn add rn-buyme-saver-media
  1. Если вы используете Expo, настройте Expo Development Client:
expo install expo-dev-client
  1. Выполните pod install для установки зависимостей iOS:
cd ios
pod install

Настройка для iOS

Чтобы модуль мог сохранять файлы в галерею, добавьте следующие разрешения в Info.plist:

<key>NSPhotoLibraryUsageDescription</key>
<string>Требуется доступ к галерее для сохранения изображений</string>
<key>NSPhotoLibraryAddUsageDescription</key>
<string>Требуется разрешение для добавления изображений в галерею</string>

Использование

Импортируйте и используйте функцию downloadFileToGallery, передавая URL файла и коллбэк для отслеживания прогресса загрузки.

Пример

import React, { useState } from 'react';
import { Button, View, Text } from 'react-native';
import { downloadFileToGallery } from 'rn-buyme-saver-media';

export default function App() {
  const [progress, setProgress] = useState(0);

  const handleDownload = () => {
    downloadFileToGallery("https://example.com/image.jpg", setProgress)
      .then(() => alert("Download completed!"))
      .catch(error => alert(`Download failed: ${error.message}`));
  };

  return (
    <View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
      <Button title="Download File" onPress={handleDownload} />
      <Text>{`Download Progress: ${progress}%`}</Text>
    </View>
  );
}

API

downloadFileToGallery(url: string, onProgress: (progress: number) => void): Promise<void>

  • url - URL загружаемого файла.
  • onProgress - функция коллбэк, вызываемая с текущим прогрессом загрузки в процентах.

Примечание

Для работы на iOS с сохранением файлов в галерею модуль использует PHPhotoLibrary, поэтому требуется разрешение на доступ к фото-библиотеке.

Поддержка

Для вопросов и предложений свяжитесь с нами.


  • Documentation for the latest stable release

Installation in managed Expo projects

For managed Expo projects, please follow the installation instructions in the API documentation for the latest stable release. If you follow the link and there is no documentation available then this library is not yet usable within managed projects — it is likely to be included in an upcoming Expo SDK release.

Installation in bare React Native projects

For bare React Native projects, you must ensure that you have installed and configured the expo package before continuing.

Configure for iOS

Run npx pod-install after installing the npm package.

Keywords

FAQs

Package last updated on 06 Nov 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc