-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
62 lines (55 loc) · 1.29 KB
/
index.js
File metadata and controls
62 lines (55 loc) · 1.29 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
import { NativeModules } from "react-native";
const responseFunction = async (res) => {
if (Platform.OS == "android") {
try {
res = JSON.parse(res)
// console.log(res);
if (res.data) {
res.data = JSON.parse(res.data)
}
} catch (error) {
console.log("JSON parse error", error);
}
}
// Promise.resolve(res)
res = {
...res,
json: () => {
return Promise.resolve(res.data)
}
}
return res
}
export const fetch = async (url, config) => {
const { RNNetworkRequest } = NativeModules;
var configToSend = {};
if (!url) {
return Promise.reject("Expected a url as first argument");
}
if (!config) {
configToSend["method"] = "GET";
}
if (config["Authorization"]) {
configToSend["Authorization"] = config.Authorization;
}
if (config.body) {
configToSend["body"] = config.body;
}
if (config.headers) {
configToSend["headers"] = config.headers;
}
if (config.method) {
configToSend["method"] = config.method;
}
try {
var res = await RNNetworkRequest.fetch(url, configToSend);
return Promise.resolve(responseFunction(res));
// return Promise.resolve(res);
} catch (e) {
return Promise.reject(e);
}
};
export const NativeRequest = {
fetch: fetch,
};
export default NativeRequest;