123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521 |
- <template>
- <!-- Header -->
- <header class="fixed top-0 z-50 w-full bg-slate-900/70 backdrop-blur-[50px]">
- <div class="max-w-screen-2xl mx-auto px-4 sm:px-6 lg:px-10">
- <div class="h-[55px] flex justify-between items-center sm:h-[72px]">
- <div class="flex justify-start items-center gap-12 lg:gap-24">
- <nuxt-link :to="homePath" class="brand-link mt-[5px] flex-shrink-0">
- <i
- class="icon-brand text-white text-1xl sm:text-2xl block transition-[transform,filter] duration-500 ease-in-out"
- ></i>
- </nuxt-link>
- <!-- Desktop Menu -->
- <nav class="hidden md:flex justify-start items-start gap-7 lg:gap-14">
- <template v-for="item in menuItems" :key="item.label">
- <!-- Regular Link -->
- <nuxt-link
- v-if="!item.isDropdown"
- class="main-nav-link relative inline-block justify-start text-white text-sm opacity-80 hover:opacity-100 transition-opacity py-2 px-3 rounded-md"
- :to="item.path"
- :class="[
- $route.path === item.path
- ? 'font-bold opacity-100 bg-white/15'
- : '',
- ]"
- >
- {{ $t(item.label) }}
- </nuxt-link>
-
- <!-- Dropdown Container -->
- <div
- v-else-if="item.isDropdown"
- class="relative"
- @mouseleave="handleMouseLeave"
- >
- <!-- Dropdown Trigger -->
- <div
- @mouseenter="handleMouseEnter(item.label)"
- class="justify-start text-white text-sm opacity-80 hover:opacity-100 transition-opacity cursor-pointer flex items-center gap-1 py-2"
- :class="{
- 'text-white font-bold opacity-100':
- openDropdown === item.label ||
- $route.path.startsWith(item.pathPrefix),
- }"
- >
- <span>{{ $t(item.label) }}</span>
- <!-- Dropdown Arrow -->
- <svg
- class="h-3 w-3 text-white/60"
- fill="none"
- viewBox="0 0 24 24"
- stroke="currentColor"
- >
- <path
- stroke-linecap="round"
- stroke-linejoin="round"
- stroke-width="3"
- d="M19 9l-7 7-7-7"
- />
- </svg>
- </div>
-
- <!-- Dropdown Panel -->
- <transition name="fade-down">
- <div
- v-if="item.isDropdown && openDropdown === item.label"
- @mouseenter="handleMouseEnter(item.label)"
- class="absolute left-0 top-full mt-1 w-max min-w-[450px] bg-slate-800/90 backdrop-blur-md rounded-lg shadow-xl p-4 z-10 grid grid-cols-2 gap-4"
- >
- <div
- v-for="(section, index) in item.children"
- :key="index"
- class="bg-black/10 p-4 rounded-md"
- >
- <h3
- class="text-sm font-semibold text-gray-300 uppercase tracking-wider mb-4 flex items-center gap-2"
- >
- <i
- :class="[
- index === 0 ? 'icon-tag' : 'icon-target',
- 'text-gray-400',
- ]"
- ></i>
- <span>{{ $t(section.title) }}</span>
- </h3>
- <ul class="space-y-3">
- <li v-for="link in section.items" :key="link.path">
- <nuxt-link
- :to="link.path"
- @click="handleMouseLeave"
- class="block text-base text-gray-200 hover:text-white hover:bg-white/10 transition-all duration-150 rounded px-2 py-1"
- :class="{
- 'text-white font-bold bg-white/5':
- $route.path === link.path,
- }"
- >
- {{ $t(link.label) }}
- </nuxt-link>
- </li>
- </ul>
- </div>
- </div>
- </transition>
- </div>
- </template>
- </nav>
- </div>
-
- <div class="flex justify-start items-center gap-4 md:gap-6">
- <!-- Search -->
- <div
- @click="openSearch"
- class="w-auto h-8 relative items-center opacity-40 rounded-2xl pr-4 hover:opacity-100 transition-opacity duration-300 hidden md:flex cursor-pointer"
- style="border: 0.5px solid rgba(255, 255, 255, 0.4)"
- >
- <span
- class="flex items-center justify-center w-8 h-8 opacity-80 hover:opacity-100 text-white"
- >
- <i class="icon-search text-sm"></i>
- </span>
- <span
- class="hidden lg:inline-block ml-1 text-white text-sm opacity-80"
- >
- {{ $t("common.search") }}
- </span>
- <!-- Input overlay could go here if implementing search -->
- </div>
-
- <!-- Language -->
- <LanguageSwitcher />
-
- <!-- Mobile Menu Button -->
- <div class="md:hidden">
- <button
- @click="toggleMobileMenu"
- class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 bg-white/10 hover:text-white hover:bg-white/20 focus:outline-none focus:ring-2 focus:ring-inset focus:ring-white"
- >
- <span class="sr-only">Open main menu</span>
- <!-- Icon when menu is closed. -->
- <svg
- v-if="!mobileMenuOpen"
- class="block h-6 w-6"
- xmlns="http://www.w3.org/2000/svg"
- fill="none"
- viewBox="0 0 24 24"
- stroke="currentColor"
- aria-hidden="true"
- >
- <path
- stroke-linecap="round"
- stroke-linejoin="round"
- stroke-width="2"
- d="M4 6h16M4 12h16M4 18h16"
- />
- </svg>
- <!-- Icon when menu is open. -->
- <svg
- v-else
- class="block h-6 w-6"
- xmlns="http://www.w3.org/2000/svg"
- fill="none"
- viewBox="0 0 24 24"
- stroke="currentColor"
- aria-hidden="true"
- >
- <path
- stroke-linecap="round"
- stroke-linejoin="round"
- stroke-width="2"
- d="M6 18L18 6M6 6l12 12"
- />
- </svg>
- </button>
- </div>
- </div>
- </div>
- </div>
-
- <!-- Mobile menu, show/hide based on menu state. -->
- <transition name="slide-fade">
- <div
- v-if="mobileMenuOpen"
- class="md:hidden bg-slate-800/90"
- id="mobile-menu"
- >
- <div class="px-2 pt-2 pb-3 space-y-1 sm:px-3">
- <template v-for="item in menuItems" :key="item.label">
- <!-- Mobile Regular Link -->
- <nuxt-link
- v-if="!item.isDropdown"
- :to="item.path"
- @click="closeMobileMenu"
- class="block px-3 py-2 rounded-md text-base font-medium"
- :class="[
- $route.path === item.path
- ? 'bg-gray-900 text-white'
- : 'text-gray-300 hover:bg-gray-700 hover:text-white',
- ]"
- >
- {{ $t(item.label) }}
- </nuxt-link>
-
- <!-- Mobile Dropdown Section -->
- <div v-else class="mt-2">
- <h3
- class="px-3 pt-2 pb-1 text-sm font-semibold text-gray-400 uppercase tracking-wider"
- >
- {{ $t(item.label) }}
- </h3>
- <div
- v-for="section in item.children"
- :key="section.title"
- class="mt-1"
- >
- <!-- Optional: Section title for mobile? -->
- <!-- <h4 class="px-3 pt-1 text-xs font-medium text-gray-500">{{ $t(section.title) }}</h4> -->
- <nuxt-link
- v-for="link in section.items"
- :key="link.path"
- :to="link.path"
- @click="closeMobileMenu"
- class="block pl-6 pr-3 py-2 rounded-md text-base font-medium text-gray-300 hover:bg-gray-700 hover:text-white"
- :class="{
- 'bg-gray-900 text-white': $route.path === link.path,
- }"
- >
- {{ $t(link.label) }}
- </nuxt-link>
- </div>
- </div>
- </template>
- </div>
- </div>
- </transition>
- </header>
-
- <!-- Search Layer (Moved outside header) -->
- <transition name="search-fade-scale">
- <div
- v-if="isSearchOpen"
- class="fixed inset-0 z-[60] bg-black/80 backdrop-blur-md flex items-start justify-center pt-20"
- @click.self="closeSearch"
- >
- <div
- class="bg-gradient-to-br from-slate-800 to-slate-900 p-8 rounded-lg relative w-full max-w-2xl mx-4 search-modal-content shadow-xl"
- >
- <button
- @click="closeSearch"
- class="absolute top-3 right-3 text-gray-500 hover:text-white hover:bg-white/10 rounded-full p-2 transition-colors"
- >
- <svg
- class="h-5 w-5"
- fill="none"
- viewBox="0 0 24 24"
- stroke="currentColor"
- >
- <path
- stroke-linecap="round"
- stroke-linejoin="round"
- stroke-width="2"
- d="M6 18L18 6M6 6l12 12"
- />
- </svg>
- </button>
- <h2 class="text-white text-xl mb-6">{{ $t("common.search") }}</h2>
-
- <!-- Input with Icon -->
- <div class="relative mb-6">
- <span class="absolute inset-y-0 left-0 flex items-center pl-3">
- <i class="icon-search text-gray-400 text-sm"></i>
- </span>
- <input
- ref="searchInputRef"
- type="text"
- :placeholder="
- $t('common.searchPlaceholder') || 'Enter search term...'
- "
- class="w-full p-3 pl-10 pr-10 rounded bg-slate-700 text-white border border-slate-600 focus:outline-none focus:border-blue-500 focus:ring-1 focus:ring-blue-500"
- />
- <!-- Enter Icon -->
- <span
- class="absolute inset-y-0 right-0 flex items-center pr-3 cursor-pointer group"
- >
- <i
- class="icon-enter text-gray-400 group-hover:text-blue-400 transition-colors"
- ></i>
- </span>
- </div>
-
- <!-- Search results could go here -->
- <!-- Hot Keywords Section -->
- <div class="mt-6">
- <h3 class="text-gray-400 text-sm mb-3">
- {{ $t("common.hotKeywords") || "热门搜索" }}
- </h3>
- <div class="flex flex-wrap gap-3">
- <button
- v-for="keyword in hotKeywords"
- :key="keyword"
- @click="searchHotKeyword(keyword)"
- class="px-4 py-1.5 bg-slate-700 text-white/80 rounded-full text-sm hover:bg-blue-600 hover:text-white transition-colors duration-200"
- >
- {{ keyword }}
- </button>
- </div>
- </div>
- </div>
- </div>
- </transition>
- </template>
-
- <script setup lang="ts">
- import { ref, computed, watch, nextTick } from "#imports";
- import { useI18n } from "vue-i18n";
-
- /**
- * 页面头部组件
- * 包含导航菜单、语言切换和移动端响应式设计
- */
- const { t, locale } = useI18n();
- const config = useRuntimeConfig();
- // 从运行时配置获取默认语言,如果未配置则默认为 'en'
- const defaultLocale = config.public.i18n?.defaultLocale || "en";
- const mobileMenuOpen = ref(false);
- const isSearchOpen = ref(false);
- const searchInputRef = ref<HTMLInputElement | null>(null);
- const openDropdown = ref<string | null>(null);
- let leaveTimeout: ReturnType<typeof setTimeout> | null = null; // Timeout for mouseleave delay
-
- // 添加热门关键字
- const hotKeywords = ref(["SSD", "SD", "DDR4"]);
-
- // 使用 computed 来定义 homePath,根据是否为默认语言调整路径
- const homePath = computed(() => {
- // 如果是默认语言,路径为根路径 '/'
- // 否则,路径为 '/<locale>/'
- return locale.value === defaultLocale ? "/" : `/${locale.value}/`;
- });
-
- // 使用 computed 来定义 menuItems,根据是否为默认语言调整路径
- const menuItems = computed(() => {
- // 判断当前是否为默认语言
- const isDefaultLocale = locale.value === defaultLocale;
- // 如果是默认语言,路径前缀为空字符串,否则为 '/<locale>'
- const prefix = isDefaultLocale ? "" : `/${locale.value}`;
- return [
- // 首页路径特殊处理:默认语言为 '/', 其他语言为 '/<locale>/'
- { label: "common.home", path: isDefaultLocale ? "/" : `${prefix}/` },
- {
- label: "common.products",
- isDropdown: true,
- pathPrefix: `${prefix}/products`,
- children: [
- {
- title: "common.productCategories",
- items: [
- { label: "SSD", path: `${prefix}/products?category=ssd` },
- { label: "DRAM", path: `${prefix}/products?category=dram` },
- { label: "NAND", path: `${prefix}/products?category=nand` },
- ],
- },
- {
- title: "common.byUsage",
- items: [
- {
- label: "Enterprise",
- path: `${prefix}/products?usage=enterprise`,
- },
- { label: "Consumer", path: `${prefix}/products?usage=consumer` },
- {
- label: "Industrial",
- path: `${prefix}/products?usage=industrial`,
- },
- ],
- },
- ],
- },
- { label: "common.faq", path: `${prefix}/faq` },
- { label: "common.about", path: `${prefix}/about` },
- { label: "common.contact", path: `${prefix}/contact` },
- ];
- });
-
- /**
- * 切换移动端菜单显示状态
- */
- function toggleMobileMenu() {
- mobileMenuOpen.value = !mobileMenuOpen.value;
- }
-
- /**
- * 关闭移动端菜单
- */
- function closeMobileMenu() {
- mobileMenuOpen.value = false;
- }
-
- /**
- * 打开搜索层
- */
- function openSearch() {
- isSearchOpen.value = true;
- }
-
- /**
- * 关闭搜索层
- */
- function closeSearch() {
- isSearchOpen.value = false;
- }
-
- /**
- * 搜索热门关键字 (示例)
- * @param keyword
- */
- function searchHotKeyword(keyword: string) {
- console.log("Searching for hot keyword:", keyword);
- // 可以在这里实现填充输入框或直接执行搜索的逻辑
- // 例如: searchInputValue.value = keyword;
- closeSearch(); // 点击后可以关闭搜索层
- }
-
- // 监听搜索层状态,打开时自动聚焦输入框
- watch(isSearchOpen, (newValue: boolean) => {
- if (newValue) {
- nextTick(() => {
- searchInputRef.value?.focus();
- });
- }
- });
-
- // --- Dropdown Logic ---
- function handleMouseEnter(label: string) {
- if (leaveTimeout) {
- clearTimeout(leaveTimeout);
- leaveTimeout = null;
- }
- openDropdown.value = label;
- }
-
- function handleMouseLeave() {
- // Delay closing the dropdown slightly
- leaveTimeout = setTimeout(() => {
- openDropdown.value = null;
- }, 150); // 150ms delay
- }
- // --- End Dropdown Logic ---
- </script>
-
- <style lang="scss" scoped>
- header {
- user-select: none;
- }
-
- /* Brand icon hover effect */
- .brand-link {
- &:hover {
- .icon-brand {
- transform: scale(1.05);
- filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.6));
- }
- }
- }
-
- /* Base style for icon to apply will-change */
- .icon-brand {
- will-change: transform, filter; /* Hint for browser optimization */
- }
-
- /* Transition for mobile menu */
- .slide-fade-enter-active {
- transition: all 0.3s ease-out;
- }
-
- .slide-fade-leave-active {
- transition: all 0.3s cubic-bezier(1, 0.5, 0.8, 1);
- }
-
- .slide-fade-enter-from,
- .slide-fade-leave-to {
- transform: translateY(-20px);
- opacity: 0;
- }
-
- /* Transition for dropdown */
- .fade-down-enter-active,
- .fade-down-leave-active {
- transition: all 0.2s ease-out;
- }
-
- .fade-down-enter-from,
- .fade-down-leave-to {
- opacity: 0;
- transform: translateY(-10px);
- }
-
- /* Transition for search overlay */
- .search-fade-scale-enter-active,
- .search-fade-scale-leave-active {
- transition: opacity 0.3s ease-out;
- }
-
- .search-fade-scale-enter-from,
- .search-fade-scale-leave-to {
- opacity: 0;
- }
-
- /* 为搜索框内容添加独立的、稍延迟的动画 */
- .search-modal-content {
- transition: transform 0.3s ease-out 0.05s;
- }
-
- .search-fade-scale-enter-from .search-modal-content,
- .search-fade-scale-leave-to .search-modal-content {
- transform: scale(0.95) translateY(10px);
- }
-
- /* Keep the sticky header consistent */
- .sticky {
- position: sticky;
- }
- </style>
|