mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 20:15:01 +00:00
71 lines
2.8 KiB
TypeScript
71 lines
2.8 KiB
TypeScript
import { render, Component } from 'inferno';
|
|
import { HashRouter, BrowserRouter, Route, Switch } from 'inferno-router';
|
|
import { Main } from './components/main';
|
|
import { Navbar } from './components/navbar';
|
|
import { Footer } from './components/footer';
|
|
import { Login } from './components/login';
|
|
import { CreatePost } from './components/create-post';
|
|
import { CreateCommunity } from './components/create-community';
|
|
import { Post } from './components/post';
|
|
import { Community } from './components/community';
|
|
import { Communities } from './components/communities';
|
|
import { User } from './components/user';
|
|
import { Modlog } from './components/modlog';
|
|
import { Setup } from './components/setup';
|
|
import { Inbox } from './components/inbox';
|
|
import { Search } from './components/search';
|
|
import { Sponsors } from './components/sponsors';
|
|
import { Symbols } from './components/symbols';
|
|
|
|
import './css/bootstrap.min.css';
|
|
import './css/main.css';
|
|
|
|
import { WebSocketService, UserService } from './services';
|
|
|
|
const container = document.getElementById('app');
|
|
|
|
class Index extends Component<any, any> {
|
|
|
|
constructor(props: any, context: any) {
|
|
super(props, context);
|
|
WebSocketService.Instance;
|
|
UserService.Instance;
|
|
}
|
|
|
|
render() {
|
|
return (
|
|
<BrowserRouter>
|
|
<Navbar />
|
|
<div class="mt-3 p-0">
|
|
<Switch>
|
|
<Route path={`/home/type/:type/sort/:sort/page/:page`} component={Main} />
|
|
<Route exact path={`/`} component={Main} />
|
|
<Route path={`/login`} component={Login} />
|
|
<Route path={`/create_post`} component={CreatePost} />
|
|
<Route path={`/create_community`} component={CreateCommunity} />
|
|
<Route path={`/communities`} component={Communities} />
|
|
<Route path={`/post/:id/comment/:comment_id`} component={Post} />
|
|
<Route path={`/post/:id`} component={Post} />
|
|
<Route path={`/f/:name/sort/:sort/page/:page`} component={Community} />
|
|
<Route path={`/community/:id`} component={Community} />
|
|
<Route path={`/f/:name`} component={Community} />
|
|
<Route path={`/u/:username/view/:view/sort/:sort/page/:page`} component={User} />
|
|
<Route path={`/user/:id`} component={User} />
|
|
<Route path={`/u/:username`} component={User} />
|
|
<Route path={`/inbox`} component={Inbox} />
|
|
<Route path={`/modlog/community/:community_id`} component={Modlog} />
|
|
<Route path={`/modlog`} component={Modlog} />
|
|
<Route path={`/setup`} component={Setup} />
|
|
<Route path={`/search`} component={Search} />
|
|
<Route path={`/sponsors`} component={Sponsors} />
|
|
</Switch>
|
|
<Symbols />
|
|
</div>
|
|
<Footer />
|
|
</HashRouter>
|
|
);
|
|
}
|
|
|
|
}
|
|
|
|
render(<Index />, container);
|