X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/35694e6fc2214c366f09ddd75c9910d91cd3ed20..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 2c56c85e..af76e4f1 100644 --- a/src/views-components/main-app-bar/help-menu.tsx +++ b/src/views-components/main-app-bar/help-menu.tsx @@ -2,20 +2,24 @@ // // 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 { ImportContactsIcon, HelpIcon } 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' | 'linkContent'; +type CssRules = 'link' | 'icon' | 'title' | 'linkTitle'; const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ link: { textDecoration: 'none', color: 'inherit', width: '100%', + display: 'flex' }, icon: { width: '16px', @@ -30,16 +34,9 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ linkTitle: { marginLeft: theme.spacing.unit }, - linkContent: { - display: 'flex' - } }); 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/", @@ -54,26 +51,33 @@ const links = [ }, ]; -export const HelpMenu = withStyles(styles)( - ({ classes }: WithStyles) => - } - id="help-menu" - title="Help"> -
  • - Help -
  • - { - links.map(link => - - - - - - ) - } -
    -); + {link.title} + + + ) + } + + );