Hello its my first time here.
I've been trying to solve this issue for the past couple of hours and I cant understand the problem (I'm new to react).
In PrivateRoute I am trying to render an Authentication Component based on a session.
- session EXISTS => Authentication Component should render
- NOT EXISTS => a received Component should render
The error I'm getting is:
Objects are not valid as a React child (found: [object Promise]).
If you meant to render a collection of children, use an array instead.
help will be appreciated!
This is what I have done so far:
import Login from './Login'
import Register from './Register'
import React, {Component} from 'react'
import Authentication from './Authentication'
import { BrowserRouter , Redirect, Route, Switch,} from 'react-router-dom'
const Authorization= ()=>{
return new Promise ((resolve,reject)=>{
fetch('http://localhost:3000/content',{credentials:'include'}) //includes cookie from different port
.then((res)=>res.json())
.then((data)=>{
if (data.user=="notLogged"){
reject(false)
}else
resolve(true)
})
})
}
const PrivateRoute= async ({ component: Component})=> {
var auth= await Authorization()
console.log(auth);
if (auth){
return <Authentication/>
}else{
return <Component/>
}
}
class Index extends Component{
render(){
return(
<BrowserRouter>
{/* router may have only one child element- switch is the more common */}
<Switch>
<PrivateRoute exact path="/" component={Login}/>
<PrivateRoute exact path="/login" component={Login} />
<Route exact path="/register" component={Register} />
</Switch>
</BrowserRouter>
)
}
}
export default Index
var auth= await Authorization()?