Add Waybar-style footer with sticky navbar/footer layout
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 26s
All checks were successful
Deploy with Docker Compose / deploy (push) Successful in 26s
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -5,12 +5,28 @@ import Footer from "@/components/Footer.vue";
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<Navbar class="no-print sticky" />
|
<div class="app-layout">
|
||||||
|
<Navbar class="no-print sticky top-0 z-50" />
|
||||||
|
<main class="app-content">
|
||||||
<RouterView v-slot="{ Component }">
|
<RouterView v-slot="{ Component }">
|
||||||
<Transition name="slide" mode="out-in">
|
<Transition name="slide" mode="out-in">
|
||||||
<component :is="Component" :key="$route.path" />
|
<component :is="Component" :key="$route.path" />
|
||||||
</Transition>
|
</Transition>
|
||||||
</RouterView>
|
</RouterView>
|
||||||
|
</main>
|
||||||
<!-- <Footer style="height: 10vh" /> -->
|
<Footer class="sticky bottom-0 z-50" />
|
||||||
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.app-layout {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
min-height: 100vh;
|
||||||
|
}
|
||||||
|
|
||||||
|
.app-content {
|
||||||
|
flex: 1;
|
||||||
|
overflow-y: auto;
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
@@ -1,3 +1,138 @@
|
|||||||
|
<script setup>
|
||||||
|
import { ref, onMounted, onUnmounted } from "vue";
|
||||||
|
|
||||||
|
|
||||||
|
const clock = ref("");
|
||||||
|
let timer;
|
||||||
|
|
||||||
|
|
||||||
|
function updateClock() {
|
||||||
|
const now = new Date();
|
||||||
|
clock.value = now.toLocaleDateString("en-US", {
|
||||||
|
weekday: "short",
|
||||||
|
month: "short",
|
||||||
|
day: "numeric",
|
||||||
|
hour: "2-digit",
|
||||||
|
minute: "2-digit",
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
onMounted(() => {
|
||||||
|
updateClock();
|
||||||
|
timer = setInterval(updateClock, 1000);
|
||||||
|
});
|
||||||
|
|
||||||
|
onUnmounted(() => {
|
||||||
|
clearInterval(timer);
|
||||||
|
});
|
||||||
|
|
||||||
|
const user = "visitor";
|
||||||
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<footer></footer>
|
<footer class="waybar">
|
||||||
|
<div class="modules-left">
|
||||||
|
<span class="workspace active">ツ</span>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="modules-right">
|
||||||
|
<span class="module greeting">Hi, {{ user }}!</span>
|
||||||
|
<span class="module cpu">CPU 3%</span>
|
||||||
|
<span class="module mem">MEM 42%</span>
|
||||||
|
<span class="module disk">DISK 67%</span>
|
||||||
|
<span class="module network">↑ 12K ↓ 84K</span>
|
||||||
|
<span class="module battery">BAT 98%</span>
|
||||||
|
<span class="module clock">{{ clock }}</span>
|
||||||
|
</div>
|
||||||
|
</footer>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
<style scoped>
|
||||||
|
.waybar {
|
||||||
|
font-family: "URWGothic-Book", monospace;
|
||||||
|
background-color: var(--bg_primary);
|
||||||
|
color: var(--primary);
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
align-items: center;
|
||||||
|
padding: 4px 8px;
|
||||||
|
font-size: 14px;
|
||||||
|
min-height: 36px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modules-left {
|
||||||
|
display: flex;
|
||||||
|
gap: 2px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspace {
|
||||||
|
background: var(--quaternary);
|
||||||
|
border: none;
|
||||||
|
border-bottom: 2px solid var(--secondary);
|
||||||
|
color: var(--secondary);
|
||||||
|
padding: 2px 10px;
|
||||||
|
font-family: inherit;
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.modules-right {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
}
|
||||||
|
|
||||||
|
.module {
|
||||||
|
padding: 2px 12px;
|
||||||
|
border-left: 1px solid var(--tertiary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.module:first-child {
|
||||||
|
border-left: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.greeting {
|
||||||
|
color: var(--secondary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.clock {
|
||||||
|
color: var(--tertiary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.cpu,
|
||||||
|
.mem,
|
||||||
|
.disk {
|
||||||
|
color: var(--primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.network {
|
||||||
|
color: var(--secondary);
|
||||||
|
}
|
||||||
|
|
||||||
|
.battery {
|
||||||
|
color: var(--primary);
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (max-width: 640px) {
|
||||||
|
.waybar {
|
||||||
|
font-size: 11px;
|
||||||
|
padding: 4px 4px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.workspace {
|
||||||
|
padding: 2px 6px;
|
||||||
|
font-size: 11px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.module {
|
||||||
|
padding: 2px 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.cpu,
|
||||||
|
.mem,
|
||||||
|
.disk,
|
||||||
|
.network,
|
||||||
|
.battery {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
</style>
|
||||||
|
|||||||
Reference in New Issue
Block a user