Initial commit

This commit is contained in:
2026-02-08 01:06:19 +01:00
commit 235fd3022f
25 changed files with 3339 additions and 0 deletions

136
src/components/FixedBar.vue Normal file
View File

@@ -0,0 +1,136 @@
<script setup>
import { computed, ref } from 'vue';
import { usePuzzleStore } from '@/stores/puzzle';
import { useTimer } from '@/composables/useTimer';
const store = usePuzzleStore();
const { formatTime } = useTimer();
const isVisible = ref(false);
const isProgressVisible = ref(true); // Toggle for progress percentage
// Logic to show bar on scroll
window.addEventListener('scroll', () => {
isVisible.value = window.scrollY > 100;
});
const progressText = computed(() => {
const percent = store.progressPercentage;
if (typeof percent !== 'number') return '0.0%';
return isProgressVisible.value
? `${percent.toFixed(1)}%`
: '???';
});
const formattedTime = computed(() => formatTime(store.elapsedTime));
const toggleVisibility = () => {
isProgressVisible.value = !isProgressVisible.value;
};
</script>
<template>
<div id="fixed-bar" :class="{ visible: isVisible }">
<div class="fixed-content">
<div class="fixed-stat">
<span>Czas:</span>
<span>{{ formattedTime }}</span>
</div>
<div class="fixed-stat">
<span>Postęp:</span>
<span style="min-width: 60px; text-align: right;">{{ progressText }}</span>
<button class="btn-eye" @click="toggleVisibility" :title="isProgressVisible ? 'Ukryj' : 'Pokaż'">
<span v-if="isProgressVisible">👁</span>
<span v-else>🔒</span>
</button>
</div>
<div class="progress-line-container">
<div class="progress-line-fill" :style="{ width: `${store.progressPercentage || 0}%` }"></div>
</div>
</div>
</div>
</template>
<style scoped>
#fixed-bar {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 60px;
background: rgba(0, 0, 0, 0.85);
backdrop-filter: blur(10px);
z-index: 1000;
display: flex;
align-items: center;
justify-content: center;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
transform: translateY(-100%);
transition: transform 0.3s ease;
box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}
#fixed-bar.visible {
transform: translateY(0);
}
.fixed-content {
display: flex;
gap: 40px;
align-items: center;
font-size: 1.1rem;
font-weight: 300;
width: 100%;
max-width: 800px;
justify-content: center;
position: relative;
height: 100%;
}
.fixed-stat {
display: flex;
gap: 10px;
align-items: center;
color: #fff;
}
.fixed-stat span:first-child {
opacity: 0.7;
font-size: 0.9rem;
text-transform: uppercase;
}
.progress-line-container {
position: absolute;
bottom: 0;
left: 0;
width: 100%;
height: 3px;
background: rgba(255, 255, 255, 0.1);
}
.progress-line-fill {
height: 100%;
background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
width: 0%;
transition: width 0.3s ease;
box-shadow: 0 0 10px var(--accent-cyan);
}
.btn-eye {
background: transparent;
border: none;
cursor: pointer;
font-size: 1.2rem;
padding: 0 5px;
color: var(--text-color);
opacity: 0.7;
transition: opacity 0.2s;
}
.btn-eye:hover {
opacity: 1;
}
</style>