-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
8 changed files
with
361 additions
and
115 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -65,7 +65,6 @@ export const UsabilityDomain = ({onSave}) => { | |
</div> | ||
)} | ||
</FieldArray> | ||
<div> | ||
<Next /> | ||
</Form> | ||
) | ||
|
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,66 @@ | ||
import * as React from "react"; | ||
import MenuButton from "@mui/joy/MenuButton"; | ||
import Menu from "@mui/joy/Menu"; | ||
import MenuItem from "@mui/joy/MenuItem"; | ||
import Apps from "@mui/icons-material/Apps"; | ||
import Dropdown from "@mui/joy/Dropdown"; | ||
// import AppRegistrationOutlinedIcon from "@mui/icons-material/AppRegistrationOutlined"; | ||
import ModeEditOutlineOutlinedIcon from '@mui/icons-material/ModeEditOutlineOutlined'; | ||
import SearchOutlinedIcon from '@mui/icons-material/SearchOutlined'; | ||
import { ListItemDecorator } from "@mui/joy"; | ||
import GroupOutlinedIcon from '@mui/icons-material/GroupOutlined'; | ||
import IconButton from "@mui/joy/IconButton"; | ||
import { Tooltip } from "@material-ui/core"; | ||
// import { Mode } from "@mui/icons-material"; | ||
import ArrowDropDown from '@mui/icons-material/ArrowDropDown'; | ||
|
||
export default function APP() { | ||
return ( | ||
<Dropdown> | ||
<MenuButton | ||
slots={{ root: IconButton }} | ||
slotProps={{ root: { color: "secondary" } }} | ||
title="Apps" | ||
endDecorator={<ArrowDropDown className="white-icon"/>}> | ||
<Tooltip title="App"> | ||
<Apps className="hover-background white-icon" title="App" fontSize="18px"/> | ||
</Tooltip> | ||
</MenuButton> | ||
<Menu> | ||
<MenuItem | ||
component="a" | ||
href="/builder" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<ListItemDecorator> | ||
<ModeEditOutlineOutlinedIcon /> | ||
</ListItemDecorator> | ||
Builder | ||
</MenuItem> | ||
<MenuItem | ||
component="a" | ||
href="/prefix" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<ListItemDecorator> | ||
<GroupOutlinedIcon /> | ||
</ListItemDecorator> | ||
Prefix Registry | ||
</MenuItem> | ||
<MenuItem | ||
component="a" | ||
href="/bcodbs" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<ListItemDecorator> | ||
<SearchOutlinedIcon /> | ||
</ListItemDecorator> | ||
BCODB | ||
</MenuItem> | ||
</Menu> | ||
</Dropdown> | ||
); | ||
} |
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,77 @@ | ||
import * as React from "react"; | ||
import IconButton from "@mui/joy/IconButton"; | ||
import Menu from "@mui/joy/Menu"; | ||
import MenuItem from "@mui/joy/MenuItem"; | ||
import MenuButton from "@mui/joy/MenuButton"; | ||
import Dropdown from "@mui/joy/Dropdown"; | ||
import DescriptionOutlinedIcon from "@mui/icons-material/DescriptionOutlined"; | ||
import { Tooltip } from "@material-ui/core"; | ||
import ArrowDropDown from '@mui/icons-material/ArrowDropDown'; | ||
import ApiOutlinedIcon from '@mui/icons-material/ApiOutlined'; | ||
import WebhookOutlinedIcon from '@mui/icons-material/WebhookOutlined'; | ||
import SettingsInputAntennaIcon from '@mui/icons-material/SettingsInputAntenna'; | ||
import { ListItemDecorator } from "@mui/joy"; | ||
import AutoStoriesOutlinedIcon from '@mui/icons-material/AutoStoriesOutlined'; | ||
|
||
export default function DocDropDown() { | ||
return ( | ||
<Dropdown> | ||
<MenuButton | ||
slots={{ root: IconButton }} | ||
slotProps={{ root: { color: "secondary" } }} | ||
title="Documentation" | ||
endDecorator={<ArrowDropDown className="white-icon"/>} | ||
> | ||
<Tooltip title="Documentation"> | ||
<DescriptionOutlinedIcon className="hover-background white-icon" title="Documentation" /> | ||
</Tooltip> | ||
</MenuButton> | ||
<Menu placement="bottom-end"> | ||
<MenuItem | ||
component="a" | ||
href="https://wiki.biocomputeobject.org/index.php?title=Quick_Start_Guide" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<ListItemDecorator> | ||
<AutoStoriesOutlinedIcon /> | ||
</ListItemDecorator> | ||
Quick Start Guide | ||
</MenuItem> | ||
<MenuItem | ||
component="a" | ||
href="https://biocomputeobject.org/api/docs/" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<ListItemDecorator> | ||
<ApiOutlinedIcon /> | ||
</ListItemDecorator> | ||
BioCompute API | ||
</MenuItem> | ||
<MenuItem | ||
component="a" | ||
href="https://wiki.biocomputeobject.org/index.php?title=Main_Page" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<ListItemDecorator> | ||
<WebhookOutlinedIcon /> | ||
</ListItemDecorator> | ||
Wiki | ||
</MenuItem> | ||
<MenuItem | ||
component="a" | ||
href="/resources" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<ListItemDecorator> | ||
<SettingsInputAntennaIcon /> | ||
</ListItemDecorator> | ||
BCO Resources | ||
</MenuItem> | ||
</Menu> | ||
</Dropdown> | ||
); | ||
} |
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,58 @@ | ||
import * as React from "react"; | ||
import MenuButton from "@mui/joy/MenuButton"; | ||
import Menu from "@mui/joy/Menu"; | ||
import MenuItem from "@mui/joy/MenuItem"; | ||
import Apps from "@mui/icons-material/Apps"; | ||
import Dropdown from "@mui/joy/Dropdown"; | ||
// import AppRegistrationOutlinedIcon from "@mui/icons-material/AppRegistrationOutlined"; | ||
import ModeEditOutlineOutlinedIcon from '@mui/icons-material/ModeEditOutlineOutlined'; | ||
import SearchOutlinedIcon from '@mui/icons-material/SearchOutlined'; | ||
import { ListItemDecorator } from "@mui/joy"; | ||
import GroupOutlinedIcon from '@mui/icons-material/GroupOutlined'; | ||
import IconButton from "@mui/joy/IconButton"; | ||
import { Tooltip } from "@material-ui/core"; | ||
// import { Mode } from "@mui/icons-material"; | ||
import ArrowDropDown from '@mui/icons-material/ArrowDropDown'; | ||
import HelpOutlineOutlinedIcon from '@mui/icons-material/HelpOutlineOutlined'; | ||
import BugReportOutlinedIcon from '@mui/icons-material/BugReportOutlined'; | ||
import ContactPageOutlinedIcon from '@mui/icons-material/ContactPageOutlined'; | ||
|
||
export default function APP() { | ||
return ( | ||
<Dropdown> | ||
<MenuButton | ||
slots={{ root: IconButton }} | ||
slotProps={{ root: { color: "secondary" } }} | ||
title="Apps" | ||
endDecorator={<ArrowDropDown className="white-icon"/>}> | ||
<Tooltip title="Help"> | ||
<HelpOutlineOutlinedIcon className="hover-background white-icon" title="Help" fontSize="18px"/> | ||
</Tooltip> | ||
</MenuButton> | ||
<Menu> | ||
<MenuItem | ||
component="a" | ||
href="https://github.com/biocompute-objects/portal_userdb/issues/new/choose" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<ListItemDecorator> | ||
<BugReportOutlinedIcon /> | ||
</ListItemDecorator> | ||
Report an issue | ||
</MenuItem> | ||
<MenuItem | ||
component="a" | ||
href="https://docs.biocomputeobject.org/contact" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
> | ||
<ListItemDecorator> | ||
<ContactPageOutlinedIcon /> | ||
</ListItemDecorator> | ||
Contact Us | ||
</MenuItem> | ||
</Menu> | ||
</Dropdown> | ||
); | ||
} |
Oops, something went wrong.