-
Notifications
You must be signed in to change notification settings - Fork 132
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
KOGITO-1299: added fallback UI when server unavailable
please enter the commit message for your changes. Lines starting
- Loading branch information
Showing
15 changed files
with
306 additions
and
73 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
106 changes: 106 additions & 0 deletions
106
packages/management-console/src/components/Molecules/NoServerComponent/NoServerComponent.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
import React, { useState } from 'react'; | ||
import { | ||
PageSection, | ||
Bullseye, | ||
EmptyState, | ||
EmptyStateIcon, | ||
EmptyStateVariant, | ||
Button, | ||
EmptyStateBody, | ||
Title, | ||
Page, | ||
SkipToContent, | ||
PageSidebar, | ||
PageHeader, | ||
Nav, | ||
NavList, | ||
NavItem, | ||
Brand, | ||
} from '@patternfly/react-core'; | ||
import { | ||
ExclamationCircleIcon | ||
} from '@patternfly/react-icons'; | ||
import { BrowserRouter as Router, Link } from 'react-router-dom'; | ||
import Avatar from '../../Atoms/AvatarComponent/AvatarComponent'; | ||
import PageToolbarComponent from '../../Organisms/PageToolbarComponent/PageToolbarComponent'; | ||
import managementConsoleLogo from '../../../static/managementConsoleLogo.svg'; | ||
|
||
const NoServerComponent = (props) => { | ||
const [isNavOpen, setIsNavOpen] = useState(true); | ||
const onNavToggle = () => { | ||
setIsNavOpen(!isNavOpen); | ||
}; | ||
|
||
const Header = ( | ||
<PageHeader | ||
logo={<Brand | ||
src={managementConsoleLogo} | ||
alt="Management Console Logo" | ||
/>} | ||
toolbar={<PageToolbarComponent />} | ||
avatar={<Avatar />} | ||
showNavToggle | ||
isNavOpen={isNavOpen} | ||
onNavToggle={onNavToggle} | ||
/> | ||
); | ||
|
||
const PageNav = ( | ||
<Nav aria-label="Nav" theme="dark"> | ||
<NavList> | ||
<NavItem> | ||
<Link to="/ProcessInstances">Process Instances</Link> | ||
</NavItem> | ||
<NavItem> | ||
<Link to="/DomainExplorer">Domain Explorer</Link> | ||
</NavItem> | ||
</NavList> | ||
</Nav> | ||
); | ||
const Sidebar = ( | ||
<PageSidebar nav={PageNav} isNavOpen={isNavOpen} theme="dark" /> | ||
); | ||
|
||
const pageId = 'main-content-page-layout-default-nav'; | ||
const PageSkipToContent = ( | ||
<SkipToContent href={`#${pageId}`}>Skip to Content</SkipToContent> | ||
); | ||
|
||
return ( | ||
<> | ||
<Router> | ||
<Page | ||
header={Header} | ||
skipToContent={PageSkipToContent} | ||
mainContainerId={pageId} | ||
sidebar={Sidebar} | ||
isManagedSidebar | ||
className="kogito-management-console--dashboard-page" | ||
> | ||
<PageSection variant="light"> | ||
<Bullseye> | ||
<EmptyState variant={EmptyStateVariant.full}> | ||
<EmptyStateIcon | ||
icon={ExclamationCircleIcon} | ||
size="md" | ||
color="var(--pf-global--danger-color--100)" /> | ||
<Title headingLevel="h1" size="4xl">Error connecting server</Title> | ||
<EmptyStateBody> | ||
The management console could not access the server to display content. | ||
</EmptyStateBody> | ||
<EmptyStateBody> | ||
Try reloading the page, or contact your administrator for more information. | ||
</EmptyStateBody> | ||
<Button variant="primary" onClick={() => window.location.reload()}> | ||
Refresh | ||
</Button> | ||
</EmptyState> | ||
</Bullseye> | ||
</PageSection> | ||
</Page> | ||
</Router> | ||
</> | ||
); | ||
}; | ||
|
||
export default NoServerComponent; |
3 changes: 3 additions & 0 deletions
3
...nagement-console/src/components/Molecules/ServerErrorsComponent/ServerErrorsComponent.css
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
.kogito-management-console--Server-Errors__text-color { | ||
color: var(--pf-global--primary-color--100) | ||
} |
59 changes: 59 additions & 0 deletions
59
...nagement-console/src/components/Molecules/ServerErrorsComponent/ServerErrorsComponent.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
import React from 'react'; | ||
|
||
import { | ||
DataToolbar, | ||
DataToolbarContent, | ||
DataToolbarToggleGroup, | ||
DataToolbarGroup, | ||
PageSection, | ||
Breadcrumb, | ||
BreadcrumbItem, | ||
Card, | ||
Bullseye, | ||
EmptyState, | ||
EmptyStateIcon, | ||
EmptyStateVariant, | ||
Button, | ||
EmptyStateBody, | ||
Title, | ||
Popover, PopoverPosition, | ||
} from '@patternfly/react-core'; | ||
import { | ||
ExclamationCircleIcon | ||
} from '@patternfly/react-icons'; | ||
import './ServerErrorsComponent.css'; | ||
import {useHistory} from 'react-router-dom'; | ||
|
||
const ServerErrorsComponent = (props) => { | ||
const history = useHistory(); | ||
return ( | ||
<PageSection variant="light"> | ||
<Bullseye> | ||
<EmptyState variant={EmptyStateVariant.full}> | ||
<EmptyStateIcon | ||
icon={ExclamationCircleIcon} | ||
size="md" | ||
color="var(--pf-global--danger-color--100)" /> | ||
<Title headingLevel="h1" size="4xl">Error fetching data</Title> | ||
<EmptyStateBody> | ||
An error occured while accessing data. | ||
<Popover | ||
headerContent={<div>Error</div>} | ||
bodyContent={ | ||
<div>{props.message}</div> | ||
} | ||
> | ||
<strong className="kogito-management-console--Server-Errors__text-color"> See more details</strong> | ||
</Popover> | ||
</EmptyStateBody> | ||
<Button variant="primary" onClick={() => history.goBack()}> | ||
Go back | ||
</Button> | ||
</EmptyState> | ||
</Bullseye> | ||
|
||
</PageSection> | ||
) | ||
} | ||
|
||
export default ServerErrorsComponent; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.