React Native Zip Archive
Zip archive utility for react-native
Installation
npm install react-native-zip-archive --save
Linking
Automatically
react-native link react-native-zip-archive
Manually
iOS
refer to the official guide
Android
-
Edit
android/settings.gradle
to look like this (without the +):rootProject.name = 'MyApp'include ':app'+ include ':react-native-zip-archive'+ project(':react-native-zip-archive').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-zip-archive/android') -
Edit
android/app/build.gradle
(note: app folder) to look like this:apply plugin: 'com.android.application'android {...}dependencies {compile fileTree(dir: 'libs', include: ['*.jar'])compile 'com.android.support:appcompat-v7:23.0.0'compile 'com.facebook.react:react-native:0.16.+'+ compile project(':react-native-zip-archive')} -
Edit your
MainActivity.java
(deep inandroid/app/src/main/java/...
) to look like this (note two places to edit):package com.myapp;+ import com.rnziparchive.RNZipArchivePackage;....@Overrideprotected List<ReactPackage> getPackages() {return Arrays.<ReactPackage>asList(new MainReactPackage(),+ new RNZipArchivePackage());}}
Usage
import it into your code
you may also want to use something like react-native-fs to access the file system (check its repo for more information)
API
zip(source: string, target: string): Promise
zip source to target
Example
const targetPath = `/myFile.zip`const sourcePath = DocumentDirectoryPath
unzip(source: string, target: string): Promise
unzip from source to target
Example
const sourcePath = `/myFile.zip`const targetPath = DocumentDirectoryPath
unzipAssets(assetPath: string, target: string): Promise
unzip file from Android
assets
folder to target path
Note: Android only.
assetPath
is the relative path to the file inside the pre-bundled assets folder, e.g. folder/myFile.zip
. Do not pass an absolute directory.
const assetPath = `/myFile.zip`const targetPath = DocumentDirectoryPath
subscribe(callback: ({ progress: number, filePath: string })): EmitterSubscription
Subscribe to the progress callbacks. Useful for displaying a progress bar on your UI during the process.
Your callback will be passed an object with the following fields:
progress
(number) a value from 0 to 1 representing the progress of the unzip method. 1 is completed.filePath
(string) the zip file path of zipped or unzipped file.
Note: Remember to check the filename while processing progress, to be sure that the unzipped or zipped file is the right one, because the event is global.
Note: Remember to unsubscribe! Run .remove() on the object returned by this method.
{ thiszipProgress = } { // Important: Unsubscribe from the progress events thiszipProgress}