mirror of
https://github.com/stashapp/stash.git
synced 2025-12-12 11:22:37 +01:00
98 lines
2 KiB
TypeScript
98 lines
2 KiB
TypeScript
import React from "react";
|
|
import { Nav, Navbar, Button } from "react-bootstrap";
|
|
import { IconName } from "@fortawesome/fontawesome-svg-core";
|
|
import { LinkContainer } from "react-router-bootstrap";
|
|
import { Link, useLocation } from "react-router-dom";
|
|
|
|
import { Icon } from "src/components/Shared";
|
|
|
|
interface IMenuItem {
|
|
text: string;
|
|
href: string;
|
|
icon: IconName;
|
|
}
|
|
|
|
const menuItems: IMenuItem[] = [
|
|
{
|
|
icon: "play-circle",
|
|
text: "Scenes",
|
|
href: "/scenes"
|
|
},
|
|
{
|
|
href: "/scenes/markers",
|
|
icon: "map-marker-alt",
|
|
text: "Markers"
|
|
},
|
|
{
|
|
href: "/galleries",
|
|
icon: "image",
|
|
text: "Galleries"
|
|
},
|
|
{
|
|
href: "/performers",
|
|
icon: "user",
|
|
text: "Performers"
|
|
},
|
|
{
|
|
href: "/studios",
|
|
icon: "video",
|
|
text: "Studios"
|
|
},
|
|
{
|
|
href: "/tags",
|
|
icon: "tag",
|
|
text: "Tags"
|
|
}
|
|
];
|
|
|
|
export const MainNavbar: React.FC = () => {
|
|
const location = useLocation();
|
|
|
|
const path =
|
|
location.pathname === "/performers"
|
|
? "/performers/new"
|
|
: location.pathname === "/studios"
|
|
? "/studios/new"
|
|
: null;
|
|
const newButton =
|
|
path === null ? (
|
|
""
|
|
) : (
|
|
<LinkContainer to={path}>
|
|
<Button variant="primary">New</Button>
|
|
</LinkContainer>
|
|
);
|
|
|
|
return (
|
|
<Navbar fixed="top" variant="dark" bg="dark">
|
|
<Navbar.Brand href="#home">
|
|
<Link to="/">
|
|
<Button variant="secondary">Stash</Button>
|
|
</Link>
|
|
</Navbar.Brand>
|
|
<Nav className="mr-auto">
|
|
{menuItems.map(i => (
|
|
<LinkContainer
|
|
activeClassName="active"
|
|
exact
|
|
to={i.href}
|
|
key={i.href}
|
|
>
|
|
<Button variant="secondary">
|
|
<Icon icon={i.icon} />
|
|
{i.text}
|
|
</Button>
|
|
</LinkContainer>
|
|
))}
|
|
</Nav>
|
|
<Nav>
|
|
{newButton}
|
|
<LinkContainer exact to="/settings">
|
|
<Button variant="secondary">
|
|
<Icon icon="cog" />
|
|
</Button>
|
|
</LinkContainer>
|
|
</Nav>
|
|
</Navbar>
|
|
);
|
|
};
|