* initial restructuring * stuff * lock version number * just keep using current mapinfobox * fix map upperRightUI layout * make mapsWidth work and add mobile * remove filterBoxOpen for now * redo the mobile menu in react * get account menu and invite lightbox working * fixed maps scrolling * make other routes work * fix signed out home page * fix accountbox toggling * add metacode edit routes * lots of fixes * fix map chat layout and tab bug * improve topic card readability and fix dragging bug * fixup mapchat stuff * fix up navigation to use react-router * jquery no longer handling access requests * handle case where user hasn't loaded yet * this shouldn't have been removed * add frame for topic view * rewrite map instructions * fix toast (and sign out bug) * fix apps pages and missing routes * made our request invite page look nice * filter box in react * forgot to add one proptype * remove extra comments * handle page title and mobile title updates * reenable google analytics * make filterbox use onclickoutside * reenable topic view in react * fix csrf auth token * fix little homepage styling issue * try putting preparevizdata in a timeout * installing render log to count * little fixes * fixup filters * make filter map function names more readable * eslint helps * renaming for clarity * use onclickoutside for account/sign in box * add some logging to see whether this is source of many renders * turns out chatview was heavily hogging memory * tiimeout not needed
70 lines
2.6 KiB
JavaScript
70 lines
2.6 KiB
JavaScript
import React from 'react'
|
|
import { Route, IndexRoute } from 'react-router'
|
|
import App from './App'
|
|
import Maps from './Maps'
|
|
import MapView from './MapView'
|
|
import TopicView from './TopicView'
|
|
|
|
function nullComponent(props) {
|
|
return null
|
|
}
|
|
|
|
export default function makeRoutes (currentUser) {
|
|
const homeComponent = currentUser && currentUser.id ? Maps : nullComponent
|
|
return <Route path="/" component={App} >
|
|
<IndexRoute component={homeComponent} />
|
|
<Route path="explore">
|
|
<Route path="active" component={Maps} />
|
|
<Route path="featured" component={Maps} />
|
|
<Route path="mine" component={Maps} />
|
|
<Route path="shared" component={Maps} />
|
|
<Route path="starred" component={Maps} />
|
|
<Route path="mapper/:id" component={Maps} />
|
|
</Route>
|
|
<Route path="maps/:id">
|
|
<IndexRoute component={MapView} />
|
|
<Route path="conversation" component={MapView} />
|
|
<Route path="request_access" component={nullComponent} />
|
|
</Route>
|
|
<Route path="topics/:id" component={TopicView} />
|
|
<Route path="login" component={nullComponent} />
|
|
<Route path="join" component={nullComponent} />
|
|
<Route path="request" component={nullComponent} />
|
|
<Route path="notifications">
|
|
<IndexRoute component={nullComponent} />
|
|
<Route path=":id" component={nullComponent} />
|
|
</Route>
|
|
<Route path="users">
|
|
<Route path=":id/edit" component={nullComponent} />
|
|
<Route path="password/new" component={nullComponent} />
|
|
<Route path="password/edit" component={nullComponent} />
|
|
</Route>
|
|
<Route path="metacodes">
|
|
<IndexRoute component={nullComponent} />
|
|
<Route path="new" component={nullComponent} />
|
|
<Route path=":id/edit" component={nullComponent} />
|
|
</Route>
|
|
<Route path="metacode_sets">
|
|
<IndexRoute component={nullComponent} />
|
|
<Route path="new" component={nullComponent} />
|
|
<Route path=":id/edit" component={nullComponent} />
|
|
</Route>
|
|
<Route path="oauth">
|
|
<Route path="token/info" component={nullComponent} />
|
|
<Route path="authorize">
|
|
<IndexRoute component={nullComponent} />
|
|
<Route path=":code" component={nullComponent} />
|
|
</Route>
|
|
<Route path="authorized_applications">
|
|
<IndexRoute component={nullComponent} />
|
|
<Route path=":id" component={nullComponent} />
|
|
</Route>
|
|
<Route path="applications">
|
|
<IndexRoute component={nullComponent} />
|
|
<Route path="new" component={nullComponent} />
|
|
<Route path=":id" component={nullComponent} />
|
|
<Route path=":id/edit" component={nullComponent} />
|
|
</Route>
|
|
</Route>
|
|
</Route>
|
|
}
|