Skip to content

Commit a1208c8

Browse files
committed
converts JavaScript to TypeScript and remove deprecated methods
1 parent 1c21ff5 commit a1208c8

24 files changed

+7716
-353
lines changed

.eslintignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/dist
2+
/node_modules

.eslintrc.js

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
module.exports = {
2+
root: true,
3+
extends: '@react-native-community',
4+
};

.gitignore

+19-9
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ DerivedData
2020
*.hmap
2121
*.ipa
2222
*.xcuserstate
23-
project.xcworkspace
23+
ios/.xcode.env.local
2424

2525
# Android/IntelliJ
2626
#
@@ -29,28 +29,38 @@ build/
2929
.gradle
3030
local.properties
3131
*.iml
32+
*.hprof
33+
.cxx/
34+
*.keystore
35+
!debug.keystore
3236

3337
# node.js
3438
#
3539
node_modules/
3640
npm-debug.log
3741
yarn-error.log
3842

39-
# BUCK
40-
buck-out/
41-
\.buckd/
42-
*.keystore
43-
4443
# fastlane
4544
#
4645
# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the
4746
# screenshots whenever they are needed.
4847
# For more information about the recommended setup visit:
4948
# https://docs.fastlane.tools/best-practices/source-control/
5049

51-
*/fastlane/report.xml
52-
*/fastlane/Preview.html
53-
*/fastlane/screenshots
50+
**/fastlane/report.xml
51+
**/fastlane/Preview.html
52+
**/fastlane/screenshots
53+
**/fastlane/test_output
5454

5555
# Bundle artifact
5656
*.jsbundle
57+
58+
# Ruby / CocoaPods
59+
/ios/Pods/
60+
/vendor/bundle/
61+
62+
# Temporary files created by Metro to check the health of the file watcher
63+
.metro-health-check*
64+
65+
/dist
66+
!/dist/.gitkeep

.npmignore

+10-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1-
node_modules/
2-
__tests__/
31
.vscode/
2+
.github/
3+
.prettierrc.js
4+
.eslintrc.js
45
yarn.lock
6+
tsconfig.json
7+
babel.config.js
8+
node_modules/
9+
__tests__/
10+
screenshots/
511
Sample/
6-
android/build/
7-
android/.idea/
8-
android/.gradle/
12+
src/
13+
scripts/

.prettierrc.js

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
module.exports = {
2+
arrowParens: 'avoid',
3+
bracketSameLine: true,
4+
bracketSpacing: false,
5+
singleQuote: true,
6+
trailingComma: 'all',
7+
};

LocationError.js

-36
This file was deleted.

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,8 @@ For more details, see the [Sample Project](https://github.com/douglasjunior/reac
8080
### Object `LocationConfig`
8181

8282
**Properties:**
83-
- `enableHighAccuracy`: Set `true` to use 'fine location' (GPS) our `false` to use 'course location' (Wifi, Bluetooth, 3G).
84-
- `timeout`: The max time (in milliseconds) that you want to wait to receive a location.
83+
- `enableHighAccuracy`: Set `true` to use 'fine location' (GPS) our `false` to use 'course location' (Wifi, Bluetooth, 3G). Default: `false`
84+
- `timeout`: The max time (in milliseconds) that you want to wait to receive a location. Default: `60000` (60 seconds)
8585
- `rationale?`: (Android only) See the [React Native docs](https://reactnative.dev/docs/permissionsandroid#request).
8686

8787
### Object `Location`

Sample/App.tsx

+31-36
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
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+
125
import React, {useState} from 'react';
226
import {
327
Platform,
@@ -6,13 +30,12 @@ import {
630
View,
731
Button,
832
ActivityIndicator,
9-
Linking,
1033
} from 'react-native';
1134

1235
import GetLocation, {
1336
Location,
14-
LocationError,
1537
LocationErrorCode,
38+
isLocationError,
1639
} from 'react-native-get-location';
1740

1841
const instructions = Platform.select({
@@ -72,7 +95,7 @@ function App(): JSX.Element {
7295
setLocation(newLocation);
7396
})
7497
.catch(ex => {
75-
if (ex instanceof LocationError) {
98+
if (isLocationError(ex)) {
7699
const {code, message} = ex;
77100
console.warn(code, message);
78101
setError(code);
@@ -90,59 +113,31 @@ function App(): JSX.Element {
90113
<Text style={styles.instructions}>
91114
To get location, press the button:
92115
</Text>
116+
93117
<View style={styles.button}>
94118
<Button
95119
disabled={loading}
96120
title="Get Location"
97121
onPress={requestLocation}
98122
/>
99123
</View>
124+
100125
{loading ? <ActivityIndicator /> : null}
101126
{location ? (
102127
<Text style={styles.location}>{JSON.stringify(location, null, 2)}</Text>
103128
) : null}
104129
{error ? <Text style={styles.location}>Error: {error}</Text> : null}
130+
105131
<Text style={styles.instructions}>Extra functions:</Text>
106132
<View style={styles.button}>
107133
<Button
108134
title="Open App Settings"
109135
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();
143137
}}
144138
/>
145139
</View>
140+
146141
<Text style={styles.instructions}>{instructions}</Text>
147142
</View>
148143
);

Sample/install.sh

+11-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,16 @@
11
#!/bin/bash
22

3+
unameOut="$(uname -s)"
4+
5+
echo "$unameOut";
6+
37
rm -rf ../node_modules/
48
rm -rf node_modules/
59
yarn install
6-
./pod-install.sh
10+
rm -rf node_modules/react-native-get-location/Sample/
11+
rm -rf node_modules/react-native-get-location/.git/
12+
13+
if [ "$unameOut" == "Darwin" ]; then
14+
cd ios
15+
pod install
16+
fi

Sample/ios/Podfile.lock

+3-3
Original file line numberDiff line numberDiff line change
@@ -413,7 +413,7 @@ PODS:
413413
- React-jsi (= 0.71.3)
414414
- React-logger (= 0.71.3)
415415
- React-perflogger (= 0.71.3)
416-
- ReactNativeGetLocation (2.2.1):
416+
- ReactNativeGetLocation (3.0.1):
417417
- React-Core
418418
- SocketRocket (0.6.0)
419419
- Yoga (1.14.0)
@@ -619,11 +619,11 @@ SPEC CHECKSUMS:
619619
React-RCTVibration: 5199a180d04873366a83855de55ac33ce60fe4d5
620620
React-runtimeexecutor: 7bf0dafc7b727d93c8cb94eb00a9d3753c446c3e
621621
ReactCommon: 6f65ea5b7d84deb9e386f670dd11ce499ded7b40
622-
ReactNativeGetLocation: d6b15cb2a2023ab7703f756501bad86d3ecf6fea
622+
ReactNativeGetLocation: d8e41c5d499fd26f308502405cadb1f59e6179d6
623623
SocketRocket: fccef3f9c5cedea1353a9ef6ada904fde10d6608
624624
Yoga: 5ed1699acbba8863755998a4245daa200ff3817b
625625
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a
626626

627627
PODFILE CHECKSUM: 75976164cf265540fe76372458a39c3d59d7675a
628628

629-
COCOAPODS: 1.11.2
629+
COCOAPODS: 1.12.0

Sample/package.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
"ios": "react-native run-ios",
88
"start": "react-native start",
99
"test": "jest",
10-
"lint": "eslint .",
11-
"postinstall": "rimraf node_modules/react-native-get-location/Sample/"
10+
"lint": "eslint ."
1211
},
1312
"dependencies": {
1413
"react": "18.2.0",
@@ -30,7 +29,6 @@
3029
"metro-react-native-babel-preset": "0.73.7",
3130
"prettier": "^2.4.1",
3231
"react-test-renderer": "18.2.0",
33-
"rimraf": "4.1.2",
3432
"typescript": "4.8.4"
3533
},
3634
"jest": {

Sample/yarn.lock

+1-6
Original file line numberDiff line numberDiff line change
@@ -5831,7 +5831,7 @@ react-native-codegen@^0.71.5:
58315831
nullthrows "^1.1.1"
58325832

58335833
"react-native-get-location@file:..":
5834-
version "2.2.1"
5834+
version "3.0.1"
58355835

58365836
react-native-gradle-plugin@^0.71.15:
58375837
version "0.71.15"
@@ -6097,11 +6097,6 @@ reusify@^1.0.4:
60976097
resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76"
60986098
integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==
60996099

6100-
6101-
version "4.1.2"
6102-
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-4.1.2.tgz#20dfbc98083bdfaa28b01183162885ef213dbf7c"
6103-
integrity sha512-BlIbgFryTbw3Dz6hyoWFhKk+unCcHMSkZGrTFVAx2WmttdBSonsdtRlwiuTbDqTKr+UlXIUqJVS4QT5tUzGENQ==
6104-
61056100
rimraf@^3.0.2:
61066101
version "3.0.2"
61076102
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a"

babel.config.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
presets: ['module:metro-react-native-babel-preset'],
3+
};

0 commit comments

Comments
 (0)