Skip to content

Commit b2f8ffe

Browse files
authored
Merge pull request #52 from joaocarmo/next
[Release] v1.2.0
2 parents 9576849 + fae2b4b commit b2f8ffe

File tree

8 files changed

+131
-85
lines changed

8 files changed

+131
-85
lines changed

ios/Podfile.lock

+2-2
Original file line numberDiff line numberDiff line change
@@ -878,7 +878,7 @@ PODS:
878878
- React-jsi (= 0.68.0)
879879
- React-logger (= 0.68.0)
880880
- React-perflogger (= 0.68.0)
881-
- RNBackgroundFetch (4.0.5):
881+
- RNBackgroundFetch (4.1.0):
882882
- React-Core
883883
- RNBootSplash (4.1.4):
884884
- React-Core
@@ -1318,7 +1318,7 @@ SPEC CHECKSUMS:
13181318
React-RCTVibration: 82fc52d3d96549b8c59a6c8c017d5a1a11457049
13191319
React-runtimeexecutor: 9b1304f48e344c55bb3c36e13bf11461cb4da5d8
13201320
ReactCommon: fab89a13b52f1ac42b59a0e4b4f76f21aea9eebe
1321-
RNBackgroundFetch: f61b5eb62e86e76ec6302c3ba9798966a14aa312
1321+
RNBackgroundFetch: 1f47e8f793ad7a1ae7f0e3db5437f4feaf887a03
13221322
RNBootSplash: de2c568373a9c79a66e9918b8929eb6c9a35246f
13231323
RNCAsyncStorage: 005c0e2f09575360f142d0d1f1f15e4ec575b1af
13241324
RNCClipboard: 41d8d918092ae8e676f18adada19104fa3e68495

ios/litten.xcodeproj/project.pbxproj

+49-49
Large diffs are not rendered by default.

lib/components/add-photo/index.tsx

+9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { ComponentType, useCallback, useMemo } from 'react'
2+
import { Alert } from 'react-native'
23
import type { ImageProps } from 'react-native'
34
import ImagePicker from 'react-native-image-crop-picker'
45
import type { ImageOrVideo } from 'react-native-image-crop-picker'
@@ -46,6 +47,10 @@ const AddPhoto = ({
4647
}
4748
} catch (err) {
4849
debugLog(err)
50+
51+
if (err.message.includes('permission')) {
52+
Alert.alert(translate('feedback.errorMessages.noCameraPermissions'))
53+
}
4954
}
5055
}, [onChange])
5156

@@ -55,6 +60,10 @@ const AddPhoto = ({
5560
onChange(image)
5661
} catch (err) {
5762
debugLog(err)
63+
64+
if (err.message.includes('permission')) {
65+
Alert.alert(translate('feedback.errorMessages.noLibraryPermissions'))
66+
}
5867
}
5968
}, [onChange])
6069

lib/forms/register/steps/photo.tsx

+8
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ const StepPhoto = ({
4242
}
4343
} catch (err) {
4444
debugLog(err)
45+
46+
if (err.message.includes('permission')) {
47+
Alert.alert(translate('feedback.errorMessages.noCameraPermissions'))
48+
}
4549
}
4650
}, [setAvatar])
4751

@@ -54,6 +58,10 @@ const StepPhoto = ({
5458
})
5559
} catch (err) {
5660
debugLog(err)
61+
62+
if (err.message.includes('permission')) {
63+
Alert.alert(translate('feedback.errorMessages.noLibraryPermissions'))
64+
}
5765
}
5866
}, [setAvatar])
5967

lib/translations/en.json

+2
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,8 @@
323323
"networkProblem": "There is a network problem",
324324
"newErrorTitle": "Error creating",
325325
"newUnverifiefEmail": "You need to verify your email address before you can create a new litten! This can be done in your profile settings. You can click this message to go there now.",
326+
"noCameraPermissions": "We can't access your camera. Please give Litten access to your camera. You can do so on your device's definitions.",
327+
"noLibraryPermissions": "We can't access your library. Please give Litten access to your library. You can do so on your device's definitions.",
326328
"noPhoneNumberDesc": "You haven't specified a phone number yet, but you can do so in your profile.",
327329
"noPhoneNumberTitle": "No Phone Number",
328330
"notImplemented": "That feature isn't active yet",

lib/translations/pt.json

+2
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,8 @@
323323
"networkProblem": "Existe um problema de ligação",
324324
"newErrorTitle": "Erro ao criar",
325325
"newUnverifiefEmail": "Precisas de verificar o teu endereço de email antes de criar um novo litten! Isto pode ser feito nas tuas definições de perfil.",
326+
"noCameraPermissions": "Sem permissões de acesso à câmara. Por favor, verifica as definições de acesso da Litten à tua câmara.",
327+
"noLibraryPermissions": "Sem permissões de acesso à galeria de fotografias. Por favor, verifica as definições de acesso da Litten à tua galeria de fotografias.",
326328
"noPhoneNumberDesc": "Ainda não introduziste um número de telemóvel, mas podes fazê-lo no teu perfil",
327329
"noPhoneNumberTitle": "Sem telemóvel",
328330
"notImplemented": "Essa funcionalidade está inactiva",

package.json

+7-7
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
"libphonenumber-js": "^1.9.49",
122122
"react": "17.0.2",
123123
"react-native": "0.68.0",
124-
"react-native-background-fetch": "^4.0.5",
124+
"react-native-background-fetch": "^4.1.0",
125125
"react-native-bootsplash": "^4.1.3",
126126
"react-native-device-info": "^8.5.0",
127127
"react-native-dialog": "^9.2.1",
@@ -157,8 +157,8 @@
157157
"@types/i18n-js": "^3.8.2",
158158
"@types/jest": "^27.4.1",
159159
"@types/lodash": "^4.14.180",
160-
"@types/react": "^17.0.40",
161-
"@types/react-native": "^0.67.3",
160+
"@types/react": "^17.0.44",
161+
"@types/react-native": "^0.67.4",
162162
"@types/react-test-renderer": "^17.0.1",
163163
"@typescript-eslint/eslint-plugin": "^5.15.0",
164164
"@typescript-eslint/parser": "^5.15.0",
@@ -169,13 +169,13 @@
169169
"babel-plugin-macros": "^3.0.1",
170170
"babel-plugin-module-resolver": "^4.1.0",
171171
"camelcase": "^6.3.0",
172-
"eslint": "^8.11.0",
172+
"eslint": "^8.13.0",
173173
"eslint-config-airbnb": "^19.0.4",
174174
"eslint-config-prettier": "^8.5.0",
175175
"eslint-import-resolver-custom-alias": "^1.3.0",
176176
"eslint-plugin-flowtype": "^8.0.3",
177177
"eslint-plugin-import": "^2.26.0",
178-
"eslint-plugin-jest": "^26.1.1",
178+
"eslint-plugin-jest": "^26.1.4",
179179
"eslint-plugin-jsx-a11y": "^6.5.1",
180180
"firebase": "^9.6.8",
181181
"firebase-admin": "^10.0.2",
@@ -187,15 +187,15 @@
187187
"jsonschema": "^1.4.0",
188188
"lint-staged": "^12.3.6",
189189
"lodash": "^4.17.21",
190-
"metro-react-native-babel-preset": "^0.70.0",
190+
"metro-react-native-babel-preset": "^0.70.1",
191191
"papaparse": "^5.3.2",
192192
"patch-package": "^6.4.6",
193193
"pinst": "^3.0.0",
194194
"pod-install": "^0.1.32",
195195
"postinstall-postinstall": "^2.1.0",
196196
"prettier": "^2.6.0",
197197
"preval.macro": "^5.0.0",
198-
"react-devtools": "^4.24.1",
198+
"react-devtools": "^4.24.4",
199199
"react-native-svg-transformer": "^1.0.0",
200200
"react-native-version": "^4.0.0",
201201
"react-test-renderer": "17.0.2",

yarn.lock

+52-27
Original file line numberDiff line numberDiff line change
@@ -623,6 +623,13 @@
623623
"@babel/helper-simple-access" "^7.17.7"
624624
babel-plugin-dynamic-import-node "^2.3.3"
625625

626+
"@babel/plugin-transform-named-capturing-groups-regex@^7.0.0":
627+
version "7.16.8"
628+
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.16.8.tgz#7f860e0e40d844a02c9dcf9d84965e7dfd666252"
629+
integrity sha512-j3Jw+n5PvpmhRR+mrgIh04puSANCk/T/UA3m3P1MjJkhlK906+ApHhDIqBQDdOgL/r1UYpz4GNclTXxyZrYGSw==
630+
dependencies:
631+
"@babel/helper-create-regexp-features-plugin" "^7.16.7"
632+
626633
"@babel/plugin-transform-object-assign@^7.0.0", "@babel/plugin-transform-object-assign@^7.16.7":
627634
version "7.16.7"
628635
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-object-assign/-/plugin-transform-object-assign-7.16.7.tgz#5fe08d63dccfeb6a33aa2638faf98e5c584100f8"
@@ -3258,10 +3265,10 @@
32583265
resolved "https://registry.yarnpkg.com/@types/range-parser/-/range-parser-1.2.4.tgz#cd667bcfdd025213aafb7ca5915a932590acdcdc"
32593266
integrity sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==
32603267

3261-
"@types/react-native@^0.67.3":
3262-
version "0.67.3"
3263-
resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.67.3.tgz#baba111c8ce1a45a6034c15f6f0ad98826239780"
3264-
integrity sha512-hF4uOZFl2PPQtGWOtLoafrlCJeU815X3PgfVePM+7EhOIZhYXKH7+p3R3cZSnwVnrU5Ep/JfiHimMDliY3o8oQ==
3268+
"@types/react-native@^0.67.4":
3269+
version "0.67.4"
3270+
resolved "https://registry.yarnpkg.com/@types/react-native/-/react-native-0.67.4.tgz#97a8d3cff2a7606f247008e93d9fe2a3879bc84e"
3271+
integrity sha512-L81CB6W1m0s7d+TH/loP318+VKPwwjWQBUTVYQ1+lQTWiE5jHxyihgCmd7JbwLICo708FRSDwJW7pJoiZHy6yg==
32653272
dependencies:
32663273
"@types/react" "*"
32673274

@@ -3289,7 +3296,7 @@
32893296
dependencies:
32903297
"@types/react" "*"
32913298

3292-
"@types/react@*", "@types/react@^17.0.40", "@types/react@^17.0.43":
3299+
"@types/react@*", "@types/react@^17.0.43":
32933300
version "17.0.43"
32943301
resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.43.tgz#4adc142887dd4a2601ce730bc56c3436fdb07a55"
32953302
integrity sha512-8Q+LNpdxf057brvPu1lMtC5Vn7J119xrP1aq4qiaefNioQUYANF/CYeK4NsKorSZyUGJ66g0IM+4bbjwx45o2A==
@@ -3298,6 +3305,15 @@
32983305
"@types/scheduler" "*"
32993306
csstype "^3.0.2"
33003307

3308+
"@types/react@^17.0.44":
3309+
version "17.0.44"
3310+
resolved "https://registry.yarnpkg.com/@types/react/-/react-17.0.44.tgz#c3714bd34dd551ab20b8015d9d0dbec812a51ec7"
3311+
integrity sha512-Ye0nlw09GeMp2Suh8qoOv0odfgCoowfM/9MG6WeRD60Gq9wS90bdkdRtYbRkNhXOpG4H+YXGvj4wOWhAC0LJ1g==
3312+
dependencies:
3313+
"@types/prop-types" "*"
3314+
"@types/scheduler" "*"
3315+
csstype "^3.0.2"
3316+
33013317
"@types/redux-devtools-themes@^1.0.0":
33023318
version "1.0.0"
33033319
resolved "https://registry.yarnpkg.com/@types/redux-devtools-themes/-/redux-devtools-themes-1.0.0.tgz#4d22d3e8be499fc7eec220e020b0640d4bfb17bd"
@@ -6475,10 +6491,10 @@ [email protected]:
64756491
resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-22.4.1.tgz#a5fd6f7a2a41388d16f527073b778013c5189a9c"
64766492
integrity sha512-gcLfn6P2PrFAVx3AobaOzlIEevpAEf9chTpFZz7bYfc7pz8XRv7vuKTIE4hxPKZSha6XWKKplDQ0x9Pq8xX2mg==
64776493

6478-
eslint-plugin-jest@^26.1.1:
6479-
version "26.1.3"
6480-
resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-26.1.3.tgz#e722e5efeea18aa9dec7c7349987b641db19feb7"
6481-
integrity sha512-Pju+T7MFpo5VFhFlwrkK/9jRUu18r2iugvgyrWOnnGRaVTFFmFXp+xFJpHyqmjjLmGJPKLeEFLVTAxezkApcpQ==
6494+
eslint-plugin-jest@^26.1.4:
6495+
version "26.1.4"
6496+
resolved "https://registry.yarnpkg.com/eslint-plugin-jest/-/eslint-plugin-jest-26.1.4.tgz#8e3410093ff4439d0c3a371add5bf9e05623a57a"
6497+
integrity sha512-wgqxujmqc2qpvZqMFWCh6Cniqc8lWpapvXt9j/19DmBDqeDaYhJrSRezYR1SKyemvjx+9e9kny/dgRahraHImA==
64826498
dependencies:
64836499
"@typescript-eslint/utils" "^5.10.0"
64846500

@@ -6583,10 +6599,10 @@ eslint-visitor-keys@^3.0.0, eslint-visitor-keys@^3.3.0:
65836599
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz#f6480fa6b1f30efe2d1968aa8ac745b862469826"
65846600
integrity sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==
65856601

6586-
eslint@^8.11.0:
6587-
version "8.12.0"
6588-
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.12.0.tgz#c7a5bd1cfa09079aae64c9076c07eada66a46e8e"
6589-
integrity sha512-it1oBL9alZg1S8UycLm5YDMAkIhtH6FtAzuZs6YvoGVldWjbS08BkAdb/ymP9LlAyq8koANu32U7Ib/w+UNh8Q==
6602+
eslint@^8.13.0:
6603+
version "8.13.0"
6604+
resolved "https://registry.yarnpkg.com/eslint/-/eslint-8.13.0.tgz#6fcea43b6811e655410f5626cfcf328016badcd7"
6605+
integrity sha512-D+Xei61eInqauAyTJ6C0q6x9mx7kTUC1KZ0m0LSEexR0V+e94K12LmWX076ZIsldwfQ2RONdaJe0re0TRGQbRQ==
65906606
dependencies:
65916607
"@eslint/eslintrc" "^1.2.1"
65926608
"@humanwhocodes/config-array" "^0.9.2"
@@ -10637,10 +10653,10 @@ [email protected]:
1063710653
"@babel/template" "^7.0.0"
1063810654
react-refresh "^0.4.0"
1063910655

10640-
metro-react-native-babel-preset@^0.70.0:
10641-
version "0.70.0"
10642-
resolved "https://registry.yarnpkg.com/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.70.0.tgz#e1eaafdc4552ac52a9b46696a25a68bacc28c426"
10643-
integrity sha512-MoOK5/rdDE2bABA+KpbXV6w0Q96sZeZiE9Ct89NYp9nPwXIaY7ylulLsjW3+rT6BdecKuNPUVwvtO0vYIQwvRw==
10656+
metro-react-native-babel-preset@^0.70.1:
10657+
version "0.70.1"
10658+
resolved "https://registry.yarnpkg.com/metro-react-native-babel-preset/-/metro-react-native-babel-preset-0.70.1.tgz#d71c3630645014c7095fe94655f4c003a6a457ff"
10659+
integrity sha512-E7jCbHyb+HTA00AqO/XxURCNFc68KU9nJo7zMDGt4EjwcUP80RaBzK1O4/GborQzkWM4wjIuQMnYX6xWYuV5ag==
1064410660
dependencies:
1064510661
"@babel/core" "^7.14.0"
1064610662
"@babel/plugin-proposal-async-generator-functions" "^7.0.0"
@@ -10666,6 +10682,7 @@ metro-react-native-babel-preset@^0.70.0:
1066610682
"@babel/plugin-transform-function-name" "^7.0.0"
1066710683
"@babel/plugin-transform-literals" "^7.0.0"
1066810684
"@babel/plugin-transform-modules-commonjs" "^7.0.0"
10685+
"@babel/plugin-transform-named-capturing-groups-regex" "^7.0.0"
1066910686
"@babel/plugin-transform-parameters" "^7.0.0"
1067010687
"@babel/plugin-transform-react-display-name" "^7.0.0"
1067110688
"@babel/plugin-transform-react-jsx" "^7.0.0"
@@ -12374,24 +12391,32 @@ react-base16-styling@^0.9.1:
1237412391
csstype "^3.0.10"
1237512392
lodash.curry "^4.1.1"
1237612393

12377-
[email protected], react-devtools-core@^4.23.0:
12394+
12395+
version "4.24.4"
12396+
resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.24.4.tgz#adaa54569f87ce7c08384d12e0b35122a755cbae"
12397+
integrity sha512-jbX8Yqyq4YvFEobHyXVlGaH0Cs/+EOdb3PL911bxaR5BnzbB5TE4RFHC1iOgT4vRH3VxIIrVQ7lR9vsiFFCYCA==
12398+
dependencies:
12399+
shell-quote "^1.6.1"
12400+
ws "^7"
12401+
12402+
react-devtools-core@^4.23.0:
1237812403
version "4.24.3"
1237912404
resolved "https://registry.yarnpkg.com/react-devtools-core/-/react-devtools-core-4.24.3.tgz#371fef3f5c639db0dc59eeef334dd5e10ac61661"
1238012405
integrity sha512-+htKZxLxDN14jhRG3+IXRiJqNSGHUiPYrMtv9e7qlZxcbKeJjVs+C/hd8kZF5rydp3faBwFN6ZpTaZnLA3/ZGA==
1238112406
dependencies:
1238212407
shell-quote "^1.6.1"
1238312408
ws "^7"
1238412409

12385-
react-devtools@^4.24.1:
12386-
version "4.24.3"
12387-
resolved "https://registry.yarnpkg.com/react-devtools/-/react-devtools-4.24.3.tgz#9982e2958a029227bba9602b427f7de5fe97ac51"
12388-
integrity sha512-N9N4oiaePi2zYBNg2YXP2JlkQt1kWS2NfrYNtxlhR/IXKJeSBfGwOFFVRe5b7bxEroStzTD4xEa8Bqk2ieeTKA==
12410+
react-devtools@^4.24.4:
12411+
version "4.24.4"
12412+
resolved "https://registry.yarnpkg.com/react-devtools/-/react-devtools-4.24.4.tgz#cbc299ca0100755721d002ca4eb0b72743a0baef"
12413+
integrity sha512-r2/HZo1LAYrSm1EpJL2NAJZFxWuSgIXTciAICuBhgXlDW5WvZrJpsFa2gaPnVNACFnjRUzDebpSR1gYy2oGdeQ==
1238912414
dependencies:
1239012415
cross-spawn "^5.0.1"
1239112416
electron "^11.1.0"
1239212417
ip "^1.1.4"
1239312418
minimist "^1.2.3"
12394-
react-devtools-core "4.24.3"
12419+
react-devtools-core "4.24.4"
1239512420
update-notifier "^2.1.0"
1239612421

1239712422
react-dom@^17.0.2:
@@ -12441,10 +12466,10 @@ react-json-tree@^0.16.1:
1244112466
prop-types "^15.8.1"
1244212467
react-base16-styling "^0.9.1"
1244312468

12444-
react-native-background-fetch@^4.0.5:
12445-
version "4.0.5"
12446-
resolved "https://registry.yarnpkg.com/react-native-background-fetch/-/react-native-background-fetch-4.0.5.tgz#cf59466440d66585313d7fcb718a30ba1461a7be"
12447-
integrity sha512-RZx51NRtGX+BFQXW026HUbXzOvCsQX76uBjU2QbikrtE0BefDbhpUPkM8VwufYod0aN5IQ480UF+D9bwUpsxmg==
12469+
react-native-background-fetch@^4.1.0:
12470+
version "4.1.0"
12471+
resolved "https://registry.yarnpkg.com/react-native-background-fetch/-/react-native-background-fetch-4.1.0.tgz#6b5a4a85c9fcf18d3108bdca1d15a92c1166fe9a"
12472+
integrity sha512-LWl1xuLNfHbD9MQXV31RvpCia9hMxOW+gwjp5yzW7BbiZWTWV2TQ9szuHaPn4NBWHDdh+MtI5pb6JV9P/LCaOQ==
1244812473

1244912474
react-native-bootsplash@^4.1.3:
1245012475
version "4.1.4"

0 commit comments

Comments
 (0)