website/src/lib/Nav/Nav.svelte

176 lines
3.8 KiB
Svelte
Raw Normal View History

<script lang="ts">
import ThemeToggle from "./ThemeToggle.svelte";
import { page } from "$app/stores";
import { slide } from "svelte/transition";
import { quintOut } from 'svelte/easing';
$: currentPage = $page.url.pathname;
2023-01-25 22:41:11 +05:30
$: innerWidth = 0;
2022-12-27 20:58:47 +05:30
2023-01-25 22:41:11 +05:30
$: isMobile = innerWidth < 1090;
2022-12-27 20:58:47 +05:30
2023-01-25 22:41:11 +05:30
$: hasJS = typeof Window !== "undefined";
2022-12-27 20:58:47 +05:30
2023-01-25 22:41:11 +05:30
$: showMenuButton = hasJS && isMobile;
2022-12-27 20:58:47 +05:30
2023-01-25 22:41:11 +05:30
$: menuOpen = !hasJS || hasJS && !isMobile;
2022-12-27 20:58:47 +05:30
2023-01-25 22:41:11 +05:30
$: menuOpenMobile = isMobile && menuOpen;
2023-01-25 22:41:11 +05:30
$: showThemeToggle = hasJS;
2022-12-27 20:58:47 +05:30
2023-01-25 22:41:11 +05:30
const toggleMenu = () => menuOpen = !menuOpen;
2022-12-27 20:58:47 +05:30
2023-01-25 22:41:11 +05:30
const handleNavigation = () => showMenuButton ? menuOpen = false : menuOpen = true;
2022-12-27 20:58:47 +05:30
const menus = [
2022-09-10 21:28:19 +05:30
{ name: "Instances", url: "/instances" },
2022-08-08 10:50:03 +05:30
{ name: "Donate", url: "/donate" },
// { name: "Pubnix", url: "/pubnix" },
2023-01-25 22:41:11 +05:30
{ name: "Contact", url: "/contact" },
{ name: "Team", url: "/team" },
{
name: "Wiki",
url: "https://wiki.projectsegfau.lt/",
external: true
},
{ name: "Blog", url: "/blog" },
2022-12-27 20:58:47 +05:30
{
name: "Status",
url: "https://status.projectsegfau.lt/",
external: true
2023-01-25 22:41:11 +05:30
},
{ name: "Legal", url: "/legal" }
2022-08-08 10:50:03 +05:30
];
2022-12-27 20:58:47 +05:30
</script>
2022-07-27 22:20:48 +05:30
2022-12-27 20:58:47 +05:30
<svelte:window bind:innerWidth />
2022-07-27 22:20:48 +05:30
2022-12-27 20:58:47 +05:30
<nav
2023-01-25 22:41:11 +05:30
class="bg-primary {menuOpenMobile ? "border-none" : "border-b border-b-solid border-b-grey"} {isMobile ? "py-2" : ""} flex px-2 flex-col justify-between nav:(flex-row items-center)"
class:hasJSNav={hasJS}
class:noJSNav={!hasJS}
2022-12-27 20:58:47 +05:30
>
<div class="flex flex-row items-center justify-between">
2022-10-01 18:41:54 +05:30
<a
2022-12-27 20:58:47 +05:30
class="flex items-center decoration-none text-text gap-2 transition-opacity duration-250 hover:opacity-80"
href="/"
2022-10-01 18:41:54 +05:30
>
2022-12-27 20:58:47 +05:30
<img
src="/logo.png"
alt="Project Segfault logo"
class="h-7"
/>
<span>Project Segfault</span>
2022-08-04 21:20:02 +05:30
</a>
2022-12-27 20:58:47 +05:30
{#if showMenuButton}
<button
on:click={toggleMenu}
class="{menuOpen ? "i-ic:outline-close" : "i-ic:outline-menu"} h-4 w-4 cursor-pointer mr-2"
2022-12-27 20:58:47 +05:30
/>
{/if}
2022-07-27 22:20:48 +05:30
</div>
2022-12-27 20:58:47 +05:30
{#if menuOpen}
<div
2023-01-25 22:41:11 +05:30
class="links {isMobile ? "!children:py-2" : ""}"
class:hasJS={hasJS}
class:noJS={!hasJS}
transition:slide="{{duration: 300, easing: quintOut }}"
2022-12-27 20:58:47 +05:30
>
{#each menus as { url, name, external }}
<a
class:active={url !== "/"
? currentPage.match(url)
: url === currentPage}
href={url}
on:click={handleNavigation}
>{#if external}
<div
class="i-ic:outline-open-in-new mr-2 h-4 w-4"
2022-12-27 20:58:47 +05:30
/>
{/if}
{name}
</a>
{/each}
<a
href="https://matrix.to/#/#project-segfault:projectsegfau.lt/"
class="icon"
>
<div class="i-simple-icons:matrix" />
<span>Matrix</span>
</a>
<a
href="https://github.com/ProjectSegfault/"
class="icon"
>
<div class="i-simple-icons:github" />
<span>GitHub</span>
</a>
{#if showThemeToggle}
<div class="icon">
<ThemeToggle />
</div>
{/if}
</div>
{/if}
</nav>
2022-08-24 21:37:30 +05:30
<style>
a.active {
2022-12-27 20:58:47 +05:30
@apply text-accent;
2022-07-27 22:15:53 +05:30
}
.links > * {
2023-01-25 22:41:11 +05:30
@apply py-4 px-2 cursor-pointer text-text decoration-none transition-color duration-250 text-sm font-500 flex items-center hover\:(text-accent);
}
2022-12-27 20:58:47 +05:30
.icon > span {
@apply flex text-sm nav\:hidden;
2022-07-27 22:15:53 +05:30
}
2022-12-27 20:58:47 +05:30
.icon {
@apply flex flex-row items-center gap-2 text-base;
}
2023-01-01 00:54:03 +05:30
.hasJS {
2023-01-06 00:26:53 +05:30
@apply flex flex-col pt-2 gap-2 fixed bg-primary w-full left-0 top-[2.75rem] p-2 z-50 border-b-solid border-b border-b-grey shadow shadow-secondary;
2023-01-01 00:54:03 +05:30
}
.noJS {
@apply grid grid-cols-2 gap-2 pt-2 w-fit;
2022-09-10 21:28:19 +05:30
}
.hasJSNav {
@apply sticky top-0 z-50;
}
2023-01-05 22:55:25 +05:30
.noJSNav {
@apply border-b border-b-solid border-b-grey;
}
2023-01-07 22:59:58 +05:30
@media (min-width: 1090px) {
2023-01-01 00:54:03 +05:30
.hasJS {
flex-direction: row;
padding-top: 0;
position: initial;
background-color: initial;
width: initial;
left: initial;
top: initial;
padding: initial;
z-index: initial;
border-bottom: initial;
box-shadow: initial;
2023-01-01 00:54:03 +05:30
}
.noJS {
2022-07-27 22:15:53 +05:30
display: flex;
2022-09-10 21:28:19 +05:30
flex-direction: row;
2022-12-27 20:58:47 +05:30
padding-top: 0;
2022-09-10 21:28:19 +05:30
}
}
2022-07-27 22:20:48 +05:30
</style>