Make /status the default home page

pull/10616/head
Jared Scheib 2017-06-14 14:01:38 -07:00
parent 741ce0c4b6
commit f4fc3b8777
2 changed files with 5 additions and 1 deletions

View File

@ -9,6 +9,8 @@ import {showDatabases} from 'shared/apis/metaQuery'
import {loadSources as loadSourcesAction} from 'shared/actions/sources'
import {errorThrown as errorThrownAction} from 'shared/actions/errors'
import {DEFAULT_HOME_PAGE} from 'shared/constants'
// Acts as a 'router middleware'. The main `App` component is responsible for
// getting the list of data nodes, but not every page requires them to function.
// Routes that do require data nodes can be nested under this component.
@ -88,7 +90,7 @@ const CheckSources = React.createClass({
if (!isFetching && !source) {
const rest = location.pathname.match(/\/sources\/\d+?\/(.+)/)
const restString = rest === null ? 'hosts' : rest[1]
const restString = rest === null ? DEFAULT_HOME_PAGE : rest[1]
if (defaultSource) {
return router.push(`/sources/${defaultSource.id}/${restString}`)

View File

@ -399,3 +399,5 @@ export const AUTOREFRESH_DEFAULT = 15000 // in milliseconds
export const GRAPH = 'graph'
export const TABLE = 'table'
export const VIS_VIEWS = [GRAPH, TABLE]
export const DEFAULT_HOME_PAGE = 'status'