feat: Add responsive navigation with side/bottom bar

This commit is contained in:
Nicola Zangrandi 2025-02-17 16:21:26 +01:00
parent f4df77b2f7
commit 6aa3903c1f
Signed by: wasp
GPG key ID: 43C1470D890F23ED
5 changed files with 123 additions and 3 deletions

View file

@ -0,0 +1,79 @@
<script lang="ts">
import { page } from '$app/stores';
import { onMount } from 'svelte';
const routes = [
{ path: '/', label: 'Notes', icon: '📝' },
{ path: '/feeds', label: 'Feeds', icon: '📰' },
{ path: '/readlist', label: 'Read Later', icon: '📚' }
];
$: currentPath = $page.url.pathname;
$: isMobile = false;
function checkMobile() {
isMobile = window.innerWidth < 768;
}
onMount(() => {
checkMobile();
});
</script>
<svelte:window on:resize={checkMobile}/>
{#if isMobile}
<nav class="navbar is-fixed-bottom p-0">
<div class="navbar-brand is-justify-content-space-around is-flex-grow-1">
{#each routes as route}
<a
href={route.path}
class="navbar-item has-text-centered"
class:is-active={currentPath === route.path}
>
<div>
<span class="icon">{route.icon}</span>
<p class="is-size-7">{route.label}</p>
</div>
</a>
{/each}
</div>
</nav>
{:else}
<nav class="menu p-4 is-fixed-left">
{#each routes as route}
<a
href={route.path}
class="button is-fullwidth mb-2 is-justify-content-start"
class:is-light={currentPath === route.path}
>
<span class="icon">{route.icon}</span>
<span>{route.label}</span>
</a>
{/each}
</nav>
{/if}
<style>
.is-fixed-left {
position: fixed;
top: 0;
left: 0;
bottom: 0;
width: 200px;
background: inherit;
box-shadow: 2px 0 10px rgba(0,0,0,0.1);
}
@media (max-width: 768px) {
:global(body) {
padding-bottom: 60px;
}
}
@media (min-width: 769px) {
:global(body) {
padding-left: 200px;
}
}
</style>

View file

@ -2,6 +2,7 @@
import { notes } from '$lib'; import { notes } from '$lib';
import { stripMarkdown } from '$lib/markdown'; import { stripMarkdown } from '$lib/markdown';
import { onMount } from 'svelte'; import { onMount } from 'svelte';
import Navigation from '$lib/components/Navigation.svelte';
onMount(() => { onMount(() => {
notes.load(); notes.load();
@ -9,6 +10,8 @@
}); });
</script> </script>
<Navigation />
<div class="container"> <div class="container">
<section class="section"> <section class="section">
<h1 class="title">My Notes</h1> <h1 class="title">My Notes</h1>

View file

@ -0,0 +1,14 @@
<script lang="ts">
import Navigation from '$lib/components/Navigation.svelte';
</script>
<Navigation />
<div class="container">
<section class="section">
<h1 class="title">Feed Reader</h1>
<div class="notification is-info">
Feed Reader functionality coming soon!
</div>
</section>
</div>

View file

@ -59,7 +59,17 @@
} }
</script> </script>
<div class="container" on:click={handleLinkClick}> <div
class="container"
on:click={handleLinkClick}
on:keydown={event => {
if (event.key === 'Enter' || event.key === ' ') {
handleLinkClick(event);
}
}}
role="button"
tabindex="0"
>
<section class="section"> <section class="section">
{#if note} {#if note}
{#if isEditing} {#if isEditing}
@ -89,8 +99,8 @@
></textarea> ></textarea>
</div> </div>
<div class="mt-4 box"> <div class="mt-4 box">
<label class="label">Preview</label> <label class="label" for="preview">Preview</label>
<div class="content"> <div id="preview" class="content" aria-live="polite">
{@html renderMarkdown(editedContent)} {@html renderMarkdown(editedContent)}
</div> </div>
</div> </div>

View file

@ -0,0 +1,14 @@
<script lang="ts">
import Navigation from '$lib/components/Navigation.svelte';
</script>
<Navigation />
<div class="container">
<section class="section">
<h1 class="title">Read Later</h1>
<div class="notification is-info">
Read Later functionality coming soon!
</div>
</section>
</div>