Merge branch 'master' of git.curoverse.com:arvados-workbench2 into 14307-search-basic...
[arvados-workbench2.git] / src / views / main-panel / main-panel-root.tsx
1 // Copyright (C) The Arvados Authors. All rights reserved.
2 //
3 // SPDX-License-Identifier: AGPL-3.0
4
5 import * as React from 'react';
6 import { StyleRulesCallback, WithStyles, withStyles, Grid, LinearProgress } from '@material-ui/core';
7 import { User } from "~/models/user";
8 import { ArvadosTheme } from '~/common/custom-theme';
9 import { WorkbenchPanel } from '~/views/workbench/workbench';
10 import { LoginPanel } from '~/views/login-panel/login-panel';
11 import { WorkbenchLoadingScreen } from '~/views/workbench/workbench-loading-screen';
12 import { MainAppBar } from '~/views-components/main-app-bar/main-app-bar';
13
14 type CssRules = 'root';
15
16 const styles: StyleRulesCallback<CssRules> = (theme: ArvadosTheme) => ({
17     root: {
18         overflow: 'hidden',
19         width: '100vw',
20         height: '100vh'
21     }
22 });
23
24 export interface MainPanelRootDataProps {
25     user?: User;
26     working: boolean;
27     loading: boolean;
28     buildInfo: string;
29 }
30
31 type MainPanelRootProps = MainPanelRootDataProps & WithStyles<CssRules>;
32
33 export const MainPanelRoot = withStyles(styles)(
34     ({ classes, loading, working, user, buildInfo }: MainPanelRootProps) =>
35         loading 
36             ? <WorkbenchLoadingScreen />
37             : <>
38                 <MainAppBar
39                     user={user}
40                     buildInfo={buildInfo}>
41                     {working ? <LinearProgress color="secondary" /> : null}
42                 </MainAppBar>
43                 <Grid container direction="column" className={classes.root}>
44                     {user ? <WorkbenchPanel /> : <LoginPanel />}
45                 </Grid>
46             </>
47 );