move LIT Dashboard
This commit is contained in:
parent
0696801650
commit
8d1a09e1ca
3 changed files with 77 additions and 5 deletions
|
@ -13,6 +13,7 @@ import { Login } from './modules/login';
|
||||||
import { Users } from './modules/users/Users';
|
import { Users } from './modules/users/Users';
|
||||||
import { AppSingle } from './modules/apps/AppSingle';
|
import { AppSingle } from './modules/apps/AppSingle';
|
||||||
import { Apps } from './modules/apps/Apps';
|
import { Apps } from './modules/apps/Apps';
|
||||||
|
import { DashboardLIT } from './modules/dashboard/DashboardLIT';
|
||||||
|
|
||||||
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||||
function App() {
|
function App() {
|
||||||
|
@ -52,7 +53,7 @@ function App() {
|
||||||
) : (
|
) : (
|
||||||
<Layout>
|
<Layout>
|
||||||
<Routes>
|
<Routes>
|
||||||
<Route path="/dashboard" element={<Dashboard />} />
|
<Route path="/dashboard" element={<DashboardLIT />} />
|
||||||
{apps.map((app) => (
|
{apps.map((app) => (
|
||||||
<Route key={app.name} path={app.slug} element={<AppIframe app={app} />} />
|
<Route key={app.name} path={app.slug} element={<AppIframe app={app} />} />
|
||||||
))}
|
))}
|
||||||
|
|
|
@ -1,9 +1,28 @@
|
||||||
import React from 'react';
|
/* eslint-disable react-hooks/exhaustive-deps */
|
||||||
|
/**
|
||||||
|
* Page that shows only installed applications, and links to them.
|
||||||
|
*
|
||||||
|
* "Utilities" is a special section that links to the Stackspin documentation,
|
||||||
|
* and that shows the "Monitoring" application if it is installed.
|
||||||
|
*/
|
||||||
|
import React, { useEffect } from 'react';
|
||||||
import { useApps } from 'src/services/apps';
|
import { useApps } from 'src/services/apps';
|
||||||
import { DashboardCard } from './components';
|
import { AppStatusEnum } from 'src/services/apps/types';
|
||||||
|
import { DashboardCard, DashboardUtility } from './components';
|
||||||
|
import { DASHBOARD_QUICK_ACCESS, HIDDEN_APPS, UTILITY_APPS } from './consts';
|
||||||
|
|
||||||
export const Dashboard: React.FC = () => {
|
export const Dashboard: React.FC = () => {
|
||||||
const { apps, appTableLoading } = useApps();
|
const host = window.location.hostname;
|
||||||
|
const splitedDomain = host.split('.');
|
||||||
|
splitedDomain.shift();
|
||||||
|
const { apps, loadApps } = useApps();
|
||||||
|
|
||||||
|
// Tell React to load the apps
|
||||||
|
useEffect(() => {
|
||||||
|
loadApps();
|
||||||
|
|
||||||
|
return () => {};
|
||||||
|
}, []);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="relative">
|
<div className="relative">
|
||||||
|
@ -12,9 +31,32 @@ export const Dashboard: React.FC = () => {
|
||||||
<h1 className="text-3xl leading-6 font-bold text-gray-900">Dashboard</h1>
|
<h1 className="text-3xl leading-6 font-bold text-gray-900">Dashboard</h1>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div className="max-w-7xl mx-auto py-4 px-3 sm:px-6 lg:px-8 h-full flex-grow">
|
<div className="max-w-7xl mx-auto py-4 px-3 sm:px-6 lg:px-8 h-full flex-grow">
|
||||||
<div className="grid grid-cols-1 md:grid-cols-2 md:gap-4 lg:grid-cols-4 mb-10">
|
<div className="grid grid-cols-1 md:grid-cols-2 md:gap-4 lg:grid-cols-4 mb-10">
|
||||||
{!appTableLoading && apps.map((app) => <DashboardCard app={app} key={app.name} />)}
|
{apps
|
||||||
|
.filter((app) => HIDDEN_APPS.concat(UTILITY_APPS).indexOf(app.slug) === -1)
|
||||||
|
.filter((app) => app.status !== AppStatusEnum.NotInstalled)
|
||||||
|
.map((app) => (
|
||||||
|
<DashboardCard app={app} key={app.name} />
|
||||||
|
))}
|
||||||
|
</div>
|
||||||
|
<div className="max-w-4xl mx-auto py-4 sm:px-6 lg:px-8 h-full flex-grow">
|
||||||
|
<div className="pb-4 border-b border-gray-200 sm:flex sm:items-center">
|
||||||
|
<h3 className="text-lg leading-6 font-medium text-gray-900">Utilities</h3>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<dl className="mt-5 grid grid-cols-1 gap-2 sm:grid-cols-2">
|
||||||
|
{DASHBOARD_QUICK_ACCESS.map((item) => (
|
||||||
|
<DashboardUtility item={item} key={item.name} />
|
||||||
|
))}
|
||||||
|
{apps
|
||||||
|
.filter((app) => UTILITY_APPS.indexOf(app.slug) !== -1 && app.url !== null)
|
||||||
|
.filter((app) => app.status !== AppStatusEnum.NotInstalled)
|
||||||
|
.map((app) => (
|
||||||
|
<DashboardUtility item={app} key={app.name} />
|
||||||
|
))}
|
||||||
|
</dl>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
29
src/modules/dashboard/DashboardLIT.tsx
Normal file
29
src/modules/dashboard/DashboardLIT.tsx
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
import React, { useEffect } from 'react';
|
||||||
|
import { useApps } from 'src/services/apps';
|
||||||
|
import { DashboardCard } from './components';
|
||||||
|
|
||||||
|
export const DashboardLIT: React.FC = () => {
|
||||||
|
const { apps, loadApps, appTableLoading } = useApps();
|
||||||
|
|
||||||
|
// Tell React to load the apps
|
||||||
|
useEffect(() => {
|
||||||
|
loadApps();
|
||||||
|
|
||||||
|
return () => {};
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return (
|
||||||
|
<div className="relative">
|
||||||
|
<div className="max-w-7xl mx-auto py-4 px-3 sm:px-6 lg:px-8">
|
||||||
|
<div className="mt-6 pb-5 border-b border-gray-200 sm:flex sm:items-center sm:justify-between">
|
||||||
|
<h1 className="text-3xl leading-6 font-bold text-gray-900">Dashboard</h1>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div className="max-w-7xl mx-auto py-4 px-3 sm:px-6 lg:px-8 h-full flex-grow">
|
||||||
|
<div className="grid grid-cols-1 md:grid-cols-2 md:gap-4 lg:grid-cols-4 mb-10">
|
||||||
|
{!appTableLoading && apps.map((app) => <DashboardCard app={app} key={app.name} />)}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
};
|
Loading…
Reference in a new issue