Files
nebula.js/commands/serve/web/components/App.jsx
2020-04-06 14:04:15 +02:00

323 lines
11 KiB
JavaScript

import React, { useEffect, useLayoutEffect, useState, useRef, useMemo } from 'react';
import nucleus from '@nebula.js/nucleus/src/index';
import { createTheme, ThemeProvider } from '@nebula.js/ui/theme';
import { WbSunny, Brightness3, ColorLens, Language, Home } from '@nebula.js/ui/icons';
import {
Grid,
Toolbar,
Button,
IconButton,
Typography,
Tab,
Tabs,
Menu,
MenuItem,
CircularProgress,
} from '@material-ui/core';
import Properties from './Properties';
import Stage from './Stage';
import Collection from './Collection';
import AppContext from '../contexts/AppContext';
import NebulaContext from '../contexts/NebulaContext';
import VizContext from '../contexts/VizContext';
import storageFn from '../storage';
const SPACING = 2;
const languages = [
'en-US',
'it-IT',
'zh-CN',
'zh-TW',
'ko-KR',
'de-DE',
'sv-SE',
'es-ES',
'pt-BR',
'ja-JP',
'fr-FR',
'nl-NL',
'tr-TR',
'pl-PL',
'ru-RU',
];
export default function App({ app, info }) {
const storage = useMemo(() => storageFn(app), [app]);
const [activeViz, setActiveViz] = useState(null);
const [expandedObject, setExpandedObject] = useState(null);
const [sn, setSupernova] = useState(null);
// const [isReadCacheEnabled, setReadCacheEnabled] = useState(storage.get('readFromCache') !== false);
const [currentThemeName, setCurrentThemeName] = useState(storage.get('themeName'));
const [currentLanguage, setCurrentLanguage] = useState(storage.get('language') || 'en-US');
const [currentMuiThemeName, setCurrentMuiThemeName] = useState('light');
const [objectListMode, setObjectListMode] = useState(storage.get('objectListMode') === true);
const currentSelectionsRef = useRef(null);
const uid = useRef();
const [currentId, setCurrentId] = useState();
const [themeChooserAnchorEl, setThemeChooserAnchorEl] = React.useState(null);
const [languageChooserAnchorEl, setLanguageChooserAnchorEl] = React.useState(null);
const customThemes = info.themes && info.themes.length ? ['light', 'dark', ...info.themes] : [];
const theme = useMemo(() => createTheme(currentMuiThemeName), [currentMuiThemeName]);
const vizContext = useMemo(
() => ({
currentThemeName,
activeViz,
setActiveViz,
expandedObject,
setExpandedObject,
}),
[activeViz, expandedObject, currentThemeName]
);
const nebbie = useMemo(() => {
const n = nucleus(app, {
context: {
theme: currentThemeName,
language: currentLanguage,
},
load: (type) => Promise.resolve(window[type.name]),
themes: info.themes
? info.themes.map((t) => ({
key: t,
load: () =>
fetch(`/theme/${t}`)
.then((response) => response.json())
.then((raw) => {
setCurrentMuiThemeName(raw.type === 'dark' ? 'dark' : 'light');
return raw;
}),
}))
: null,
});
n.types.register(info.supernova);
return n;
}, [app]);
useLayoutEffect(() => {
nebbie.context({ theme: currentThemeName });
if (currentThemeName === 'light' || currentThemeName === 'dark') {
setCurrentMuiThemeName(currentThemeName);
}
}, [nebbie, currentThemeName]);
useEffect(() => {
const create = () => {
if (window[info.supernova.name]) {
uid.current = String(Date.now());
setCurrentId(uid.current);
}
};
nebbie.selections().then((s) => s.mount(currentSelectionsRef.current));
window.onHotChange(info.supernova.name, () => {
nebbie.types.clearFromCache(info.supernova.name);
nebbie.types.register(info.supernova);
if (uid.current) {
app.destroySessionObject(uid.current).then(create);
} else {
create();
}
nebbie.types
.get({
name: info.supernova.name,
})
.supernova()
.then(setSupernova);
});
create();
const unload = () => {
app.destroySessionObject(uid.current);
};
window.addEventListener('beforeunload', unload);
return () => {
window.removeEventListener('beforeunload', unload);
};
}, []);
const handleThemeChange = (t) => {
setThemeChooserAnchorEl(null);
storage.save('themeName', t);
setCurrentThemeName(t);
};
const handleLanguageChange = (lang) => {
setLanguageChooserAnchorEl(null);
storage.save('language', lang);
setCurrentLanguage(lang);
nebbie.context({ language: lang });
};
const toggleDarkMode = () => {
const v = currentThemeName === 'dark' ? 'light' : 'dark';
storage.save('themeName', v);
setCurrentThemeName(v);
};
const handleCreateEditChange = (e, newValue) => {
const listMode = newValue === 1;
storage.save('objectListMode', listMode);
if (listMode) {
setActiveViz(null);
setExpandedObject(null);
}
setObjectListMode(listMode);
};
return (
<AppContext.Provider value={app}>
<ThemeProvider theme={theme}>
<NebulaContext.Provider value={nebbie}>
<Grid
container
wrap="nowrap"
direction="column"
style={{ background: theme.palette.background.darkest, height: 'calc(100% + 16px)' }}
spacing={SPACING}
>
<Grid item>
<Toolbar
variant="dense"
style={{ background: theme.palette.background.paper, boxShadow: theme.shadows[1] }}
>
<Grid container spacing={2}>
<Grid item container alignItems="center" style={{ width: 'auto' }}>
<Grid item>
<a href="https://github.com/qlik-oss/nebula.js" target="_blank" rel="noopener noreferrer">
<img
src="assets/logo.svg"
alt="nebula.js logo"
href="https://github.com/qlik-oss/nebula.js"
style={{ height: '24px', position: 'relative', top: '2px' }}
/>
</a>
</Grid>
</Grid>
<Grid item container alignItems="center" style={{ width: 'auto' }}>
<IconButton
title="Home"
href={`${window.location.origin}?engine_url=${info.engineUrl || ''}${
info.webIntegrationId ? `&web-integration-id=${info.webIntegrationId}` : ''
}`}
>
<Home style={{ verticalAlign: 'middle' }} />
</IconButton>
</Grid>
<Grid item xs zeroMinWidth>
<Tabs value={objectListMode ? 1 : 0} onChange={handleCreateEditChange} aria-label="Navigation">
<Tab label={<Typography>Create</Typography>} value={0} />
<Tab label={<Typography>Edit</Typography>} value={1} />
</Tabs>
</Grid>
<Grid item container alignItems="center" style={{ width: 'auto' }}>
<Grid item>
{customThemes.length ? (
<>
<IconButton title="Select theme" onClick={(e) => setThemeChooserAnchorEl(e.currentTarget)}>
<ColorLens fontSize="small" />
</IconButton>
<Menu
anchorEl={themeChooserAnchorEl}
open={!!themeChooserAnchorEl}
keepMounted
onClose={() => setThemeChooserAnchorEl(null)}
>
{customThemes.map((t) => (
<MenuItem key={t} selected={t === currentThemeName} onClick={() => handleThemeChange(t)}>
{t}
</MenuItem>
))}
</Menu>
</>
) : (
<IconButton title="Toggle light/dark mode" onClick={toggleDarkMode}>
{currentThemeName === 'dark' ? (
<WbSunny fontSize="small" />
) : (
<Brightness3 fontSize="small" />
)}
</IconButton>
)}
</Grid>
<Grid item>
<Button
startIcon={<Language />}
title="Select language"
onClick={(e) => setLanguageChooserAnchorEl(e.currentTarget)}
>
{currentLanguage}
</Button>
<Menu
anchorEl={languageChooserAnchorEl}
open={!!languageChooserAnchorEl}
keepMounted
onClose={() => setLanguageChooserAnchorEl(null)}
>
{languages.map((t) => (
<MenuItem key={t} selected={t === currentLanguage} onClick={() => handleLanguageChange(t)}>
{t}
</MenuItem>
))}
</Menu>
</Grid>
</Grid>
</Grid>
</Toolbar>
</Grid>
<Grid item style={{ padding: theme.spacing(0, SPACING) }}>
<div ref={currentSelectionsRef} style={{ flex: '0 0 auto', boxShadow: theme.shadows[1] }} />
</Grid>
<Grid item xs style={{ overflowX: 'hidden', overflowY: 'auto', padding: theme.spacing(0, SPACING) }}>
<VizContext.Provider value={vizContext}>
{sn ? (
<Grid container wrap="nowrap" style={{ height: '100%' }} spacing={SPACING}>
<Grid item xs zeroMinWidth>
{objectListMode ? (
<Collection cache={currentId} types={[info.supernova.name]} />
) : (
<Stage info={info} storage={storage} uid={currentId} />
)}
</Grid>
{activeViz && (
<Grid
item
style={{
background: theme.palette.background.paper,
overflow: 'hidden auto',
margin: theme.spacing(SPACING / 2),
marginTop: `${48 + theme.spacing(SPACING / 2)}px`,
boxShadow: theme.shadows[1],
padding: 0,
}}
>
<Properties sn={sn} viz={activeViz} isTemp={!objectListMode} storage={storage} />
</Grid>
)}
</Grid>
) : (
<Grid container wrap="nowrap" style={{ paddingTop: '48px' }} justify="center">
<Grid item>
<CircularProgress />
</Grid>
</Grid>
)}
</VizContext.Provider>
</Grid>
</Grid>
</NebulaContext.Provider>
</ThemeProvider>
</AppContext.Provider>
);
}