X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/ccd25ad858c7961eaa797f01bdfed94f6c6eed29..798064c6616d98f8b6b3dfe562458bffe662f4ad:/src/views-components/main-app-bar/help-menu.tsx diff --git a/src/views-components/main-app-bar/help-menu.tsx b/src/views-components/main-app-bar/help-menu.tsx index 00fa08cc..af76e4f1 100644 --- a/src/views-components/main-app-bar/help-menu.tsx +++ b/src/views-components/main-app-bar/help-menu.tsx @@ -2,39 +2,41 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from "react"; +import React from "react"; import { MenuItem, Typography } from "@material-ui/core"; -import { DropdownMenu } from "~/components/dropdown-menu/dropdown-menu"; -import { ImportContacts } from "~/components/icon/icon"; -import { ArvadosTheme } from '~/common/custom-theme'; +import { DropdownMenu } from "components/dropdown-menu/dropdown-menu"; +import { ImportContactsIcon, HelpIcon } from "components/icon/icon"; +import { ArvadosTheme } from 'common/custom-theme'; import { StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core/styles'; +import { RootState } from "store/store"; +import { compose } from "redux"; +import { connect } from "react-redux"; type CssRules = 'link' | 'icon' | 'title' | 'linkTitle'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ link: { textDecoration: 'none', - color: 'inherit' + color: 'inherit', + width: '100%', + display: 'flex' }, icon: { width: '16px', height: '16px' }, title: { - marginLeft: theme.spacing.unit * 2, paddingBottom: theme.spacing.unit * 0.5, + paddingLeft: theme.spacing.unit * 2, + paddingTop: theme.spacing.unit * 0.5, outline: 'none', }, linkTitle: { marginLeft: theme.spacing.unit - } + }, }); const links = [ - { - title: "Public Pipelines and Data sets", - link: "https://dev.arvados.org/projects/arvados/wiki/Public_Pipelines_and_Datasets", - }, { title: "Tutorials and User guide", link: "http://doc.arvados.org/user/", @@ -49,21 +51,33 @@ const links = [ }, ]; -export const HelpMenu = withStyles(styles)( - ({ classes }: WithStyles) => - } - id="help-menu" - title="Help"> - Help - { - links.map(link => - - - - {link.title} +interface HelpMenuProps { + currentRoute: string; +} + +const mapStateToProps = ({ router }: RootState) => ({ + currentRoute: router.location ? router.location.pathname : '', +}); + +export const HelpMenu = compose( + connect(mapStateToProps), + withStyles(styles))( + ({ classes, currentRoute }: HelpMenuProps & WithStyles) => + } + id="help-menu" + title="Help" + key={currentRoute}> + Help + { + links.map(link => + + + + {link.title} + - ) - } - -); + ) + } + + );