website/src/lib/Nav.svelte

154 lines
3.0 KiB
Svelte
Raw Normal View History

<script lang="ts">
import ThemeToggle from "./ThemeToggle.svelte";
import { page } from "$app/stores";
$: currentPage = $page.url.pathname;
2022-12-27 20:58:47 +05:30
let showMenuButton = false;
let listStyles = "";
let innerWidth: number = 0;
$: showMenuButton = innerWidth < 1030;
let menuOpen = false;
$: menuOpen = innerWidth > 1030;
let showThemeToggle: boolean = true;
const toggleMenu = () => {
menuOpen = !menuOpen;
};
const handleNavigation = () => {
if (showMenuButton) {
menuOpen = false;
} else {
menuOpen = true;
}
};
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: "Contact us", url: "/contact" },
{ name: "Our team", url: "/team" },
{ name: "Timeline", url: "/timeline" },
{ name: "Blog", url: "/blog" },
2022-08-08 10:50:03 +05:30
{ name: "Legal", url: "/legal" },
2022-12-27 20:58:47 +05:30
{
name: "Status",
url: "https://status.projectsegfau.lt/",
external: true
}
2022-08-08 10:50:03 +05:30
];
2022-07-27 22:15:53 +05:30
2022-12-27 20:58:47 +05:30
$: if (typeof Window === "undefined") {
menuOpen = true;
showMenuButton = false;
showThemeToggle = false;
listStyles = "list-styles";
}
</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-01 00:10:18 +05:30
class="bg-primary border-b border-b-solid border-b-grey flex p-2 flex-col justify-between nav:(flex-row items-center)"
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="i-fa6-solid:bars cursor-pointer mr-2"
/>
{/if}
2022-07-27 22:20:48 +05:30
</div>
2022-12-27 20:58:47 +05:30
{#if menuOpen}
<div
class="{listStyles} flex flex-col pt-2 nav:(flex-row pt-0) gap-2 links"
>
{#each menus as { url, name, external }}
<a
data-sveltekit-preload-data
class:active={url !== "/"
? currentPage.match(url)
: url === currentPage}
href={url}
on:click={handleNavigation}
>{#if external}
<div
class="i-fa6-solid:arrow-up-right-from-square mr-2"
/>
{/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 > * {
2022-12-27 20:58:47 +05:30
@apply p-2 cursor-pointer text-text decoration-none transition-color duration-25 text-sm font-500 flex items-center hover\:text-accent;
}
2022-12-27 20:58:47 +05:30
.icon > span {
@apply flex 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;
}
2022-12-27 20:58:47 +05:30
:global(.list-styles) {
@apply grid grid-cols-2 gap-2 w-fit links;
2022-09-10 21:28:19 +05:30
}
2022-12-27 20:58:47 +05:30
@media screen and (min-width: 1030px) {
:global(.list-styles) {
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>