2020-09-06 16:15:25 +00:00
|
|
|
import { IRouteProps } from 'inferno-router/dist/Route';
|
|
|
|
import { Main } from './components/main';
|
|
|
|
import { Login } from './components/login';
|
|
|
|
import { CreatePost } from './components/create-post';
|
|
|
|
import { CreateCommunity } from './components/create-community';
|
|
|
|
import { CreatePrivateMessage } from './components/create-private-message';
|
|
|
|
import { PasswordChange } from './components/password_change';
|
|
|
|
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 { AdminSettings } from './components/admin-settings';
|
|
|
|
import { Inbox } from './components/inbox';
|
|
|
|
import { Search } from './components/search';
|
|
|
|
import { Sponsors } from './components/sponsors';
|
|
|
|
import { Instances } from './components/instances';
|
|
|
|
|
2020-09-07 03:41:46 +00:00
|
|
|
interface IRoutePropsWithFetch extends IRouteProps {
|
|
|
|
fetchInitialData?(auth: string, path: string): Promise<any>[];
|
|
|
|
}
|
|
|
|
|
|
|
|
export const routes: IRoutePropsWithFetch[] = [
|
2020-09-08 04:09:11 +00:00
|
|
|
{
|
|
|
|
exact: true,
|
|
|
|
path: `/`,
|
|
|
|
component: Main,
|
|
|
|
fetchInitialData: (auth, path) => Main.fetchInitialData(auth, path),
|
|
|
|
},
|
2020-09-06 16:15:25 +00:00
|
|
|
{
|
|
|
|
path: `/home/data_type/:data_type/listing_type/:listing_type/sort/:sort/page/:page`,
|
|
|
|
component: Main,
|
2020-09-08 04:09:11 +00:00
|
|
|
fetchInitialData: (auth, path) => Main.fetchInitialData(auth, path),
|
2020-09-06 16:15:25 +00:00
|
|
|
},
|
|
|
|
{ path: `/login`, component: Login },
|
2020-09-07 22:24:48 +00:00
|
|
|
{
|
|
|
|
path: `/create_post`,
|
|
|
|
component: CreatePost,
|
|
|
|
fetchInitialData: (auth, path) => CreatePost.fetchInitialData(auth, path),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: `/create_community`,
|
|
|
|
component: CreateCommunity,
|
|
|
|
fetchInitialData: (auth, path) =>
|
|
|
|
CreateCommunity.fetchInitialData(auth, path),
|
|
|
|
},
|
2020-09-06 16:15:25 +00:00
|
|
|
{
|
|
|
|
path: `/create_private_message`,
|
|
|
|
component: CreatePrivateMessage,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: `/communities/page/:page`,
|
|
|
|
component: Communities,
|
2020-09-07 03:41:46 +00:00
|
|
|
fetchInitialData: (auth, path) => Communities.fetchInitialData(auth, path),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
path: `/communities`,
|
|
|
|
component: Communities,
|
|
|
|
fetchInitialData: (auth, path) => Communities.fetchInitialData(auth, path),
|
2020-09-06 16:15:25 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
path: `/post/:id/comment/:comment_id`,
|
|
|
|
component: Post,
|
|
|
|
},
|
|
|
|
{ path: `/post/:id`, component: Post },
|
|
|
|
{
|
|
|
|
path: `/c/:name/data_type/:data_type/sort/:sort/page/:page`,
|
|
|
|
component: Community,
|
|
|
|
},
|
|
|
|
{ path: `/community/:id`, component: Community },
|
|
|
|
{ path: `/c/:name`, component: Community },
|
|
|
|
{
|
|
|
|
path: `/u/:username/view/:view/sort/:sort/page/:page`,
|
|
|
|
component: User,
|
|
|
|
},
|
|
|
|
{ path: `/user/:id`, component: User },
|
|
|
|
{ path: `/u/:username`, component: User },
|
|
|
|
{ path: `/inbox`, component: Inbox },
|
|
|
|
{
|
|
|
|
path: `/modlog/community/:community_id`,
|
|
|
|
component: Modlog,
|
|
|
|
},
|
|
|
|
{ path: `/modlog`, component: Modlog },
|
|
|
|
{ path: `/setup`, component: Setup },
|
|
|
|
{ path: `/admin`, component: AdminSettings },
|
|
|
|
{
|
|
|
|
path: `/search/q/:q/type/:type/sort/:sort/page/:page`,
|
|
|
|
component: Search,
|
|
|
|
},
|
|
|
|
{ path: `/search`, component: Search },
|
|
|
|
{ path: `/sponsors`, component: Sponsors },
|
|
|
|
{
|
|
|
|
path: `/password_change/:token`,
|
|
|
|
component: PasswordChange,
|
|
|
|
},
|
|
|
|
{ path: `/instances`, component: Instances },
|
|
|
|
];
|