217 lines
4.7 KiB
Vue
217 lines
4.7 KiB
Vue
<script setup lang="ts">
|
|
const props = defineProps<{
|
|
currentTheme: string
|
|
currentLang: string
|
|
isNatUnlocked: boolean
|
|
t: (key: string) => string
|
|
}>()
|
|
|
|
const emit = defineEmits(['update:theme', 'update:lang', 'open:game'])
|
|
|
|
const themes = ['classic', 'unicorn', 'luxury', 'win95', 'nat']
|
|
</script>
|
|
|
|
<template>
|
|
<header class="fancy-glass header-top">
|
|
<div class="container top-content">
|
|
<div class="logo-text">HAUMDAUCHER</div>
|
|
<div class="controls">
|
|
<!-- Combined switch for better mobile spacing -->
|
|
<div class="control-wrapper">
|
|
<div class="switch-group">
|
|
<button
|
|
v-for="l in ['de', 'bar']"
|
|
:key="l"
|
|
:class="{ active: currentLang === l }"
|
|
@click="emit('update:lang', l)"
|
|
>
|
|
{{ l.toUpperCase() }}
|
|
</button>
|
|
</div>
|
|
<div class="switch-group">
|
|
<template v-for="th in themes">
|
|
<button
|
|
v-if="th !== 'nat' || isNatUnlocked"
|
|
:key="th"
|
|
:class="{ active: currentTheme === th }"
|
|
@click="emit('update:theme', th)"
|
|
class="theme-btn"
|
|
:title="th"
|
|
>
|
|
<span v-if="th === 'classic'">⚫</span>
|
|
<span v-if="th === 'unicorn'">🦄</span>
|
|
<span v-if="th === 'luxury'">👑</span>
|
|
<span v-if="th === 'win95'">💾</span>
|
|
<span v-if="th === 'nat'">🐗</span>
|
|
</button>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<!-- Mobile Bottom Nav -->
|
|
<nav class="fancy-glass mobile-nav">
|
|
<a href="#home" class="nav-item">🏠<span>{{ t('nav.home') }}</span></a>
|
|
<a href="#about" class="nav-item">👥<span>{{ t('nav.about') }}</span></a>
|
|
<button class="nav-item game-btn" @click="emit('open:game')">🕹️<span>{{ t('nav.game') }}</span></button>
|
|
<a href="#history" class="nav-item">📜<span>{{ t('nav.history') }}</span></a>
|
|
<a href="#beer" class="nav-item">🍺<span>{{ t('nav.beer') }}</span></a>
|
|
</nav>
|
|
|
|
<!-- Desktop Side Nav / Links -->
|
|
<nav class="desktop-links">
|
|
<div class="container">
|
|
<a href="#about">{{ t('nav.about') }}</a>
|
|
<a href="#history">{{ t('nav.history') }}</a>
|
|
<a href="#beer">{{ t('nav.beer') }}</a>
|
|
<button class="game-nav-btn" @click="emit('open:game')">{{ t('nav.game') }}</button>
|
|
</div>
|
|
</nav>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.header-top {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 1000;
|
|
padding: 10px 0;
|
|
}
|
|
|
|
.top-content {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: 0 10px;
|
|
}
|
|
|
|
.logo-text {
|
|
font-weight: 900;
|
|
letter-spacing: 1px;
|
|
font-size: 0.9rem;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.controls {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
flex: 1;
|
|
}
|
|
|
|
.control-wrapper {
|
|
display: flex;
|
|
gap: 8px;
|
|
align-items: center;
|
|
flex-wrap: wrap;
|
|
justify-content: flex-end;
|
|
}
|
|
|
|
.switch-group {
|
|
display: flex;
|
|
background: rgba(0,0,0,0.05);
|
|
padding: 2px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
button {
|
|
background: none;
|
|
border: none;
|
|
padding: 4px 8px;
|
|
border-radius: 6px;
|
|
cursor: pointer;
|
|
font-weight: bold;
|
|
font-size: 0.7rem;
|
|
color: inherit;
|
|
opacity: 0.5;
|
|
transition: all 0.2s;
|
|
}
|
|
|
|
button.active {
|
|
background: var(--primary-color);
|
|
color: white;
|
|
opacity: 1;
|
|
}
|
|
|
|
/* Mobile Nav Styles */
|
|
.mobile-nav {
|
|
position: fixed;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 65px;
|
|
z-index: 1000;
|
|
display: flex;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
padding-bottom: var(--safe-area-bottom);
|
|
border-radius: 20px 20px 0 0;
|
|
}
|
|
|
|
.nav-item {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
font-size: 1.2rem;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
gap: 2px;
|
|
background: none;
|
|
border: none;
|
|
}
|
|
|
|
.nav-item span {
|
|
font-size: 0.6rem;
|
|
font-weight: 500;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
.desktop-links {
|
|
display: none;
|
|
}
|
|
|
|
/* Desktop Overrides */
|
|
@media (min-width: 768px) {
|
|
.logo-text { font-size: 1.2rem; }
|
|
.mobile-nav { display: none; }
|
|
.desktop-links {
|
|
display: block;
|
|
position: fixed;
|
|
top: 60px;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 999;
|
|
background: transparent;
|
|
padding: 10px 0;
|
|
text-align: center;
|
|
}
|
|
.desktop-links div {
|
|
display: flex;
|
|
justify-content: center;
|
|
gap: 30px;
|
|
align-items: center;
|
|
}
|
|
.desktop-links a {
|
|
text-decoration: none;
|
|
color: inherit;
|
|
font-weight: 500;
|
|
opacity: 0.8;
|
|
}
|
|
.desktop-links a:hover { opacity: 1; }
|
|
}
|
|
|
|
.game-nav-btn {
|
|
background: var(--primary-color);
|
|
color: white;
|
|
border: none;
|
|
padding: 8px 16px;
|
|
border-radius: 20px;
|
|
cursor: pointer;
|
|
font-weight: bold;
|
|
transition: transform 0.2s;
|
|
}
|
|
</style>
|