2022-01-02 00:19:18 +00:00
|
|
|
import React, { Component } from "react";
|
2022-01-31 12:53:20 +00:00
|
|
|
import { BrowserRouter as Router, Switch, Route, Link, Redirect,useHistory } from "react-router-dom";
|
2022-01-02 00:19:18 +00:00
|
|
|
|
2022-01-02 15:19:49 +00:00
|
|
|
import UserGenPage from "./UserGenPage";
|
2022-01-02 00:19:18 +00:00
|
|
|
import MakerPage from "./MakerPage";
|
|
|
|
import BookPage from "./BookPage";
|
|
|
|
import OrderPage from "./OrderPage";
|
2022-01-31 12:53:20 +00:00
|
|
|
import BottomBar from "./BottomBar";
|
|
|
|
|
2022-01-02 00:19:18 +00:00
|
|
|
export default class HomePage extends Component {
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
2022-01-31 12:53:20 +00:00
|
|
|
this.state = {
|
|
|
|
nickname: null,
|
|
|
|
token: null,
|
2022-02-01 19:43:33 +00:00
|
|
|
avatarLoaded: false,
|
2022-01-31 12:53:20 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
setAppState=(newState)=>{
|
|
|
|
this.setState(newState)
|
|
|
|
}
|
|
|
|
|
|
|
|
redirectTo(location) {
|
|
|
|
this.props.history.push(location);
|
2022-01-02 00:19:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<Router >
|
2022-01-31 12:53:20 +00:00
|
|
|
<div className='appCenter'>
|
|
|
|
<Switch>
|
|
|
|
<Route exact path='/' render={(props) => <UserGenPage setAppState={this.setAppState}/>}/>
|
|
|
|
<Route path='/make' component={MakerPage}/>
|
|
|
|
<Route path='/book' component={BookPage}/>
|
|
|
|
<Route path="/order/:orderId" component={OrderPage}/>
|
|
|
|
</Switch>
|
|
|
|
</div>
|
|
|
|
<div className='bottomBar'>
|
|
|
|
<BottomBar redirectTo={this.redirectTo} {...this.state} setAppState={this.setAppState} />
|
|
|
|
</div>
|
2022-01-02 00:19:18 +00:00
|
|
|
</Router>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|