2022-06-22 11:20:57 +02:00
|
|
|
<script>
|
|
|
|
import { Icon, Button, InputGroup, Input, Collapse,
|
|
|
|
Navbar, NavbarBrand, Nav, NavItem, NavLink, NavbarToggler,
|
2023-01-12 11:26:01 +01:00
|
|
|
Dropdown, DropdownToggle, DropdownMenu, DropdownItem, InputGroupText } from 'sveltestrap'
|
2022-06-22 11:20:57 +02:00
|
|
|
|
|
|
|
export let username // empty string if auth. is disabled, otherwise the username as string
|
|
|
|
export let isAdmin // boolean
|
|
|
|
export let clusters // array of names
|
|
|
|
|
|
|
|
let isOpen = false
|
|
|
|
|
|
|
|
const views = [
|
|
|
|
isAdmin
|
|
|
|
? { title: 'Jobs', adminOnly: false, href: '/monitoring/jobs/', icon: 'card-list' }
|
|
|
|
: { title: 'My Jobs', adminOnly: false, href: `/monitoring/user/${username}`, icon: 'bar-chart-line-fill' },
|
|
|
|
{ title: 'Users', adminOnly: true, href: '/monitoring/users/', icon: 'people-fill' },
|
|
|
|
{ title: 'Projects', adminOnly: true, href: '/monitoring/projects/', icon: 'folder' },
|
|
|
|
{ title: 'Tags', adminOnly: false, href: '/monitoring/tags/', icon: 'tags' }
|
|
|
|
]
|
|
|
|
const viewsPerCluster = [
|
|
|
|
{ title: 'Analysis', adminOnly: true, href: '/monitoring/analysis/', icon: 'graph-up' },
|
|
|
|
{ title: 'Systems', adminOnly: true, href: '/monitoring/systems/', icon: 'cpu' },
|
|
|
|
{ title: 'Status', adminOnly: true, href: '/monitoring/status/', icon: 'cpu' },
|
|
|
|
]
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<Navbar color="light" light expand="lg" fixed="top">
|
|
|
|
<NavbarBrand href="/">
|
|
|
|
<img alt="ClusterCockpit Logo" src="/img/logo.png" height="25rem">
|
|
|
|
</NavbarBrand>
|
|
|
|
<NavbarToggler on:click={() => (isOpen = !isOpen)} />
|
|
|
|
<Collapse {isOpen} navbar expand="lg" on:update={({ detail }) => (isOpen = detail.isOpen)}>
|
|
|
|
<Nav pills>
|
|
|
|
{#each views.filter(item => isAdmin || !item.adminOnly) as item}
|
|
|
|
<NavLink href={item.href} active={window.location.pathname == item.href}><Icon name={item.icon}/> {item.title}</NavLink>
|
|
|
|
{/each}
|
|
|
|
{#each viewsPerCluster.filter(item => !item.adminOnly || isAdmin) as item}
|
|
|
|
<NavItem>
|
|
|
|
<Dropdown nav inNavbar>
|
|
|
|
<DropdownToggle nav caret>
|
|
|
|
<Icon name={item.icon}/> {item.title}
|
|
|
|
</DropdownToggle>
|
|
|
|
<DropdownMenu>
|
|
|
|
{#each clusters as cluster}
|
2022-09-12 13:35:42 +02:00
|
|
|
<DropdownItem href={item.href + cluster.name} active={window.location.pathname == item.href + cluster.name}>
|
|
|
|
{cluster.name}
|
2022-06-22 11:20:57 +02:00
|
|
|
</DropdownItem>
|
|
|
|
{/each}
|
|
|
|
</DropdownMenu>
|
|
|
|
</Dropdown>
|
|
|
|
</NavItem>
|
|
|
|
{/each}
|
|
|
|
</Nav>
|
|
|
|
</Collapse>
|
|
|
|
<div class="d-flex">
|
|
|
|
<form method="GET" action="/search">
|
|
|
|
<InputGroup>
|
2023-01-12 11:26:01 +01:00
|
|
|
<Input type="text" placeholder="Search 'type:<query>' ..." name="searchId"/>
|
2022-06-22 11:20:57 +02:00
|
|
|
<Button outline type="submit"><Icon name="search"/></Button>
|
2023-01-12 11:26:01 +01:00
|
|
|
<InputGroupText style="cursor:help;" title={isAdmin ? "Example: 'projectId:a100cd', Types are: jobId | jobName | projectId | username" : "Example: 'jobName:myjob', Types are jobId | jobName"}><Icon name="info-circle"/></InputGroupText>
|
2022-06-22 11:20:57 +02:00
|
|
|
</InputGroup>
|
|
|
|
</form>
|
|
|
|
{#if username}
|
|
|
|
<form method="POST" action="/logout">
|
|
|
|
<Button outline color="success" type="submit" style="margin-left: 10px;">
|
|
|
|
<Icon name="box-arrow-right"/> Logout {username}
|
|
|
|
</Button>
|
|
|
|
</form>
|
|
|
|
{/if}
|
|
|
|
<Button outline on:click={() => window.location.href = '/config'} style="margin-left: 10px;">
|
|
|
|
<Icon name="gear"/>
|
|
|
|
</Button>
|
|
|
|
</div>
|
|
|
|
</Navbar>
|