-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuseResults.js
90 lines (87 loc) · 2.43 KB
/
useResults.js
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import { useState, useEffect } from "react";
import axios from "../api/yelp";
import * as Permissions from "expo-permissions";
import * as Location from "expo-location";
export default () => {
//
const [position, setPosition] = useState({ lat: "null", long: "null" });
const [located, setLocated] = useState(false);
const [geoErrorMessage, setGeoErrorMessage] = useState(null);
///
const [results, setResults] = useState([]);
const [loading, setLoading] = useState(true);
const [fetchingData, setFetchingData] = useState(false);
const [errorMessage, setErrorMessage] = useState("");
const [offset, setOffset] = useState(0);
//
const getLocation = async () => {
const { status } = await Permissions.askAsync(Permissions.LOCATION);
if (status !== "granted") {
setGeoErrorMessage(
"We need to access your location,We use your location to show where you are on the map"
);
}
const position = await Location.getCurrentPositionAsync();
setLocated(true);
setPosition({
lat: position.coords.latitude,
long: position.coords.longitude
});
};
const searchApi = async initialSearch => {
try {
const res = await axios.get("/search", {
params: {
limit: 50,
// TODO: change to device location
// location: "seattle",
latitude: position.lat,
longitude: position.long,
offset: offset,
term: initialSearch
}
});
setResults(res.data.businesses);
setLoading(false);
setErrorMessage("");
} catch (err) {
setErrorMessage("Oops, something went wrong :( ");
}
};
const searchNextApi = async initialSearch => {
setOffset(offset + 50);
setFetchingData(true);
try {
const res = await axios.get("/search", {
params: {
limit: 50,
offset: offset,
term: initialSearch,
// TODO: change to device location
// location: "seattle",
latitude: position.lat,
longitude: position.long,
radius: 8046
}
});
setFetchingData(false);
setResults(res.data.businesses);
} catch (err) {
setErrorMessage("Oops, something went wrong :( ");
}
};
useEffect(() => {
getLocation();
}, []);
return [
located,
// position,
geoErrorMessage,
searchApi,
results,
errorMessage,
loading,
searchNextApi,
fetchingData
];
};