• python
  • javascript
  • reactjs
  • sql
  • c#
  • java
Facebook Twitter Instagram
Devs Fixed
  • python
  • javascript
  • reactjs
  • sql
  • c#
  • java
Devs Fixed
Home ยป Resolved: React Function to Component and Setting State with Function Return

Resolved: React Function to Component and Setting State with Function Return

0
By Isaac Tonny on 17/06/2022 Issue
Share
Facebook Twitter LinkedIn

Question:

here’s the jist of where I’m stuck (or just read the title for my question).
I have a firebase.js file where I have functions to authenticate. signinGithub, signinGoogle, signinEmail and so forth. The Firebase Auth business logic is in these functions.
I am showing errors with console.log or alert from these functions. The functions are imported into a Component and I don’t know how to capture the functions result into the component by somehow setting state from this out-of-component function file.
Here’s a basic example:
firebase.js
Login.jsx
I was thinking something like this but I can’t fully resolve it in my mind:
  • Set state in Login.js const [message, setMessage] = useState('')
  • When the imported signinWithGitHub has an error message —

I’m stuck figuring out how to apply to function message to the state, any ideas?

Answer:

You can create a custom function inside your Login. jsx file to call the original signInWithGitHub method with a try catch block. And more importantly, you should not use render inside a functional component. Use return to render the JSX in DOM.
firebase.js
Login.jsx

If you have better answer, please add a comment about this, thank you!

firebase javascript reactjs
Share. Facebook Twitter LinkedIn

Related Posts

Resolved: How to get Union type from an array of objects in Flow?

24/03/2023

Resolved: Modify entity using Action in C#

24/03/2023

Resolved: How to give rank on datetime column group by another column with userid in it

24/03/2023

Leave A Reply

© 2023 DEVSFIX.COM

Type above and press Enter to search. Press Esc to cancel.