UI/UX Overhaul: NavBar, Icons, Mobile Menu, and Status Panel Integration
- Przeniesienie tytułu i wybieraka języka do nowego komponentu NavBar - Integracja biblioteki flag-icons i mapowanie kodów języków na kraje - Wdrożenie biblioteki ikon lucide-vue-next i zastąpienie wszystkich emoji ikonami SVG - Implementacja pełnoekranowego, responsywnego menu mobilnego (hamburger menu) - Przeniesienie przycisków akcji (Reset, Cofnij) do komponentu StatusPanel - Nowy układ panelu statusu (połączone statystyki i akcje w jednym szklanym panelu) - Usunięcie przestarzałych komponentów (GameActions, LevelSelector) - Poprawki wizualne i stylowe (glassmorphism, animacje przejść)
This commit is contained in:
@@ -82,7 +82,7 @@ define(['./workbox-5a5d9309'], (function (workbox) { 'use strict';
|
||||
"revision": "3ca0b8505b4bec776b69afdba2768812"
|
||||
}, {
|
||||
"url": "index.html",
|
||||
"revision": "0.vhao5e6obe8"
|
||||
"revision": "0.eh0stsihuc8"
|
||||
}], {});
|
||||
workbox.cleanupOutdatedCaches();
|
||||
workbox.registerRoute(new workbox.NavigationRoute(workbox.createHandlerBoundToURL("index.html"), {
|
||||
|
||||
17
package-lock.json
generated
17
package-lock.json
generated
@@ -9,6 +9,8 @@
|
||||
"version": "1.0.0",
|
||||
"dependencies": {
|
||||
"fireworks-js": "^2.10.8",
|
||||
"flag-icons": "^7.5.0",
|
||||
"lucide-vue-next": "^0.563.0",
|
||||
"pinia": "^2.1.7",
|
||||
"vue": "^3.4.19"
|
||||
},
|
||||
@@ -3434,6 +3436,12 @@
|
||||
"integrity": "sha512-UZNxeJvRmQzLisN4iriWXqKojG9TDJqc0dPmkUw0/+AEQQ3w8z1Jx2YdFSiBGSVb/u4dPTQXU109GMVblzhfpg==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/flag-icons": {
|
||||
"version": "7.5.0",
|
||||
"resolved": "https://registry.npmjs.org/flag-icons/-/flag-icons-7.5.0.tgz",
|
||||
"integrity": "sha512-kd+MNXviFIg5hijH766tt+3x76ele1AXlo4zDdCxIvqWZhKt4T83bOtxUOOMlTx/EcFdUMH5yvQgYlFh1EqqFg==",
|
||||
"license": "MIT"
|
||||
},
|
||||
"node_modules/for-each": {
|
||||
"version": "0.3.5",
|
||||
"resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.5.tgz",
|
||||
@@ -4349,6 +4357,15 @@
|
||||
"yallist": "^3.0.2"
|
||||
}
|
||||
},
|
||||
"node_modules/lucide-vue-next": {
|
||||
"version": "0.563.0",
|
||||
"resolved": "https://registry.npmjs.org/lucide-vue-next/-/lucide-vue-next-0.563.0.tgz",
|
||||
"integrity": "sha512-zsE/lCKtmaa7bGfhSpN84br1K9YoQ5pCN+2oKWjQQG3Lo6ufUUKBuHSjNFI6RvUevxaajNXb8XwFUKeTXG3sIA==",
|
||||
"license": "ISC",
|
||||
"peerDependencies": {
|
||||
"vue": ">=3.0.1"
|
||||
}
|
||||
},
|
||||
"node_modules/magic-string": {
|
||||
"version": "0.30.21",
|
||||
"resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.21.tgz",
|
||||
|
||||
@@ -9,6 +9,8 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"fireworks-js": "^2.10.8",
|
||||
"flag-icons": "^7.5.0",
|
||||
"lucide-vue-next": "^0.563.0",
|
||||
"pinia": "^2.1.7",
|
||||
"vue": "^3.4.19"
|
||||
},
|
||||
|
||||
468
src/App.vue
468
src/App.vue
@@ -3,9 +3,8 @@ import { computed, onMounted, onUnmounted, ref } from 'vue';
|
||||
import { usePuzzleStore } from './stores/puzzle';
|
||||
import { useI18n } from './composables/useI18n';
|
||||
import GameBoard from './components/GameBoard.vue';
|
||||
import LevelSelector from './components/LevelSelector.vue';
|
||||
import NavBar from './components/NavBar.vue';
|
||||
import StatusPanel from './components/StatusPanel.vue';
|
||||
import GameActions from './components/GameActions.vue';
|
||||
import GuidePanel from './components/GuidePanel.vue';
|
||||
import WinModal from './components/WinModal.vue';
|
||||
import CustomGameModal from './components/CustomGameModal.vue';
|
||||
@@ -22,88 +21,8 @@ const installDismissed = ref(false);
|
||||
const isCoarsePointer = ref(false);
|
||||
const isStandalone = ref(false);
|
||||
const themePreference = ref('system');
|
||||
const isLangOpen = ref(false);
|
||||
const langMenuRef = ref(null);
|
||||
let displayModeMedia = null;
|
||||
let prefersColorSchemeMedia = null;
|
||||
const flagModules = import.meta.glob('./assets/flags/*.svg', { eager: true, as: 'url' });
|
||||
const flagMap = Object.fromEntries(
|
||||
Object.entries(flagModules).map(([path, url]) => [path.split('/').pop().replace('.svg', ''), url])
|
||||
);
|
||||
const flagAliases = {
|
||||
'pt-br': 'pt',
|
||||
'pt-pt': 'pt',
|
||||
'fr-ca': 'fr',
|
||||
'nl-be': 'nl',
|
||||
'es-es': 'es',
|
||||
'es-419': 'es',
|
||||
'zh-hans': 'zh',
|
||||
'zh-hant': 'zh'
|
||||
};
|
||||
const getFlagUrl = (code) => {
|
||||
const base = flagAliases[code] || code;
|
||||
return flagMap[base] || flagMap['globe'] || null;
|
||||
};
|
||||
|
||||
const languageFlags = {
|
||||
en: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="16" fill="#b22234"/><rect y="2" width="24" height="2" fill="#fff"/><rect y="6" width="24" height="2" fill="#fff"/><rect y="10" width="24" height="2" fill="#fff"/><rect y="14" width="24" height="2" fill="#fff"/><rect width="10" height="8" fill="#3c3b6e"/></svg>',
|
||||
zh: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="16" fill="#de2910"/><circle cx="6" cy="5" r="2" fill="#ffde00"/></svg>',
|
||||
hi: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="16" fill="#ffffff"/><rect width="24" height="5.33" fill="#ff9933"/><rect y="10.67" width="24" height="5.33" fill="#128807"/><circle cx="12" cy="8" r="2" fill="#000080"/></svg>',
|
||||
es: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="16" fill="#aa151b"/><rect y="4" width="24" height="8" fill="#f1bf00"/></svg>',
|
||||
fr: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="8" height="16" fill="#0055a4"/><rect x="8" width="8" height="16" fill="#ffffff"/><rect x="16" width="8" height="16" fill="#ef4135"/></svg>',
|
||||
ar: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="16" fill="#006c35"/><rect y="11" width="24" height="3" fill="#ffffff"/></svg>',
|
||||
bn: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="16" fill="#006a4e"/><circle cx="11" cy="8" r="4" fill="#f42a41"/></svg>',
|
||||
ru: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="16" fill="#ffffff"/><rect y="5.33" width="24" height="5.33" fill="#0039a6"/><rect y="10.67" width="24" height="5.33" fill="#d52b1e"/></svg>',
|
||||
pt: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="9" height="16" fill="#006600"/><rect x="9" width="15" height="16" fill="#ff0000"/><circle cx="9.5" cy="8" r="2.5" fill="#ffcc00"/></svg>',
|
||||
ur: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="16" fill="#01411c"/><rect width="6" height="16" fill="#ffffff"/><circle cx="15" cy="8" r="3" fill="#ffffff"/></svg>',
|
||||
pl: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="16" fill="#ffffff"/><rect y="8" width="24" height="8" fill="#dc143c"/></svg>',
|
||||
de: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="5.33" fill="#000"/><rect y="5.33" width="24" height="5.33" fill="#dd0000"/><rect y="10.67" width="24" height="5.33" fill="#ffce00"/></svg>',
|
||||
it: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="8" height="16" fill="#009246"/><rect x="8" width="8" height="16" fill="#ffffff"/><rect x="16" width="8" height="16" fill="#ce2b37"/></svg>',
|
||||
nl: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="5.33" fill="#ae1c28"/><rect y="5.33" width="24" height="5.33" fill="#fff"/><rect y="10.67" width="24" height="5.33" fill="#21468b"/></svg>',
|
||||
sv: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="16" fill="#006aa7"/><rect x="6" width="3" height="16" fill="#fecc00"/><rect y="7" width="24" height="3" fill="#fecc00"/></svg>',
|
||||
da: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="16" fill="#c8102e"/><rect x="6" width="2" height="16" fill="#fff"/><rect y="7" width="24" height="2" fill="#fff"/></svg>',
|
||||
fi: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="16" fill="#fff"/><rect x="6" width="3" height="16" fill="#003580"/><rect y="7" width="24" height="3" fill="#003580"/></svg>',
|
||||
no: '<svg viewBox=\"0 0 24 16\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"24\" height=\"16\" fill=\"#ba0c2f\"/><rect x=\"6\" width=\"2\" height=\"16\" fill=\"#fff\"/><rect y=\"7\" width=\"24\" height=\"2\" fill=\"#fff\"/><rect x=\"7\" width=\"1\" height=\"16\" fill=\"#00205b\"/><rect y=\"8\" width=\"24\" height=\"1\" fill=\"#00205b\"/></svg>',
|
||||
cs: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="5.33" fill="#fff"/><rect y="5.33" width="24" height="5.33" fill="#11457e"/><rect y="10.67" width="24" height="5.33" fill="#d7141a"/></svg>',
|
||||
sk: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="5.33" fill="#fff"/><rect y="5.33" width="24" height="5.33" fill="#0b4ea2"/><rect y="10.67" width="24" height="5.33" fill="#ee1c25"/></svg>',
|
||||
hu: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="5.33" fill="#cd2a3e"/><rect y="5.33" width="24" height="5.33" fill="#fff"/><rect y="10.67" width="24" height="5.33" fill="#436f4d"/></svg>',
|
||||
ro: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="8" height="16" fill="#002b7f"/><rect x="8" width="8" height="16" fill="#fcd116"/><rect x="16" width="8" height="16" fill="#ce1126"/></svg>',
|
||||
bg: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="5.33" fill="#fff"/><rect y="5.33" width="24" height="5.33" fill="#00966e"/><rect y="10.67" width="24" height="5.33" fill="#d62612"/></svg>',
|
||||
el: '<svg viewBox=\"0 0 24 16\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"24\" height=\"16\" fill=\"#0d5eaf\"/><rect y=\"2\" width=\"24\" height=\"2\" fill=\"#fff\"/><rect y=\"6\" width=\"24\" height=\"2\" fill=\"#fff\"/><rect y=\"10\" width=\"24\" height=\"2\" fill=\"#fff\"/><rect y=\"14\" width=\"24\" height=\"2\" fill=\"#fff\"/></svg>',
|
||||
uk: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="8" fill="#0057b8"/><rect y="8" width="24" height="8" fill="#ffd700"/></svg>',
|
||||
be: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="8" height="16" fill="#000"/><rect x="8" width="8" height="16" fill="#fecc00"/><rect x="16" width="8" height="16" fill="#ed1c24"/></svg>',
|
||||
sr: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="5.33" fill="#ed1c24"/><rect y="5.33" width="24" height="5.33" fill="#0b4ea2"/><rect y="10.67" width="24" height="5.33" fill="#fff"/></svg>',
|
||||
hr: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="5.33" fill="#ff0000"/><rect y="5.33" width="24" height="5.33" fill="#fff"/><rect y="10.67" width="24" height="5.33" fill="#0000ff"/></svg>',
|
||||
sl: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="5.33" fill="#fff"/><rect y="5.33" width="24" height="5.33" fill="#0038a8"/><rect y="10.67" width="24" height="5.33" fill="#d40000"/></svg>',
|
||||
lt: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="5.33" fill="#ffb81c"/><rect y="5.33" width="24" height="5.33" fill="#006a44"/><rect y="10.67" width="24" height="5.33" fill="#c1272d"/></svg>',
|
||||
lv: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="6" fill="#8b1a1a"/><rect y="6" width="24" height="4" fill="#fff"/><rect y="10" width="24" height="6" fill="#8b1a1a"/></svg>',
|
||||
et: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="5.33" fill="#0072ce"/><rect y="5.33" width="24" height="5.33" fill="#000"/><rect y="10.67" width="24" height="5.33" fill="#fff"/></svg>',
|
||||
ga: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="8" height="16" fill="#169b62"/><rect x="8" width="8" height="16" fill="#fff"/><rect x="16" width="8" height="16" fill="#ff883e"/></svg>',
|
||||
is: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="16" fill="#003897"/><rect x="6" width="2" height="16" fill="#fff"/><rect y="7" width="24" height="2" fill="#fff"/><rect x="7" width="1" height="16" fill="#d72828"/><rect y="8" width="24" height="1" fill="#d72828"/></svg>',
|
||||
mt: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="12" height="16" fill="#fff"/><rect x="12" width="12" height="16" fill="#cf142b"/></svg>',
|
||||
sq: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="16" fill="#e41e20"/></svg>',
|
||||
mk: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="16" fill="#d20000"/><circle cx="12" cy="8" r="3" fill="#ffe600"/></svg>',
|
||||
bs: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="16" fill="#002f6c"/><rect y="10" width="24" height="6" fill="#fcd116"/></svg>',
|
||||
tr: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="16" fill="#e30a17"/></svg>',
|
||||
ca: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="2" fill="#f1c40f"/><rect y="2" width="24" height="2" fill="#e74c3c"/><rect y="4" width="24" height="2" fill="#f1c40f"/><rect y="6" width="24" height="2" fill="#e74c3c"/><rect y="8" width="24" height="2" fill="#f1c40f"/><rect y="10" width="24" height="2" fill="#e74c3c"/><rect y="12" width="24" height="2" fill="#f1c40f"/><rect y="14" width="24" height="2" fill="#e74c3c"/></svg>',
|
||||
gl: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="16" fill="#ffffff"/><rect y="6" width="24" height="4" fill="#00a3e8"/></svg>',
|
||||
cy: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="8" fill="#ffffff"/><rect y="8" width="24" height="8" fill="#007a3d"/></svg>',
|
||||
gd: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="16" fill="#0065bd"/></svg>',
|
||||
eu: '<svg viewBox="0 0 24 16" xmlns="http://www.w3.org/2000/svg"><rect width="24" height="16" fill="#d52b1e"/><rect y="7" width="24" height="2" fill="#fff"/><rect x="11" width="2" height="16" fill="#fff"/><rect x="11" width="2" height="16" fill="#2e8b57"/></svg>'
|
||||
};
|
||||
|
||||
const languages = computed(() => {
|
||||
return locales.value
|
||||
.map((code) => ({ code, label: t(`language.${code}`) }))
|
||||
.sort((a, b) => a.label.localeCompare(b.label, locale.value));
|
||||
});
|
||||
|
||||
const searchTerm = ref('');
|
||||
const filteredLanguages = computed(() => {
|
||||
const q = searchTerm.value.trim().toLowerCase();
|
||||
if (!q) return languages.value;
|
||||
return languages.value.filter((l) => l.label.toLowerCase().includes(q) || l.code.includes(q));
|
||||
});
|
||||
|
||||
const installLabel = computed(() => {
|
||||
return isCoarsePointer.value ? t('pwa.installMobile') : t('pwa.installDesktop');
|
||||
@@ -165,24 +84,6 @@ const handleSystemThemeChange = () => {
|
||||
}
|
||||
};
|
||||
|
||||
const selectLanguage = (value) => {
|
||||
setLocale(value);
|
||||
isLangOpen.value = false;
|
||||
};
|
||||
|
||||
const handleOutsideClick = (event) => {
|
||||
if (!langMenuRef.value) return;
|
||||
if (!langMenuRef.value.contains(event.target)) {
|
||||
isLangOpen.value = false;
|
||||
}
|
||||
};
|
||||
|
||||
const handleKeydown = (e) => {
|
||||
if (e.key === 'Escape') {
|
||||
isLangOpen.value = false;
|
||||
}
|
||||
};
|
||||
|
||||
onMounted(() => {
|
||||
if (!store.loadState()) {
|
||||
store.initGame(); // Inicjalizacja domyślnej gry jeśli brak zapisu
|
||||
@@ -209,8 +110,6 @@ onMounted(() => {
|
||||
} else if (displayModeMedia?.addListener) {
|
||||
displayModeMedia.addListener(updateStandalone);
|
||||
}
|
||||
document.addEventListener('click', handleOutsideClick);
|
||||
document.addEventListener('keydown', handleKeydown);
|
||||
}
|
||||
});
|
||||
|
||||
@@ -228,72 +127,17 @@ onUnmounted(() => {
|
||||
} else if (displayModeMedia?.removeListener) {
|
||||
displayModeMedia.removeListener(updateStandalone);
|
||||
}
|
||||
document.removeEventListener('click', handleOutsideClick);
|
||||
document.removeEventListener('keydown', handleKeydown);
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<main class="game-container">
|
||||
<FixedBar />
|
||||
|
||||
<header class="game-header">
|
||||
<h1>{{ t('app.title') }}</h1>
|
||||
<div class="header-toggles">
|
||||
<div class="lang-dropdown" ref="langMenuRef">
|
||||
<button
|
||||
class="lang-trigger"
|
||||
type="button"
|
||||
:aria-label="t('language.label')"
|
||||
:aria-expanded="isLangOpen"
|
||||
@click="isLangOpen = !isLangOpen"
|
||||
>
|
||||
<span class="lang-flag">
|
||||
<img v-if="getFlagUrl(locale)" :src="getFlagUrl(locale)" alt="" />
|
||||
<span v-else v-html="languageFlags[locale]"></span>
|
||||
</span>
|
||||
</button>
|
||||
<div v-if="isLangOpen" class="lang-menu">
|
||||
<div class="lang-search">
|
||||
<input
|
||||
class="lang-search-input"
|
||||
type="text"
|
||||
:placeholder="t('language.searchPlaceholder')"
|
||||
:aria-label="t('language.searchLabel')"
|
||||
v-model="searchTerm"
|
||||
<NavBar
|
||||
@open-custom="showCustomModal = true"
|
||||
@toggle-guide="showGuide = !showGuide"
|
||||
@set-theme="setThemePreference"
|
||||
/>
|
||||
</div>
|
||||
<button
|
||||
v-for="lang in filteredLanguages"
|
||||
:key="lang.code"
|
||||
class="lang-option"
|
||||
:class="{ active: locale === lang.code }"
|
||||
type="button"
|
||||
@click="selectLanguage(lang.code)"
|
||||
>
|
||||
<span class="lang-flag">
|
||||
<img v-if="getFlagUrl(lang.code)" :src="getFlagUrl(lang.code)" alt="" />
|
||||
<span v-else v-html="languageFlags[lang.code]"></span>
|
||||
</span>
|
||||
<span class="lang-name">{{ lang.label }}</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="theme-toggle">
|
||||
<span class="theme-label">{{ t('theme.label') }}</span>
|
||||
<button class="theme-btn" :class="{ active: themePreference === 'system' }" @click="setThemePreference('system')">
|
||||
{{ t('theme.system') }}
|
||||
</button>
|
||||
<button class="theme-btn" :class="{ active: themePreference === 'light' }" @click="setThemePreference('light')">
|
||||
{{ t('theme.light') }}
|
||||
</button>
|
||||
<button class="theme-btn" :class="{ active: themePreference === 'dark' }" @click="setThemePreference('dark')">
|
||||
{{ t('theme.dark') }}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
<div class="underline"></div>
|
||||
</header>
|
||||
<FixedBar />
|
||||
|
||||
<div v-if="canInstall && !installDismissed" class="install-banner">
|
||||
<div class="install-text">{{ t('pwa.installTitle') }}</div>
|
||||
@@ -306,12 +150,6 @@ onUnmounted(() => {
|
||||
</div>
|
||||
|
||||
<div class="game-layout">
|
||||
<!-- Level Selection -->
|
||||
<LevelSelector
|
||||
@open-custom="showCustomModal = true"
|
||||
@toggle-guide="showGuide = !showGuide"
|
||||
/>
|
||||
|
||||
<!-- Guide Panel (Conditional) -->
|
||||
<transition name="fade">
|
||||
<GuidePanel v-if="showGuide" />
|
||||
@@ -320,9 +158,6 @@ onUnmounted(() => {
|
||||
<!-- Status Panel (Time, Moves, Progress) -->
|
||||
<StatusPanel />
|
||||
|
||||
<!-- Game Actions (Reset, Random, Undo, Check) -->
|
||||
<GameActions />
|
||||
|
||||
<!-- Game Board -->
|
||||
<section class="board-section">
|
||||
<GameBoard />
|
||||
@@ -347,285 +182,60 @@ onUnmounted(() => {
|
||||
padding-bottom: 50px;
|
||||
}
|
||||
|
||||
.game-header {
|
||||
text-align: center;
|
||||
margin-bottom: 30px;
|
||||
margin-top: 40px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
font-size: 3.5rem;
|
||||
margin: 0;
|
||||
letter-spacing: 5px;
|
||||
font-weight: 300;
|
||||
color: var(--text-strong);
|
||||
text-shadow: 0 0 20px var(--title-glow);
|
||||
}
|
||||
|
||||
.underline {
|
||||
width: 100px;
|
||||
height: 3px;
|
||||
background: var(--primary-accent);
|
||||
margin: 10px auto 0;
|
||||
box-shadow: 0 0 10px var(--primary-accent);
|
||||
}
|
||||
|
||||
.header-toggles {
|
||||
.install-banner {
|
||||
background: rgba(0, 242, 254, 0.1);
|
||||
border: 1px solid var(--primary-neon);
|
||||
border-radius: 8px;
|
||||
padding: 10px 20px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
width: 90%;
|
||||
max-width: 600px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.install-text {
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.install-actions {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 10px;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
margin-top: 12px;
|
||||
}
|
||||
|
||||
.lang-dropdown {
|
||||
position: relative;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.lang-trigger {
|
||||
background: var(--toggle-bg);
|
||||
border: 1px solid var(--toggle-border);
|
||||
box-shadow: var(--toggle-shadow);
|
||||
border-radius: 999px;
|
||||
width: 38px;
|
||||
height: 38px;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.lang-trigger:hover {
|
||||
border-color: var(--toggle-hover-border);
|
||||
}
|
||||
|
||||
.lang-menu {
|
||||
position: absolute;
|
||||
top: calc(100% + 8px);
|
||||
left: 0;
|
||||
min-width: 170px;
|
||||
background: var(--fixed-bar-bg);
|
||||
border: 1px solid var(--fixed-bar-border);
|
||||
box-shadow: var(--fixed-bar-shadow);
|
||||
border-radius: 16px;
|
||||
padding: 8px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 6px;
|
||||
z-index: 10;
|
||||
opacity: 1;
|
||||
max-height: 70vh;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.lang-search {
|
||||
display: flex;
|
||||
padding: 6px;
|
||||
}
|
||||
|
||||
.lang-search-input {
|
||||
width: 100%;
|
||||
padding: 8px 10px;
|
||||
border: 1px solid var(--toggle-btn-border);
|
||||
border-radius: 10px;
|
||||
background: var(--toggle-bg);
|
||||
color: var(--text-strong);
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.lang-option {
|
||||
.install-close {
|
||||
background: transparent;
|
||||
border: 1px solid var(--toggle-btn-border);
|
||||
color: var(--text-strong);
|
||||
padding: 6px 10px;
|
||||
border-radius: 12px;
|
||||
font-size: 0.85rem;
|
||||
letter-spacing: 0.5px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
border: none;
|
||||
color: #aaa;
|
||||
font-size: 1.5rem;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s ease;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.lang-option:hover {
|
||||
border-color: var(--toggle-hover-border);
|
||||
}
|
||||
|
||||
.lang-option.active {
|
||||
border-color: var(--primary-accent);
|
||||
box-shadow: var(--toggle-active-shadow);
|
||||
}
|
||||
|
||||
.lang-flag {
|
||||
width: 24px;
|
||||
height: 16px;
|
||||
display: inline-flex;
|
||||
}
|
||||
|
||||
.lang-flag svg {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: block;
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
.lang-name {
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
.theme-toggle {
|
||||
display: inline-flex;
|
||||
gap: 8px;
|
||||
align-items: center;
|
||||
padding: 6px 10px;
|
||||
border-radius: 999px;
|
||||
background: var(--toggle-bg);
|
||||
border: 1px solid var(--toggle-border);
|
||||
box-shadow: var(--toggle-shadow);
|
||||
}
|
||||
|
||||
.theme-label {
|
||||
font-size: 0.75rem;
|
||||
letter-spacing: 1px;
|
||||
text-transform: uppercase;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.theme-btn {
|
||||
background: transparent;
|
||||
border: 1px solid var(--toggle-btn-border);
|
||||
color: var(--text-strong);
|
||||
padding: 4px 10px;
|
||||
border-radius: 999px;
|
||||
font-size: 0.75rem;
|
||||
letter-spacing: 1px;
|
||||
cursor: pointer;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.theme-btn.active {
|
||||
border-color: var(--primary-accent);
|
||||
box-shadow: var(--toggle-active-shadow);
|
||||
}
|
||||
|
||||
.theme-btn:hover {
|
||||
border-color: var(--toggle-hover-border);
|
||||
}
|
||||
|
||||
.game-layout {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
align-items: center;
|
||||
gap: 20px;
|
||||
width: 100%;
|
||||
max-width: 900px;
|
||||
align-items: center;
|
||||
max-width: 1200px;
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
.install-banner {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 16px;
|
||||
padding: 12px 16px;
|
||||
border-radius: 16px;
|
||||
background: var(--banner-bg);
|
||||
border: 1px solid var(--banner-border);
|
||||
box-shadow: var(--banner-shadow);
|
||||
width: min(680px, 92vw);
|
||||
margin: -10px 0 20px;
|
||||
}
|
||||
|
||||
.install-text {
|
||||
color: var(--text-secondary);
|
||||
font-size: 0.95rem;
|
||||
letter-spacing: 0.5px;
|
||||
}
|
||||
|
||||
.install-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.install-btn {
|
||||
padding: 8px 16px;
|
||||
font-size: 0.85rem;
|
||||
}
|
||||
|
||||
.install-close {
|
||||
background: transparent;
|
||||
border: 1px solid var(--toggle-btn-border);
|
||||
color: var(--text-strong);
|
||||
width: 32px;
|
||||
height: 32px;
|
||||
border-radius: 999px;
|
||||
cursor: pointer;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
font-size: 1.1rem;
|
||||
line-height: 1;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.install-close:hover {
|
||||
border-color: var(--toggle-hover-border);
|
||||
}
|
||||
|
||||
/* Remove old glass panel style from game-layout since we split it */
|
||||
.board-section {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
margin-top: 10px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.game-header {
|
||||
margin-top: 20px;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
h1 {
|
||||
font-size: 2.4rem;
|
||||
letter-spacing: 3px;
|
||||
}
|
||||
.lang-menu {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
width: 100vw;
|
||||
min-width: 0;
|
||||
z-index: 1005;
|
||||
max-height: none;
|
||||
padding: 16px;
|
||||
border-radius: 0;
|
||||
}
|
||||
.lang-search {
|
||||
position: sticky;
|
||||
top: 0;
|
||||
padding: 8px 0 12px 0;
|
||||
background: var(--fixed-bar-bg);
|
||||
}
|
||||
.lang-option {
|
||||
font-size: 1rem;
|
||||
padding: 10px 12px;
|
||||
}
|
||||
.fade-enter-active,
|
||||
.fade-leave-active {
|
||||
transition: opacity 0.3s ease;
|
||||
}
|
||||
|
||||
@media (max-width: 420px) {
|
||||
h1 {
|
||||
font-size: 2rem;
|
||||
letter-spacing: 2px;
|
||||
}
|
||||
.lang-menu {
|
||||
width: 100vw;
|
||||
}
|
||||
.fade-enter-from,
|
||||
.fade-leave-to {
|
||||
opacity: 0;
|
||||
}
|
||||
</style>
|
||||
@@ -1,48 +0,0 @@
|
||||
<script setup>
|
||||
import { usePuzzleStore } from '@/stores/puzzle';
|
||||
import { useI18n } from '@/composables/useI18n';
|
||||
|
||||
const store = usePuzzleStore();
|
||||
const { t } = useI18n();
|
||||
|
||||
function handleNewRandom() {
|
||||
// If currently custom, regenerate custom.
|
||||
// If not custom, switch to custom with current size?
|
||||
// Or maybe just re-init current level if it's not custom?
|
||||
// "NOWA LOSOWA" implies random.
|
||||
// If user is on Easy/Medium/Hard, "Random" might mean "Random predefined" or "Random generated".
|
||||
// Let's assume it generates a new random grid of current size.
|
||||
store.initCustomGame(store.size);
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="game-actions">
|
||||
<button class="btn-neon secondary" @click="store.resetGame">{{ t('actions.reset') }}</button>
|
||||
<button class="btn-neon secondary" @click="handleNewRandom">{{ t('actions.random') }}</button>
|
||||
<button class="btn-neon secondary" @click="store.undo">{{ t('actions.undo') }}</button>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.game-actions {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 15px;
|
||||
justify-content: center;
|
||||
margin-bottom: 30px;
|
||||
}
|
||||
|
||||
.btn-neon.secondary {
|
||||
border-color: var(--button-secondary-border);
|
||||
color: var(--button-secondary-text);
|
||||
font-size: 0.9rem;
|
||||
padding: 10px 25px;
|
||||
}
|
||||
|
||||
.btn-neon.secondary:hover {
|
||||
background: var(--button-secondary-hover-bg);
|
||||
border-color: var(--button-secondary-hover-border);
|
||||
color: var(--button-secondary-hover-text);
|
||||
}
|
||||
</style>
|
||||
@@ -32,12 +32,13 @@ defineProps({
|
||||
v-for="(group, index) in hints"
|
||||
:key="index"
|
||||
class="hint-group"
|
||||
:class="{ 'hint-alt': index % 2 !== 0, 'is-active': index === activeIndex }"
|
||||
:class="{ 'is-active': index === activeIndex }"
|
||||
>
|
||||
<span
|
||||
v-for="(num, idx) in group"
|
||||
:key="idx"
|
||||
class="hint-num"
|
||||
:class="{ 'hint-alt': idx % 2 !== 0 }"
|
||||
>
|
||||
{{ num }}
|
||||
</span>
|
||||
@@ -94,8 +95,8 @@ defineProps({
|
||||
padding: 2px;
|
||||
}
|
||||
|
||||
/* Alternating Colors */
|
||||
.hint-group.hint-alt .hint-num {
|
||||
/* Alternating Colors within the group */
|
||||
.hint-num.hint-alt {
|
||||
color: var(--accent-cyan);
|
||||
}
|
||||
|
||||
|
||||
@@ -1,67 +0,0 @@
|
||||
<script setup>
|
||||
import { computed } from 'vue';
|
||||
import { usePuzzleStore } from '@/stores/puzzle';
|
||||
import { useI18n } from '@/composables/useI18n';
|
||||
|
||||
const store = usePuzzleStore();
|
||||
const { t } = useI18n();
|
||||
|
||||
const levels = computed(() => [
|
||||
{ id: 'easy', label: t('level.easy') },
|
||||
{ id: 'medium', label: t('level.medium') },
|
||||
{ id: 'hard', label: t('level.hard') }
|
||||
]);
|
||||
|
||||
const emit = defineEmits(['open-custom', 'toggle-guide']);
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div class="level-selector">
|
||||
<button
|
||||
v-for="lvl in levels"
|
||||
:key="lvl.id"
|
||||
class="btn-neon"
|
||||
:class="{ active: store.currentLevelId === lvl.id }"
|
||||
@click="store.initGame(lvl.id)"
|
||||
>
|
||||
{{ lvl.label }}
|
||||
</button>
|
||||
|
||||
<button
|
||||
class="btn-neon"
|
||||
:class="{ active: store.currentLevelId === 'custom' }"
|
||||
@click="emit('open-custom')"
|
||||
>
|
||||
{{ t('level.custom') }}
|
||||
</button>
|
||||
|
||||
<button
|
||||
class="btn-neon guide-btn"
|
||||
@click="emit('toggle-guide')"
|
||||
>
|
||||
{{ t('level.guide') }}
|
||||
</button>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.level-selector {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
gap: 15px;
|
||||
justify-content: center;
|
||||
margin-bottom: 20px;
|
||||
}
|
||||
|
||||
.btn-neon {
|
||||
padding: 10px 20px;
|
||||
border-radius: 20px;
|
||||
text-transform: uppercase;
|
||||
font-size: 0.9rem;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
.guide-btn {
|
||||
/* Specific styling for guide if needed */
|
||||
}
|
||||
</style>
|
||||
654
src/components/NavBar.vue
Normal file
654
src/components/NavBar.vue
Normal file
@@ -0,0 +1,654 @@
|
||||
<script setup>
|
||||
import { ref, computed, onMounted, onUnmounted, watch } from 'vue';
|
||||
import { usePuzzleStore } from '@/stores/puzzle';
|
||||
import { useI18n } from '@/composables/useI18n';
|
||||
import { Gamepad2, Palette, CircleHelp, Sun, Moon, Menu, X, ChevronDown, ChevronUp } from 'lucide-vue-next';
|
||||
|
||||
const store = usePuzzleStore();
|
||||
const { t, locale, setLocale, locales } = useI18n();
|
||||
|
||||
const emit = defineEmits(['open-custom', 'toggle-guide', 'set-theme']);
|
||||
|
||||
const isGameOpen = ref(false);
|
||||
const isThemeOpen = ref(false);
|
||||
const isLangOpen = ref(false);
|
||||
const isMobileMenuOpen = ref(false);
|
||||
const langMenuRef = ref(null);
|
||||
const searchTerm = ref('');
|
||||
|
||||
// Map language codes to country codes for flag-icons
|
||||
const langToCountry = {
|
||||
en: 'gb',
|
||||
zh: 'cn',
|
||||
hi: 'in',
|
||||
es: 'es',
|
||||
fr: 'fr',
|
||||
ar: 'sa',
|
||||
bn: 'bd',
|
||||
ru: 'ru',
|
||||
pt: 'pt',
|
||||
ur: 'pk',
|
||||
pl: 'pl',
|
||||
de: 'de',
|
||||
it: 'it',
|
||||
nl: 'nl',
|
||||
sv: 'se',
|
||||
da: 'dk',
|
||||
fi: 'fi',
|
||||
no: 'no',
|
||||
cs: 'cz',
|
||||
sk: 'sk',
|
||||
hu: 'hu',
|
||||
ro: 'ro',
|
||||
bg: 'bg',
|
||||
el: 'gr',
|
||||
uk: 'ua',
|
||||
be: 'by',
|
||||
sr: 'rs',
|
||||
hr: 'hr',
|
||||
sl: 'si',
|
||||
lt: 'lt',
|
||||
lv: 'lv',
|
||||
et: 'ee',
|
||||
ga: 'ie',
|
||||
is: 'is',
|
||||
mt: 'mt',
|
||||
sq: 'al',
|
||||
mk: 'mk',
|
||||
bs: 'ba',
|
||||
tr: 'tr',
|
||||
ca: 'es-ct',
|
||||
gl: 'es-ga',
|
||||
cy: 'gb-wls',
|
||||
gd: 'gb-sct',
|
||||
eu: 'es-pv'
|
||||
};
|
||||
|
||||
const getFlagClass = (code) => {
|
||||
const countryCode = langToCountry[code] || code;
|
||||
return `fi fi-${countryCode}`;
|
||||
};
|
||||
|
||||
const languages = computed(() => {
|
||||
return locales.value
|
||||
.map((code) => ({ code, label: t(`language.${code}`) }))
|
||||
.sort((a, b) => a.label.localeCompare(b.label, locale.value));
|
||||
});
|
||||
|
||||
const filteredLanguages = computed(() => {
|
||||
const q = searchTerm.value.trim().toLowerCase();
|
||||
if (!q) return languages.value;
|
||||
return languages.value.filter((l) => l.label.toLowerCase().includes(q) || l.code.includes(q));
|
||||
});
|
||||
|
||||
const levels = computed(() => [
|
||||
{ id: 'easy', label: t('level.easy') },
|
||||
{ id: 'medium', label: t('level.medium') },
|
||||
{ id: 'hard', label: t('level.hard') }
|
||||
]);
|
||||
|
||||
const closeMobileMenu = () => {
|
||||
isMobileMenuOpen.value = false;
|
||||
};
|
||||
|
||||
const toggleGameMenu = () => {
|
||||
isGameOpen.value = !isGameOpen.value;
|
||||
if (isGameOpen.value) {
|
||||
isThemeOpen.value = false;
|
||||
isLangOpen.value = false;
|
||||
}
|
||||
};
|
||||
|
||||
const toggleThemeMenu = () => {
|
||||
isThemeOpen.value = !isThemeOpen.value;
|
||||
if (isThemeOpen.value) {
|
||||
isGameOpen.value = false;
|
||||
isLangOpen.value = false;
|
||||
}
|
||||
};
|
||||
|
||||
const toggleLangMenu = () => {
|
||||
isLangOpen.value = !isLangOpen.value;
|
||||
if (isLangOpen.value) {
|
||||
isGameOpen.value = false;
|
||||
isThemeOpen.value = false;
|
||||
}
|
||||
};
|
||||
|
||||
const selectLevel = (id) => {
|
||||
store.initGame(id);
|
||||
isGameOpen.value = false;
|
||||
closeMobileMenu();
|
||||
};
|
||||
|
||||
const openCustom = () => {
|
||||
emit('open-custom');
|
||||
isGameOpen.value = false;
|
||||
closeMobileMenu();
|
||||
};
|
||||
|
||||
const setTheme = (theme) => {
|
||||
emit('set-theme', theme);
|
||||
isThemeOpen.value = false;
|
||||
closeMobileMenu();
|
||||
};
|
||||
|
||||
const selectLanguage = (value) => {
|
||||
setLocale(value);
|
||||
isLangOpen.value = false;
|
||||
closeMobileMenu();
|
||||
};
|
||||
|
||||
const toggleGuide = () => {
|
||||
emit('toggle-guide');
|
||||
closeMobileMenu();
|
||||
};
|
||||
|
||||
// Close menus when clicking outside
|
||||
const closeMenus = (e) => {
|
||||
if (isMobileMenuOpen.value) return; // Don't close desktop menus if mobile is open (handled separately)
|
||||
|
||||
if (!e.target.closest('.nav-dropdown')) {
|
||||
isGameOpen.value = false;
|
||||
isThemeOpen.value = false;
|
||||
isLangOpen.value = false;
|
||||
}
|
||||
};
|
||||
|
||||
onMounted(() => {
|
||||
document.addEventListener('click', closeMenus);
|
||||
});
|
||||
|
||||
onUnmounted(() => {
|
||||
document.removeEventListener('click', closeMenus);
|
||||
});
|
||||
|
||||
// Watch mobile menu to lock body scroll
|
||||
watch(isMobileMenuOpen, (val) => {
|
||||
if (val) {
|
||||
document.body.style.overflow = 'hidden';
|
||||
} else {
|
||||
document.body.style.overflow = '';
|
||||
}
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<nav class="navbar">
|
||||
<div class="nav-left">
|
||||
<h1 class="app-title">{{ t('app.title') }}</h1>
|
||||
</div>
|
||||
|
||||
<!-- Mobile Hamburger -->
|
||||
<button class="btn-neon nav-btn icon-only mobile-only" @click="isMobileMenuOpen = true">
|
||||
<Menu :size="24" />
|
||||
</button>
|
||||
|
||||
<div class="nav-container desktop-only">
|
||||
<!-- Game Menu -->
|
||||
<div class="nav-dropdown">
|
||||
<button class="btn-neon nav-btn" @click.stop="toggleGameMenu">
|
||||
<Gamepad2 :size="18" /> NEW GAME
|
||||
</button>
|
||||
<transition name="slide-fade">
|
||||
<div v-if="isGameOpen" class="dropdown-menu">
|
||||
<button
|
||||
v-for="lvl in levels"
|
||||
:key="lvl.id"
|
||||
class="dropdown-item"
|
||||
@click="selectLevel(lvl.id)"
|
||||
>
|
||||
{{ lvl.label }}
|
||||
</button>
|
||||
<button class="dropdown-item" @click="openCustom">
|
||||
{{ t('level.custom') }}
|
||||
</button>
|
||||
</div>
|
||||
</transition>
|
||||
</div>
|
||||
|
||||
<!-- Theme Menu -->
|
||||
<div class="nav-dropdown">
|
||||
<button class="btn-neon nav-btn" @click.stop="toggleThemeMenu">
|
||||
<Palette :size="18" /> Theme
|
||||
</button>
|
||||
<transition name="slide-fade">
|
||||
<div v-if="isThemeOpen" class="dropdown-menu theme-menu">
|
||||
<button class="dropdown-item" @click="setTheme('light')">
|
||||
<Sun :size="16" /> Light
|
||||
</button>
|
||||
<button class="dropdown-item" @click="setTheme('dark')">
|
||||
<Moon :size="16" /> Dark
|
||||
</button>
|
||||
</div>
|
||||
</transition>
|
||||
</div>
|
||||
|
||||
<!-- Guide Button -->
|
||||
<button class="btn-neon nav-btn" @click="toggleGuide">
|
||||
<CircleHelp :size="18" /> GUIDE
|
||||
</button>
|
||||
|
||||
<!-- Language Menu -->
|
||||
<div class="nav-dropdown">
|
||||
<button class="btn-neon nav-btn icon-only flag-btn" @click.stop="toggleLangMenu">
|
||||
<span class="lang-flag-current">
|
||||
<span :class="getFlagClass(locale)"></span>
|
||||
</span>
|
||||
</button>
|
||||
<transition name="slide-fade">
|
||||
<div v-if="isLangOpen" class="dropdown-menu lang-menu-dropdown">
|
||||
<div class="lang-search">
|
||||
<input
|
||||
class="lang-search-input"
|
||||
type="text"
|
||||
:placeholder="t('language.searchPlaceholder')"
|
||||
v-model="searchTerm"
|
||||
@click.stop
|
||||
/>
|
||||
</div>
|
||||
<div class="lang-list">
|
||||
<button
|
||||
v-for="lang in filteredLanguages"
|
||||
:key="lang.code"
|
||||
class="dropdown-item"
|
||||
:class="{ active: locale === lang.code }"
|
||||
@click="selectLanguage(lang.code)"
|
||||
>
|
||||
<span class="lang-flag-item">
|
||||
<span :class="getFlagClass(lang.code)"></span>
|
||||
</span>
|
||||
<span class="lang-name">{{ lang.label }}</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</transition>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Mobile Menu Overlay -->
|
||||
<transition name="fade">
|
||||
<div v-if="isMobileMenuOpen" class="mobile-menu-overlay">
|
||||
<div class="mobile-menu-header">
|
||||
<h2 class="mobile-title">{{ t('app.title') }}</h2>
|
||||
<button class="btn-neon nav-btn icon-only close-btn" @click="closeMobileMenu">
|
||||
<X :size="24" />
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div class="mobile-menu-items">
|
||||
<!-- Mobile Game Menu -->
|
||||
<div class="mobile-group">
|
||||
<button class="mobile-item-trigger" @click="toggleGameMenu">
|
||||
<span class="flex-center gap-10"><Gamepad2 :size="20" /> NEW GAME</span>
|
||||
<component :is="isGameOpen ? ChevronUp : ChevronDown" :size="16" />
|
||||
</button>
|
||||
<div v-if="isGameOpen" class="mobile-sub-menu">
|
||||
<button
|
||||
v-for="lvl in levels"
|
||||
:key="lvl.id"
|
||||
class="mobile-sub-item"
|
||||
@click="selectLevel(lvl.id)"
|
||||
>
|
||||
{{ lvl.label }}
|
||||
</button>
|
||||
<button class="mobile-sub-item" @click="openCustom">
|
||||
{{ t('level.custom') }}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Mobile Theme Menu -->
|
||||
<div class="mobile-group">
|
||||
<button class="mobile-item-trigger" @click="toggleThemeMenu">
|
||||
<span class="flex-center gap-10"><Palette :size="20" /> Theme</span>
|
||||
<component :is="isThemeOpen ? ChevronUp : ChevronDown" :size="16" />
|
||||
</button>
|
||||
<div v-if="isThemeOpen" class="mobile-sub-menu">
|
||||
<button class="mobile-sub-item" @click="setTheme('light')">
|
||||
<Sun :size="16" /> Light
|
||||
</button>
|
||||
<button class="mobile-sub-item" @click="setTheme('dark')">
|
||||
<Moon :size="16" /> Dark
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Mobile Guide -->
|
||||
<div class="mobile-group">
|
||||
<button class="mobile-item-trigger" @click="toggleGuide">
|
||||
<span class="flex-center gap-10"><CircleHelp :size="20" /> GUIDE</span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<!-- Mobile Language -->
|
||||
<div class="mobile-group">
|
||||
<button class="mobile-item-trigger" @click="toggleLangMenu">
|
||||
<span class="flex-center gap-10">
|
||||
<span class="lang-flag-current mobile-flag">
|
||||
<span :class="getFlagClass(locale)"></span>
|
||||
</span>
|
||||
Language
|
||||
</span>
|
||||
<component :is="isLangOpen ? ChevronUp : ChevronDown" :size="16" />
|
||||
</button>
|
||||
<div v-if="isLangOpen" class="mobile-sub-menu">
|
||||
<div class="lang-search mobile-search">
|
||||
<input
|
||||
class="lang-search-input"
|
||||
type="text"
|
||||
:placeholder="t('language.searchPlaceholder')"
|
||||
v-model="searchTerm"
|
||||
@click.stop
|
||||
/>
|
||||
</div>
|
||||
<div class="lang-list mobile-lang-list">
|
||||
<button
|
||||
v-for="lang in filteredLanguages"
|
||||
:key="lang.code"
|
||||
class="mobile-sub-item"
|
||||
:class="{ active: locale === lang.code }"
|
||||
@click="selectLanguage(lang.code)"
|
||||
>
|
||||
<span class="lang-flag-item">
|
||||
<span :class="getFlagClass(lang.code)"></span>
|
||||
</span>
|
||||
<span class="lang-name">{{ lang.label }}</span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</transition>
|
||||
</nav>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.navbar {
|
||||
width: 100%;
|
||||
padding: 15px 30px;
|
||||
background: rgba(0, 0, 0, 0.2);
|
||||
backdrop-filter: blur(10px);
|
||||
border-bottom: 1px solid rgba(0, 242, 254, 0.1);
|
||||
margin-bottom: 20px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
z-index: 100;
|
||||
position: sticky;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
.nav-left {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.app-title {
|
||||
font-size: 1.8rem;
|
||||
margin: 0;
|
||||
letter-spacing: 3px;
|
||||
font-weight: 300;
|
||||
color: var(--text-strong);
|
||||
text-shadow: 0 0 10px var(--title-glow);
|
||||
}
|
||||
|
||||
.nav-container {
|
||||
display: flex;
|
||||
gap: 20px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.nav-dropdown {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.nav-btn {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
padding: 8px 20px;
|
||||
font-size: 0.95rem;
|
||||
min-width: 120px;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.nav-btn.icon-only {
|
||||
min-width: auto;
|
||||
padding: 8px 12px;
|
||||
}
|
||||
|
||||
.nav-btn.flag-btn {
|
||||
background: transparent;
|
||||
border: none;
|
||||
box-shadow: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.nav-btn.flag-btn:hover {
|
||||
background: transparent;
|
||||
transform: scale(1.1);
|
||||
}
|
||||
|
||||
.lang-flag-current img, .lang-flag-current svg {
|
||||
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
||||
transition: box-shadow 0.3s ease;
|
||||
}
|
||||
|
||||
.nav-btn.flag-btn:hover .lang-flag-current img,
|
||||
.nav-btn.flag-btn:hover .lang-flag-current svg {
|
||||
box-shadow: 0 0 15px var(--primary-neon);
|
||||
}
|
||||
|
||||
.dropdown-menu {
|
||||
position: absolute;
|
||||
top: 100%;
|
||||
right: 0;
|
||||
margin-top: 10px;
|
||||
background: rgba(10, 10, 20, 0.95);
|
||||
border: 1px solid var(--primary-neon);
|
||||
border-radius: 8px;
|
||||
padding: 8px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
min-width: 150px;
|
||||
box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.lang-menu-dropdown {
|
||||
width: 250px;
|
||||
right: 0;
|
||||
left: auto;
|
||||
max-height: 400px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.lang-search {
|
||||
padding: 5px;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
.lang-search-input {
|
||||
width: 100%;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
border: 1px solid rgba(255, 255, 255, 0.2);
|
||||
color: #fff;
|
||||
padding: 5px 10px;
|
||||
border-radius: 4px;
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.lang-list {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 2px;
|
||||
}
|
||||
|
||||
.dropdown-item {
|
||||
background: transparent;
|
||||
border: none;
|
||||
color: #fff;
|
||||
padding: 10px 15px;
|
||||
cursor: pointer;
|
||||
text-align: left;
|
||||
border-radius: 4px;
|
||||
transition: all 0.2s ease;
|
||||
font-family: 'Segoe UI', sans-serif;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.dropdown-item:hover, .dropdown-item.active {
|
||||
background: rgba(0, 242, 254, 0.15);
|
||||
color: var(--primary-neon);
|
||||
}
|
||||
|
||||
.icon {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.lang-flag-current img, .lang-flag-item img {
|
||||
width: 24px;
|
||||
height: 16px;
|
||||
object-fit: cover;
|
||||
border-radius: 2px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.lang-flag-current svg, .lang-flag-item svg {
|
||||
width: 24px;
|
||||
height: 16px;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/* Helper */
|
||||
.flex-center { display: flex; align-items: center; }
|
||||
.gap-10 { gap: 10px; }
|
||||
|
||||
/* Desktop/Mobile Visibility */
|
||||
.desktop-only { display: flex; }
|
||||
.mobile-only { display: none; }
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.desktop-only { display: none; }
|
||||
.mobile-only { display: flex; }
|
||||
|
||||
.navbar {
|
||||
padding: 10px 20px;
|
||||
}
|
||||
}
|
||||
|
||||
/* Mobile Overlay */
|
||||
.mobile-menu-overlay {
|
||||
position: fixed;
|
||||
top: 0;
|
||||
left: 0;
|
||||
width: 100vw;
|
||||
height: 100vh;
|
||||
background: rgba(10, 10, 25, 0.98);
|
||||
backdrop-filter: blur(20px);
|
||||
z-index: 10000;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
padding: 20px;
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
.mobile-menu-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 40px;
|
||||
padding-bottom: 20px;
|
||||
border-bottom: 1px solid rgba(0, 242, 254, 0.2);
|
||||
}
|
||||
|
||||
.mobile-title {
|
||||
font-size: 1.5rem;
|
||||
color: var(--primary-neon);
|
||||
margin: 0;
|
||||
letter-spacing: 2px;
|
||||
}
|
||||
|
||||
.mobile-menu-items {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 15px;
|
||||
}
|
||||
|
||||
.mobile-group {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
border-bottom: 1px solid rgba(255, 255, 255, 0.05);
|
||||
padding-bottom: 10px;
|
||||
}
|
||||
|
||||
.mobile-item-trigger {
|
||||
background: transparent;
|
||||
border: none;
|
||||
color: #fff;
|
||||
font-size: 1.2rem;
|
||||
padding: 15px 0;
|
||||
text-align: left;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
cursor: pointer;
|
||||
text-transform: uppercase;
|
||||
letter-spacing: 1px;
|
||||
}
|
||||
|
||||
.mobile-sub-menu {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
padding-left: 15px;
|
||||
padding-bottom: 10px;
|
||||
animation: slideDown 0.3s ease-out;
|
||||
}
|
||||
|
||||
.mobile-sub-item {
|
||||
background: transparent;
|
||||
border: none;
|
||||
color: rgba(255, 255, 255, 0.7);
|
||||
padding: 10px;
|
||||
text-align: left;
|
||||
font-size: 1rem;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 10px;
|
||||
border-radius: 4px;
|
||||
}
|
||||
|
||||
.mobile-sub-item:hover, .mobile-sub-item.active {
|
||||
color: var(--primary-neon);
|
||||
background: rgba(0, 242, 254, 0.1);
|
||||
}
|
||||
|
||||
.mobile-flag {
|
||||
margin-right: 5px;
|
||||
}
|
||||
|
||||
@keyframes slideDown {
|
||||
from { opacity: 0; transform: translateY(-10px); }
|
||||
to { opacity: 1; transform: translateY(0); }
|
||||
}
|
||||
|
||||
.fade-enter-active,
|
||||
.fade-leave-active {
|
||||
transition: opacity 0.3s ease;
|
||||
}
|
||||
|
||||
.fade-enter-from,
|
||||
.fade-leave-to {
|
||||
opacity: 0;
|
||||
}
|
||||
</style>
|
||||
@@ -3,6 +3,7 @@ import { computed } from 'vue';
|
||||
import { usePuzzleStore } from '@/stores/puzzle';
|
||||
import { useTimer } from '@/composables/useTimer';
|
||||
import { useI18n } from '@/composables/useI18n';
|
||||
import { RotateCcw, RefreshCw, Eye } from 'lucide-vue-next';
|
||||
|
||||
const store = usePuzzleStore();
|
||||
const { formatTime } = useTimer();
|
||||
@@ -14,6 +15,7 @@ const progressText = computed(() => `${store.progressPercentage.toFixed(3)}%`);
|
||||
|
||||
<template>
|
||||
<div class="status-panel glass-panel">
|
||||
<div class="stats-group">
|
||||
<div class="stat-item">
|
||||
<span class="label">{{ t('status.time') }}</span>
|
||||
<span class="value">{{ formattedTime }}</span>
|
||||
@@ -28,18 +30,33 @@ const progressText = computed(() => `${store.progressPercentage.toFixed(3)}%`);
|
||||
<span class="label">{{ t('status.progress') }}</span>
|
||||
<div class="progress-wrapper">
|
||||
<span class="value small">{{ progressText }}</span>
|
||||
<span class="eye-icon">👁️</span>
|
||||
<button class="eye-btn" :title="t('status.progress')">
|
||||
<Eye :size="20" />
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="panel-separator"></div>
|
||||
|
||||
<div class="actions-group">
|
||||
<button class="action-btn" @click="store.resetGame" :title="t('actions.reset')">
|
||||
<RefreshCw :size="20" />
|
||||
</button>
|
||||
<div class="action-separator"></div>
|
||||
<button class="action-btn" @click="store.undo" :title="t('actions.undo')">
|
||||
<RotateCcw :size="20" />
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.status-panel {
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
padding: 20px 40px;
|
||||
justify-content: space-between;
|
||||
align-items: stretch;
|
||||
padding: 0;
|
||||
border-radius: 15px;
|
||||
background: var(--panel-bg);
|
||||
backdrop-filter: blur(10px);
|
||||
@@ -47,7 +64,17 @@ const progressText = computed(() => `${store.progressPercentage.toFixed(3)}%`);
|
||||
box-shadow: var(--panel-shadow);
|
||||
margin-bottom: 30px;
|
||||
width: 100%;
|
||||
max-width: 600px;
|
||||
max-width: 650px;
|
||||
overflow: hidden;
|
||||
height: 90px;
|
||||
}
|
||||
|
||||
.stats-group {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
justify-content: space-around;
|
||||
align-items: center;
|
||||
padding: 10px 20px;
|
||||
}
|
||||
|
||||
.stat-item {
|
||||
@@ -81,8 +108,56 @@ const progressText = computed(() => `${store.progressPercentage.toFixed(3)}%`);
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.eye-icon {
|
||||
.eye-btn {
|
||||
background: transparent;
|
||||
border: none;
|
||||
color: var(--text-strong);
|
||||
opacity: 0.7;
|
||||
cursor: pointer;
|
||||
padding: 0;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
transition: opacity 0.2s;
|
||||
}
|
||||
|
||||
.eye-btn:hover {
|
||||
opacity: 1;
|
||||
color: var(--primary-neon);
|
||||
}
|
||||
|
||||
.panel-separator {
|
||||
width: 1px;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
margin: 10px 0;
|
||||
}
|
||||
|
||||
.actions-group {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 60px;
|
||||
}
|
||||
|
||||
.action-btn {
|
||||
flex: 1;
|
||||
background: transparent;
|
||||
border: none;
|
||||
color: var(--text-strong);
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.action-btn:hover {
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
color: var(--primary-neon);
|
||||
}
|
||||
|
||||
.action-separator {
|
||||
height: 1px;
|
||||
background: rgba(255, 255, 255, 0.1);
|
||||
width: 80%;
|
||||
align-self: center;
|
||||
}
|
||||
</style>
|
||||
@@ -1,6 +1,7 @@
|
||||
import { createApp } from 'vue'
|
||||
import { createPinia } from 'pinia'
|
||||
import App from './App.vue'
|
||||
import '/node_modules/flag-icons/css/flag-icons.min.css'
|
||||
import './styles/main.css'
|
||||
|
||||
// Custom directive v-cell-hover (zgodnie z wymaganiami)
|
||||
|
||||
Reference in New Issue
Block a user