2019-11-04 00:17:50 -08:00
|
|
|
import React, { FC } from 'react';
|
2019-10-28 07:02:42 -07:00
|
|
|
import Navigation from './Navbar';
|
2019-10-27 14:03:39 -07:00
|
|
|
import { Container } from 'reactstrap';
|
2019-10-17 05:38:09 -07:00
|
|
|
|
2021-06-05 07:29:32 -07:00
|
|
|
import { Router, Redirect, navigate } from '@reach/router';
|
2021-04-15 09:14:07 -07:00
|
|
|
import useMedia from 'use-media';
|
2021-06-05 07:29:32 -07:00
|
|
|
import { Alerts, Config, Flags, Rules, ServiceDiscovery, Status, Targets, TSDBStatus, PanelList, Starting } from './pages';
|
2020-10-22 08:22:32 -07:00
|
|
|
import { PathPrefixContext } from './contexts/PathPrefixContext';
|
2021-04-15 09:14:07 -07:00
|
|
|
import { ThemeContext, themeName, themeSetting } from './contexts/ThemeContext';
|
|
|
|
import { Theme, themeLocalStorageKey } from './Theme';
|
|
|
|
import { useLocalStorage } from './hooks/useLocalStorage';
|
2021-06-05 07:29:32 -07:00
|
|
|
import { useFetchReady } from './hooks/useFetch';
|
|
|
|
import { usePathPrefix } from './contexts/PathPrefixContext';
|
2019-10-17 05:38:09 -07:00
|
|
|
|
2020-02-08 02:00:48 -08:00
|
|
|
interface AppProps {
|
|
|
|
consolesLink: string | null;
|
|
|
|
}
|
|
|
|
|
2020-10-22 08:22:32 -07:00
|
|
|
const App: FC<AppProps> = ({ consolesLink }) => {
|
|
|
|
// This dynamically/generically determines the pathPrefix by stripping the first known
|
|
|
|
// endpoint suffix from the window location path. It works out of the box for both direct
|
|
|
|
// hosting and reverse proxy deployments with no additional configurations required.
|
|
|
|
let basePath = window.location.pathname;
|
|
|
|
const paths = [
|
|
|
|
'/graph',
|
|
|
|
'/alerts',
|
|
|
|
'/status',
|
|
|
|
'/tsdb-status',
|
|
|
|
'/flags',
|
|
|
|
'/config',
|
|
|
|
'/rules',
|
|
|
|
'/targets',
|
|
|
|
'/service-discovery',
|
2021-06-05 07:29:32 -07:00
|
|
|
'/starting',
|
2020-10-22 08:22:32 -07:00
|
|
|
];
|
|
|
|
if (basePath.endsWith('/')) {
|
|
|
|
basePath = basePath.slice(0, -1);
|
|
|
|
}
|
|
|
|
if (basePath.length > 1) {
|
|
|
|
for (let i = 0; i < paths.length; i++) {
|
|
|
|
if (basePath.endsWith(paths[i])) {
|
|
|
|
basePath = basePath.slice(0, basePath.length - paths[i].length);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-06-05 07:29:32 -07:00
|
|
|
const pathPrefix = usePathPrefix();
|
|
|
|
const { ready, isLoading, isUnexpected } = useFetchReady(pathPrefix);
|
|
|
|
if (basePath !== '/starting') {
|
|
|
|
if (!ready && !isLoading && !isUnexpected) {
|
|
|
|
navigate('/starting');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-15 09:14:07 -07:00
|
|
|
const [userTheme, setUserTheme] = useLocalStorage<themeSetting>(themeLocalStorageKey, 'auto');
|
|
|
|
const browserHasThemes = useMedia('(prefers-color-scheme)');
|
|
|
|
const browserWantsDarkTheme = useMedia('(prefers-color-scheme: dark)');
|
|
|
|
|
|
|
|
let theme: themeName;
|
|
|
|
if (userTheme !== 'auto') {
|
|
|
|
theme = userTheme;
|
|
|
|
} else {
|
|
|
|
theme = browserHasThemes ? (browserWantsDarkTheme ? 'dark' : 'light') : 'light';
|
|
|
|
}
|
|
|
|
|
2019-11-04 00:17:50 -08:00
|
|
|
return (
|
2021-04-15 09:14:07 -07:00
|
|
|
<ThemeContext.Provider
|
|
|
|
value={{ theme: theme, userPreference: userTheme, setTheme: (t: themeSetting) => setUserTheme(t) }}
|
|
|
|
>
|
|
|
|
<Theme />
|
|
|
|
<PathPrefixContext.Provider value={basePath}>
|
|
|
|
<Navigation consolesLink={consolesLink} />
|
|
|
|
<Container fluid style={{ paddingTop: 70 }}>
|
|
|
|
<Router basepath={`${basePath}`}>
|
|
|
|
<Redirect from="/" to={`graph`} noThrow />
|
|
|
|
{/*
|
2020-10-22 08:22:32 -07:00
|
|
|
NOTE: Any route added here needs to also be added to the list of
|
|
|
|
React-handled router paths ("reactRouterPaths") in /web/web.go.
|
|
|
|
*/}
|
2021-04-15 09:14:07 -07:00
|
|
|
<PanelList path="/graph" />
|
|
|
|
<Alerts path="/alerts" />
|
|
|
|
<Config path="/config" />
|
|
|
|
<Flags path="/flags" />
|
|
|
|
<Rules path="/rules" />
|
|
|
|
<ServiceDiscovery path="/service-discovery" />
|
|
|
|
<Status path="/status" />
|
|
|
|
<TSDBStatus path="/tsdb-status" />
|
|
|
|
<Targets path="/targets" />
|
2021-06-05 07:29:32 -07:00
|
|
|
<Starting path="/starting" />
|
2021-04-15 09:14:07 -07:00
|
|
|
</Router>
|
|
|
|
</Container>
|
|
|
|
</PathPrefixContext.Provider>
|
|
|
|
</ThemeContext.Provider>
|
2019-11-04 00:17:50 -08:00
|
|
|
);
|
|
|
|
};
|
2019-10-17 05:38:09 -07:00
|
|
|
|
|
|
|
export default App;
|