-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[RHOAIENG-5496] Landing page: New home page hint
- Loading branch information
1 parent
75efea8
commit 911866c
Showing
9 changed files
with
179 additions
and
15 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,96 @@ | ||
import * as React from 'react'; | ||
import { | ||
Button, | ||
Card, | ||
CardBody, | ||
CardHeader, | ||
Flex, | ||
FlexItem, | ||
PageSection, | ||
Text, | ||
TextContent, | ||
} from '@patternfly/react-core'; | ||
import { TimesIcon } from '@patternfly/react-icons'; | ||
import { useNavigate } from 'react-router-dom'; | ||
import jupyterImg from '~/images/jupyter.svg'; | ||
import { useBrowserStorage } from '~/components/browserStorage'; | ||
import { ODH_PRODUCT_NAME } from '~/utilities/const'; | ||
import { useCheckJupyterEnabled } from '~/utilities/notebookControllerUtils'; | ||
|
||
const HomeHint: React.FC = () => { | ||
const navigate = useNavigate(); | ||
const [hintHidden, setHintHidden] = useBrowserStorage<boolean>( | ||
'odh.dashboard.landing.hint', | ||
false, | ||
); | ||
const jupyterEnabled = useCheckJupyterEnabled(); | ||
|
||
if (hintHidden || !jupyterEnabled) { | ||
return null; | ||
} | ||
|
||
return ( | ||
<PageSection> | ||
<Card data-testid="home-page-hint" style={{ borderRadius: 16 }}> | ||
<CardHeader> | ||
<Flex | ||
alignItems={{ default: 'alignItemsCenter' }} | ||
justifyContent={{ default: 'justifyContentSpaceBetween' }} | ||
> | ||
<FlexItem> | ||
<TextContent> | ||
<Text component="h2">Looking for the previous landing page?</Text> | ||
</TextContent> | ||
</FlexItem> | ||
<FlexItem> | ||
<Button | ||
data-testid="home-page-hint-close" | ||
aria-label="close landing page hint" | ||
isInline | ||
variant="plain" | ||
onClick={() => setHintHidden(true)} | ||
> | ||
<TimesIcon /> | ||
</Button> | ||
</FlexItem> | ||
</Flex> | ||
</CardHeader> | ||
<CardBody style={{ maxWidth: 880 }}> | ||
<Flex | ||
alignItems={{ default: 'alignItemsCenter' }} | ||
gap={{ default: 'gapMd' }} | ||
flexWrap={{ default: 'nowrap' }} | ||
> | ||
<img | ||
data-testid="jupyter-hint-icon" | ||
src={jupyterImg} | ||
alt="Jupyter" | ||
style={{ height: 42, maxWidth: 'unset' }} | ||
/> | ||
<FlexItem> | ||
<TextContent> | ||
<Text component="p" data-testid="hint-body-text"> | ||
{ODH_PRODUCT_NAME} has a new landing page. You can access applications that are | ||
enabled for your organization, such as Jupyter, from the{' '} | ||
<Button | ||
data-testid="home-page-hint-navigate" | ||
variant="link" | ||
isInline | ||
component="a" | ||
style={{ fontSize: 'var(--pf-v5-global--FontSize--md)' }} | ||
onClick={() => navigate('/enabled')} | ||
> | ||
Enabled applications | ||
</Button>{' '} | ||
page. | ||
</Text> | ||
</TextContent> | ||
</FlexItem> | ||
</Flex> | ||
</CardBody> | ||
</Card> | ||
</PageSection> | ||
); | ||
}; | ||
|
||
export default HomeHint; |
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