blob: 4906aba8f78a9a7ac3872e96ee7c1ea5f0604b8e [file] [log] [blame]
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied. See the License for the
specific language governing permissions and limitations
under the License.
-->
<script lang="ts">
import Breadcrumbs from './Breadcrumbs.svelte';
import Icon, { type iconType } from './Icon.svelte';
import PeriodicInvalidator from './PeriodicInvalidator.svelte';
import { type Theme } from './ThemeController.svelte';
import type { User } from '$lib/domain/User';
import DropdownMenu from './DropdownMenu/DropdownMenu.svelte';
import { theme } from './ThemeController.svelte';
import { typedRoute } from '$lib/types/appRoutes';
import { resolve } from '$app/paths';
import Button from './Button.svelte';
import StopPropagation from './StopPropagation.svelte';
interface Props {
user: User | null;
}
let { user }: Props = $props();
let themeIcon = $derived(
({ dark: 'moon', light: 'sun', system: 'deviceDesktop' } as Record<Theme, iconType>)[$theme]
);
</script>
<header
class="h-[55px] min-h-[55px] z-20 max-h-[55px] fixed top-0 left-[90px] right-0 border-b px-4 flex items-center justify-between bg-shade-l200 dark:bg-shade-d900"
>
<div class="flex gap-4">
<PeriodicInvalidator />
<Breadcrumbs />
</div>
<StopPropagation>
<DropdownMenu placement="bottom-end" class="p-0!">
{#snippet trigger()}
<Button variant="rounded">
<Icon
name="userCircle"
class="w-[32px] h-[32px] stroke-black dark:stroke-white"
strokeWidth={1}
/>
</Button>
{/snippet}
{#snippet children({ close: _close })}
<div class="p-1 min-w-[150px] transition-all duration-200 flex flex-col text-sm text-color">
<span class="flex items-center justify-between gap-2 border-b px-2 py-3">
<span>{user?.username ?? 'User'}</span>
<Icon
name="user"
class="w-[24px] h-[24px] stroke-black dark:stroke-white"
strokeWidth={1}
/>
</span>
<div class=" border-b flex items-center gap-5 px-2 py-3">
<label for="theme">
<span>Theme</span>
</label>
<label
for="theme"
class=" relative hover:cursor-pointer border hover:border-shade-d100 focus-within:ring-2 focus-within:ring-blue-600/40 rounded-md flex items-center gap-1"
>
<Icon
name={themeIcon}
class="w-[12px] absolute left-3 pointer-events-none top-1/2 -translate-x-1/2 -translate-y-1/2"
/>
<select
name="theme"
id="theme"
bind:value={$theme}
class="dark:bg-black text-color text-xs rounded-md outline-hidden hover:cursor-pointer pl-6 w-[90px] py-1 px-3"
>
<option value="dark">Dark</option>
<option value="light">Light</option>
<option value="system">System</option>
</select>
<Icon
name="selector"
class="w-[14px] pointer-events-none absolute right-1 top-1/2 -translate-y-1/2"
/>
</label>
</div>
<a
href={resolve(typedRoute('/auth/logout'))}
class="flex w-full items-center justify-between gap-2 px-2 py-2 hover:bg-shade-l300 dark:hover:bg-shade-d1000 rounded-md my-1 dark:hover:text-white"
>
<span>Log Out</span>
<Icon name="logout" />
</a>
</div>
{/snippet}
</DropdownMenu>
</StopPropagation>
</header>