2016-08-10 21:36:11 +02:00
|
|
|
/**
|
|
|
|
* Routes for the React app.
|
|
|
|
*/
|
2016-07-07 23:23:18 +02:00
|
|
|
import React from "react";
|
|
|
|
import { IndexRoute, Route } from "react-router";
|
|
|
|
|
|
|
|
import RequireAuthentication from "./containers/RequireAuthentication";
|
|
|
|
import App from "./containers/App";
|
|
|
|
import SimpleLayout from "./components/layouts/Simple";
|
|
|
|
import SidebarLayout from "./components/layouts/Sidebar";
|
|
|
|
import BrowsePage from "./views/BrowsePage";
|
2016-08-03 15:44:29 +02:00
|
|
|
import DiscoverPage from "./views/DiscoverPage";
|
2016-07-07 23:23:18 +02:00
|
|
|
import HomePage from "./views/HomePage";
|
|
|
|
import LoginPage from "./views/LoginPage";
|
|
|
|
import LogoutPage from "./views/LogoutPage";
|
|
|
|
import ArtistsPage from "./views/ArtistsPage";
|
|
|
|
import AlbumsPage from "./views/AlbumsPage";
|
|
|
|
import SongsPage from "./views/SongsPage";
|
|
|
|
import ArtistPage from "./views/ArtistPage";
|
|
|
|
import AlbumPage from "./views/AlbumPage";
|
|
|
|
|
|
|
|
export default (
|
2016-08-10 21:36:11 +02:00
|
|
|
<Route path="/" component={App}> // Main container is App
|
|
|
|
<Route path="login" component={SimpleLayout}> // Login is a SimpleLayout
|
2016-07-07 23:23:18 +02:00
|
|
|
<IndexRoute component={LoginPage} />
|
|
|
|
</Route>
|
2016-08-10 21:36:11 +02:00
|
|
|
<Route component={SidebarLayout}> // All the rest is a SidebarLayout
|
2016-07-07 23:23:18 +02:00
|
|
|
<Route path="logout" component={LogoutPage} />
|
2016-08-10 21:36:11 +02:00
|
|
|
<Route component={RequireAuthentication}> // And some pages require authentication
|
2016-08-03 15:44:29 +02:00
|
|
|
<Route path="discover" component={DiscoverPage} />
|
2016-07-07 23:23:18 +02:00
|
|
|
<Route path="browse" component={BrowsePage} />
|
|
|
|
<Route path="artists" component={ArtistsPage} />
|
|
|
|
<Route path="artist/:id" component={ArtistPage} />
|
|
|
|
<Route path="albums" component={AlbumsPage} />
|
|
|
|
<Route path="album/:id" component={AlbumPage} />
|
|
|
|
<Route path="songs" component={SongsPage} />
|
|
|
|
<IndexRoute component={HomePage} />
|
|
|
|
</Route>
|
|
|
|
</Route>
|
|
|
|
</Route>
|
|
|
|
);
|