This repository was archived by the owner on Jul 28, 2020. It is now read-only.
forked from wkh237/react-native-fetch-blob
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathandroid.js
More file actions
67 lines (59 loc) · 1.75 KB
/
android.js
File metadata and controls
67 lines (59 loc) · 1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
// Copyright 2016 wkh237@github. All rights reserved.
// Use of this source code is governed by a MIT-style license that can be
// found in the LICENSE file.
import {
NativeModules,
DeviceEventEmitter,
Platform,
NativeAppEventEmitter
} from 'react-native';
const RNFetchBlob: RNFetchBlobNative = NativeModules.RNFetchBlob;
/**
* Send an intent to open the file.
* @param {string} path Path of the file to be open.
* @param {string} mime MIME type string
* @return {Promise}
*/
function actionViewIntent(path: string, mime: string = 'text/plain') {
if (Platform.OS === 'android')
return RNFetchBlob.actionViewIntent(path, mime);
else
return Promise.reject(
'RNFetchBlob.android.actionViewIntent only supports Android.'
);
}
function getContentIntent(mime: string) {
if (Platform.OS === 'android') return RNFetchBlob.getContentIntent(mime);
else
return Promise.reject(
'RNFetchBlob.android.getContentIntent only supports Android.'
);
}
function addCompleteDownload(config) {
if (Platform.OS === 'android') return RNFetchBlob.addCompleteDownload(config);
else
return Promise.reject(
'RNFetchBlob.android.addCompleteDownload only supports Android.'
);
}
function getSDCardDir() {
if (Platform.OS === 'android') return RNFetchBlob.getSDCardDir();
else
return Promise.reject(
'RNFetchBlob.android.getSDCardDir only supports Android.'
);
}
function getSDCardApplicationDir() {
if (Platform.OS === 'android') return RNFetchBlob.getSDCardApplicationDir();
else
return Promise.reject(
'RNFetchBlob.android.getSDCardApplicationDir only supports Android.'
);
}
export default {
actionViewIntent,
getContentIntent,
addCompleteDownload,
getSDCardDir,
getSDCardApplicationDir
};