1
+ /**
2
+ * MIT License
3
+ *
4
+ * Copyright (c) 2019 Douglas Nassif Roma Junior
5
+ *
6
+ * Permission is hereby granted, free of charge, to any person obtaining a copy
7
+ * of this software and associated documentation files (the "Software"), to deal
8
+ * in the Software without restriction, including without limitation the rights
9
+ * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10
+ * copies of the Software, and to permit persons to whom the Software is
11
+ * furnished to do so, subject to the following conditions:
12
+ *
13
+ * The above copyright notice and this permission notice shall be included in all
14
+ * copies or substantial portions of the Software.
15
+ *
16
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19
+ * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21
+ * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22
+ * SOFTWARE.
23
+ */
24
+
1
25
import React , { useState } from 'react' ;
2
26
import {
3
27
Platform ,
@@ -6,13 +30,12 @@ import {
6
30
View ,
7
31
Button ,
8
32
ActivityIndicator ,
9
- Linking ,
10
33
} from 'react-native' ;
11
34
12
35
import GetLocation , {
13
36
Location ,
14
- LocationError ,
15
37
LocationErrorCode ,
38
+ isLocationError ,
16
39
} from 'react-native-get-location' ;
17
40
18
41
const instructions = Platform . select ( {
@@ -72,7 +95,7 @@ function App(): JSX.Element {
72
95
setLocation ( newLocation ) ;
73
96
} )
74
97
. catch ( ex => {
75
- if ( ex instanceof LocationError ) {
98
+ if ( isLocationError ( ex ) ) {
76
99
const { code, message} = ex ;
77
100
console . warn ( code , message ) ;
78
101
setError ( code ) ;
@@ -90,59 +113,31 @@ function App(): JSX.Element {
90
113
< Text style = { styles . instructions } >
91
114
To get location, press the button:
92
115
</ Text >
116
+
93
117
< View style = { styles . button } >
94
118
< Button
95
119
disabled = { loading }
96
120
title = "Get Location"
97
121
onPress = { requestLocation }
98
122
/>
99
123
</ View >
124
+
100
125
{ loading ? < ActivityIndicator /> : null }
101
126
{ location ? (
102
127
< Text style = { styles . location } > { JSON . stringify ( location , null , 2 ) } </ Text >
103
128
) : null }
104
129
{ error ? < Text style = { styles . location } > Error: { error } </ Text > : null }
130
+
105
131
< Text style = { styles . instructions } > Extra functions:</ Text >
106
132
< View style = { styles . button } >
107
133
< Button
108
134
title = "Open App Settings"
109
135
onPress = { ( ) => {
110
- GetLocation . openAppSettings ( ) ;
111
- } }
112
- />
113
- </ View >
114
- < View style = { styles . button } >
115
- < Button
116
- title = "Open Gps Settings"
117
- onPress = { ( ) => {
118
- GetLocation . openGpsSettings ( ) ;
119
- } }
120
- />
121
- </ View >
122
- < View style = { styles . button } >
123
- < Button
124
- title = "Open Wifi Settings"
125
- onPress = { ( ) => {
126
- GetLocation . openWifiSettings ( ) ;
127
- } }
128
- />
129
- </ View >
130
- < View style = { styles . button } >
131
- < Button
132
- title = "Open Mobile Data Settings"
133
- onPress = { ( ) => {
134
- GetLocation . openCelularSettings ( ) ;
135
- } }
136
- />
137
- </ View >
138
- < View style = { styles . button } >
139
- < Button
140
- title = "Open Linking Settings"
141
- onPress = { ( ) => {
142
- Linking . openSettings ( ) ;
136
+ GetLocation . openSettings ( ) ;
143
137
} }
144
138
/>
145
139
</ View >
140
+
146
141
< Text style = { styles . instructions } > { instructions } </ Text >
147
142
</ View >
148
143
) ;
0 commit comments