mirror of
https://github.com/mickael-kerjean/filestash.git
synced 2025-11-02 20:23:32 +08:00
35 lines
901 B
JavaScript
35 lines
901 B
JavaScript
import React from 'react';
|
|
import { Redirect } from 'react-router';
|
|
|
|
import { Session } from '../model/';
|
|
import { Loader } from '../components/';
|
|
|
|
export class HomePage extends React.Component {
|
|
constructor(props){
|
|
super(props);
|
|
this.state = {
|
|
redirection: null
|
|
};
|
|
}
|
|
|
|
componentDidMount(){
|
|
Session.isLoggedIn()
|
|
.then((res) => {
|
|
if(res === true){
|
|
this.setState({redirection: "/files"});
|
|
}else{
|
|
this.setState({redirection: "/login"});
|
|
}
|
|
})
|
|
.catch((err) => {
|
|
this.setState({redirection: "/login"});
|
|
});
|
|
}
|
|
render() {
|
|
if(this.state.redirection !== null){
|
|
return ( <Redirect to={this.state.redirection} /> );
|
|
}
|
|
return ( <div> <Loader /> </div> );
|
|
}
|
|
}
|