Files
kaiser-natron/src/pages/KaiserhacksPage.vue
2026-05-26 13:13:25 -05:00

198 lines
6.1 KiB
Vue

<script setup>
import { computed, onBeforeUnmount, onMounted, ref } from 'vue'
import { useRouter } from 'vue-router'
import Navbar from '@/design-system/components/Navbar.vue'
import Kaiserhacks from '@/design-system/components/Kaiserhacks.vue'
import Footer from '@/design-system/components/Footer.vue'
import CartDrawer from '@/design-system/components/CartDrawer.vue'
import IconButton from '@/design-system/components/IconButton.vue'
import {
products,
fetchCart,
addToCart,
updateCartItem,
removeFromCart,
} from '@/api/index.js'
import { kaiserhacksPage, localizeKaiserhacks } from '@/api/kaiserhacks.js'
import { useCartStore } from '@/stores/cart.js'
import { useI18n } from '@/i18n/index.js'
const { t } = useI18n()
const cart = useCartStore()
const router = useRouter()
const cartOpen = ref(false)
const selectedHack = ref(null)
const navRef = ref(null)
const navItems = [
{ key: 'nav.shop', href: '/shop' },
{ key: 'nav.bundles', href: '/#bundles' },
{ key: 'nav.revitalization', href: '/#revitalize' },
{ key: 'nav.about', href: '/#about' },
{ key: 'nav.kaiserhacks', href: '/kaiserhacks' },
]
const navSecondaryItems = []
const page = computed(() => localizeKaiserhacks(kaiserhacksPage, t))
const labels = computed(() => ({
categories: t('kaiserhacks.labels.categories'),
categoryNav: t('kaiserhacks.labels.categoryNav'),
openVideo: t('kaiserhacks.labels.openVideo'),
mockPlayer: t('kaiserhacks.labels.mockPlayer'),
community: t('kaiserhacks.labels.community'),
handoffNote: t('kaiserhacks.labels.handoffNote'),
}))
let navResizeObserver = null
function syncNavHeight() {
const el = navRef.value
const node = el && (el.$el || el)
if (!node || typeof window === 'undefined') return
const h = Math.round(node.getBoundingClientRect().height)
document.documentElement.style.setProperty('--nav-h', `${h}px`)
}
function goCheckout() {
cartOpen.value = false
router.push('/checkout')
}
async function onSearchSelect(product) {
await addToCart(product.id, 1)
cartOpen.value = true
}
function onHackSelect(hack) {
selectedHack.value = hack
}
async function onQty({ productId, quantity }) {
await updateCartItem(productId, quantity)
}
async function onRemove(productId) {
await removeFromCart(productId)
}
onMounted(() => {
fetchCart()
syncNavHeight()
if (typeof ResizeObserver !== 'undefined' && navRef.value) {
const node = navRef.value.$el || navRef.value
navResizeObserver = new ResizeObserver(syncNavHeight)
navResizeObserver.observe(node)
}
window.addEventListener('resize', syncNavHeight)
})
onBeforeUnmount(() => {
if (navResizeObserver) navResizeObserver.disconnect()
if (typeof window !== 'undefined') window.removeEventListener('resize', syncNavHeight)
})
</script>
<template>
<Navbar
ref="navRef"
variant="brand"
layout="standard"
:items="navItems"
:secondary-items="navSecondaryItems"
:cart-count="cart.count"
:products="products"
@cart="cartOpen = true"
@search="onSearchSelect"
/>
<Kaiserhacks
:eyebrow="page.eyebrow"
:headline="page.headline"
:sub="page.sub"
:categories="page.categories"
:instagram-href="page.instagramHref"
:labels="labels"
@select="onHackSelect"
/>
<Footer />
<Teleport to="body">
<Transition
enter-active-class="transition duration-slow ease-out"
enter-from-class="opacity-0"
enter-to-class="opacity-100"
leave-active-class="transition duration-base ease-out"
leave-from-class="opacity-100"
leave-to-class="opacity-0"
>
<div
v-if="selectedHack"
class="fixed inset-0 z-50 flex items-center justify-center bg-ink/70 px-4 py-8"
role="dialog"
aria-modal="true"
:aria-label="selectedHack.title"
@click.self="selectedHack = null"
>
<div class="relative w-full max-w-[360px] overflow-hidden rounded-md bg-paper shadow-lg">
<div class="absolute right-3 top-3 z-10">
<IconButton
icon="close"
variant="float"
size="sm"
:aria-label="t('menu.close')"
@click="selectedHack = null"
/>
</div>
<div class="relative aspect-video w-full overflow-hidden bg-ink">
<img
:src="selectedHack.video?.poster"
:alt="selectedHack.video?.alt || selectedHack.title"
class="absolute inset-0 h-full w-full object-cover opacity-70"
/>
<div class="absolute inset-0 bg-gradient-to-t from-ink/80 via-ink/25 to-transparent" />
<div class="absolute inset-0 flex items-center justify-center">
<div class="flex h-16 w-16 items-center justify-center rounded-pill bg-accent text-brand shadow-md">
<span class="ml-1 h-0 w-0 border-y-[12px] border-l-[18px] border-y-transparent border-l-current" />
</div>
</div>
<div class="absolute inset-x-5 bottom-5">
<div class="mb-3 flex items-center justify-between text-[12px] font-bold tracking-label text-cream">
<span>{{ t('kaiserhacks.labels.mockPlayer') }}</span>
<span>{{ selectedHack.duration }}</span>
</div>
<div class="h-1.5 overflow-hidden rounded-pill bg-cream/25">
<div class="h-full w-1/3 rounded-pill bg-accent" />
</div>
</div>
</div>
<div class="p-5">
<p class="eyebrow mb-2">{{ t('nav.kaiserhacks') }}</p>
<h2 class="font-display text-2xl font-normal leading-tight text-ink">
{{ selectedHack.title }}
</h2>
<p class="mt-2 text-sm leading-relaxed text-muted">
{{ selectedHack.description }}
</p>
</div>
</div>
</div>
</Transition>
</Teleport>
<div
aria-hidden="true"
class="min-[1100px]:hidden bg-cream"
style="height: calc(100px + env(safe-area-inset-bottom));"
/>
<CartDrawer
v-model="cartOpen"
:items="cart.items"
:subtotal="cart.subtotal"
:count="cart.count"
@update-quantity="onQty"
@remove="onRemove"
@checkout="goCheckout"
/>
</template>