Fakultas Ilmu Komputer UI
Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
ppl-fasilkom-ui
PPL KI Ganjil 2021 2022
Clicks - Ecosystem Business
clicks-frontend
Commits
093aa5e5
Commit
093aa5e5
authored
Sep 29, 2021
by
Bagus Prabowo
Committed by
Ahmad Izzudin Alifyandra
Sep 29, 2021
Browse files
Forgot Password Error Handling
parent
9a815414
Changes
2
Hide whitespace changes
Inline
Side-by-side
src/screens/auth/InputForgotPassword.tsx
View file @
093aa5e5
import
{
useNavigation
}
from
"
@react-navigation/core
"
;
import
React
from
"
react
"
;
import
{
useState
}
from
"
react
"
;
import
{
StyleSheet
,
View
,
Text
}
from
"
react-native
"
;
import
{
StyleSheet
,
View
,
Text
,
Alert
}
from
"
react-native
"
;
import
Colors
from
"
../../constants/Colors
"
;
import
{
RootTabScreenProps
}
from
"
../../types/navigation
"
;
import
PlainForm
from
"
../../components/Forms/PlainForm
"
;
...
...
@@ -10,6 +10,7 @@ import { MaterialIcons } from "@expo/vector-icons";
import
MainButton
from
"
../../components/button/MainButton
"
;
import
firebase
from
"
firebase
"
;
import
{
validateEmail
}
from
"
../../helpers/Validators
"
;
import
{
forgotPassword
}
from
"
../../service/firebase/auth
"
;
export
default
function
InputForgotPassword
({
navigation
,
...
...
@@ -46,10 +47,16 @@ export default function InputForgotPassword({
text
=
{
"
Reset Password
"
}
colors
=
{
"
Primary
"
}
onPress
=
{
()
=>
{
if
(
validateEmail
(
email
))
{
firebase
.
auth
().
sendPasswordResetEmail
(
email
);
nav
.
navigate
(
"
Auth
"
,
{
screen
:
"
ForgotPasswordDone
"
});
}
forgotPassword
(
email
)
.
then
(()
=>
nav
.
navigate
(
"
Auth
"
,
{
screen
:
"
ForgotPasswordDone
"
})
)
.
catch
((
e
)
=>
Alert
.
alert
(
"
Email tidak ditemukan
"
,
"
Silahkan masukkan email yang terdaftar
"
)
);
}
}
/>
</
View
>
...
...
src/service/firebase/auth.ts
View file @
093aa5e5
...
...
@@ -35,3 +35,7 @@ export const changePassword = async (password: string) => {
export
const
signUpAuth
=
async
(
email
:
string
,
password
:
string
)
=>
{
return
await
firebase
.
auth
().
createUserWithEmailAndPassword
(
email
,
password
);
};
export
const
forgotPassword
=
async
(
email
:
string
)
=>
{
return
await
firebase
.
auth
().
sendPasswordResetEmail
(
email
);
};
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment