2019-03-21 01:22:31 +00:00
|
|
|
import { render, Component } from 'inferno';
|
|
|
|
import { HashRouter, Route, Switch } from 'inferno-router';
|
|
|
|
|
|
|
|
import { Navbar } from './components/navbar';
|
|
|
|
import { Home } from './components/home';
|
|
|
|
import { Login } from './components/login';
|
2019-03-23 01:42:57 +00:00
|
|
|
import { CreatePost } from './components/create-post';
|
|
|
|
import { CreateCommunity } from './components/create-community';
|
2019-03-26 18:00:18 +00:00
|
|
|
import { Post } from './components/post';
|
|
|
|
import { Community } from './components/community';
|
2019-04-04 20:00:19 +00:00
|
|
|
import { Communities } from './components/communities';
|
2019-04-08 05:19:02 +00:00
|
|
|
import { User } from './components/user';
|
2019-04-08 21:46:09 +00:00
|
|
|
import { Symbols } from './components/symbols';
|
2019-03-21 01:22:31 +00:00
|
|
|
|
|
|
|
import './main.css';
|
|
|
|
|
2019-03-23 01:42:57 +00:00
|
|
|
import { WebSocketService, UserService } from './services';
|
2019-03-21 01:22:31 +00:00
|
|
|
|
|
|
|
const container = document.getElementById('app');
|
|
|
|
|
|
|
|
class Index extends Component<any, any> {
|
|
|
|
|
2019-04-08 05:19:02 +00:00
|
|
|
constructor(props: any, context: any) {
|
2019-03-21 01:22:31 +00:00
|
|
|
super(props, context);
|
|
|
|
WebSocketService.Instance;
|
2019-03-23 01:42:57 +00:00
|
|
|
UserService.Instance;
|
2019-03-21 01:22:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
|
|
|
<HashRouter>
|
|
|
|
<Navbar />
|
|
|
|
<div class="mt-3 p-0">
|
|
|
|
<Switch>
|
|
|
|
<Route exact path="/" component={Home} />
|
|
|
|
<Route path={`/login`} component={Login} />
|
2019-03-23 01:42:57 +00:00
|
|
|
<Route path={`/create_post`} component={CreatePost} />
|
|
|
|
<Route path={`/create_community`} component={CreateCommunity} />
|
2019-04-04 20:00:19 +00:00
|
|
|
<Route path={`/communities`} component={Communities} />
|
2019-04-08 05:19:02 +00:00
|
|
|
<Route path={`/post/:id/comment/:comment_id`} component={Post} />
|
2019-03-26 18:00:18 +00:00
|
|
|
<Route path={`/post/:id`} component={Post} />
|
|
|
|
<Route path={`/community/:id`} component={Community} />
|
2019-04-08 05:19:02 +00:00
|
|
|
<Route path={`/user/:id/:heading`} component={User} />
|
|
|
|
<Route path={`/user/:id`} component={User} />
|
2019-03-21 01:22:31 +00:00
|
|
|
</Switch>
|
2019-04-08 21:46:09 +00:00
|
|
|
<Symbols />
|
2019-03-21 01:22:31 +00:00
|
|
|
</div>
|
|
|
|
</HashRouter>
|
|
|
|
);
|
|
|
|
}
|
2019-04-06 22:49:51 +00:00
|
|
|
|
2019-03-21 01:22:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
render(<Index />, container);
|