Compare commits
3 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 8aa07388ac | |||
| 6b3eaf2c70 | |||
| 2fbfca32a0 |
1
.gitignore
vendored
1
.gitignore
vendored
@@ -34,3 +34,4 @@ coverage
|
||||
|
||||
# Vitest
|
||||
__screenshots__/
|
||||
/dev-dist/
|
||||
|
||||
@@ -115,4 +115,3 @@
|
||||
|
||||
* **ui:** FRO-34 Lobby ([#21](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/issues/21)) ([bb6355d](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/commit/bb6355d9ed6745b4852a52040d880ee1dcc6d797))
|
||||
* **ui:** FRO-5 Animation Card Played ([#23](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/issues/23)) ([70a44fd](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/commit/70a44fd1ea119d43f875e6cfac56fb25747d8913))
|
||||
## [0.0.0](https://git.janis-eccarius.de/KnockOutWhist/KnockOutWhist-Frontend/compare/0.14.0...0.0.0) (2025-12-18)
|
||||
|
||||
4481
package-lock.json
generated
4481
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
24
package.json
24
package.json
@@ -2,18 +2,14 @@
|
||||
"name": "knockoutwhistfrontend",
|
||||
"version": "0.0.0",
|
||||
"private": true,
|
||||
"type": "module",
|
||||
"engines": {
|
||||
"node": "^20.19.0 || >=22.12.0"
|
||||
},
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "run-p type-check \"build-only {@}\" --",
|
||||
"preview": "vite preview",
|
||||
"build-only": "vite build",
|
||||
"type-check": "vue-tsc --build",
|
||||
"lint": "eslint . --fix --cache",
|
||||
"format": "prettier --write --experimental-cli src/"
|
||||
"build-only": "vite build",
|
||||
"dev": "vite",
|
||||
"format": "prettier --write --experimental-cli src/",
|
||||
"preview": "vite preview",
|
||||
"type-check": "vue-tsc --build"
|
||||
},
|
||||
"dependencies": {
|
||||
"@quasar/extras": "^1.17.0",
|
||||
@@ -22,6 +18,7 @@
|
||||
"axios": "^1.13.2",
|
||||
"pinia": "^3.0.4",
|
||||
"quasar": "^2.18.6",
|
||||
"register-service-worker": "^1.7.2",
|
||||
"tsparticles": "~3.9.1",
|
||||
"vue": "^3.5.25",
|
||||
"vue-axios": "^3.5.2",
|
||||
@@ -30,7 +27,7 @@
|
||||
"devDependencies": {
|
||||
"@quasar/vite-plugin": "^1.10.0",
|
||||
"@tsconfig/node24": "^24.0.3",
|
||||
"@types/node": "^24.10.1",
|
||||
"@types/node": "^25.0.3",
|
||||
"@vitejs/plugin-vue": "^6.0.2",
|
||||
"@vitejs/plugin-vue-jsx": "^5.1.2",
|
||||
"@vue/eslint-config-prettier": "^10.2.0",
|
||||
@@ -44,7 +41,12 @@
|
||||
"sass-embedded": "^1.93.3",
|
||||
"typescript": "~5.9.0",
|
||||
"vite": "^7.2.4",
|
||||
"vite-plugin-pwa": "^1.2.0",
|
||||
"vite-plugin-vue-devtools": "^8.0.5",
|
||||
"vue-tsc": "^3.1.5"
|
||||
}
|
||||
},
|
||||
"engines": {
|
||||
"node": "^20.19.0 || >=22.12.0"
|
||||
},
|
||||
"type": "module"
|
||||
}
|
||||
|
||||
BIN
public/logo192.png
Normal file
BIN
public/logo192.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.0 KiB |
BIN
public/logo512.png
Normal file
BIN
public/logo512.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 20 KiB |
17
src/App.vue
17
src/App.vue
@@ -1,5 +1,22 @@
|
||||
<script setup lang="ts">
|
||||
import { RouterView } from 'vue-router'
|
||||
import { onMounted, onUnmounted } from 'vue';
|
||||
import { useRoute } from 'vue-router';
|
||||
const route = useRoute();
|
||||
|
||||
const handleOnlineStatusChange = () => {
|
||||
if (navigator.onLine) {
|
||||
if (route.name === 'offline') {
|
||||
window.location.reload();
|
||||
}
|
||||
}
|
||||
};
|
||||
onMounted(() => {
|
||||
window.addEventListener('online', handleOnlineStatusChange);
|
||||
});
|
||||
onUnmounted(() => {
|
||||
window.removeEventListener('online', handleOnlineStatusChange);
|
||||
});
|
||||
</script>
|
||||
|
||||
<template>
|
||||
|
||||
@@ -8,6 +8,7 @@ import axios from "axios";
|
||||
import { useUserInfo } from "@/composables/useUserInfo";
|
||||
import rulesView from "../components/Rules.vue";
|
||||
import Game from "@/views/Game.vue";
|
||||
import OfflineView from "@/views/OfflineView.vue";
|
||||
const api = window?.__RUNTIME_CONFIG__?.API_URL;
|
||||
|
||||
const router = createRouter({
|
||||
@@ -55,12 +56,40 @@ const router = createRouter({
|
||||
name: 'game',
|
||||
component: Game,
|
||||
meta: {requiresAuth: true }
|
||||
},
|
||||
{
|
||||
path: '/offline',
|
||||
name: 'offline',
|
||||
component: OfflineView,
|
||||
meta: {requiresAuth: false }
|
||||
}
|
||||
],
|
||||
})
|
||||
|
||||
router.beforeEach(async (to, from, next) => {
|
||||
const info = useUserInfo();
|
||||
const isOnline = navigator.onLine;
|
||||
if (to.name === 'offline') {
|
||||
if (isOnline) {
|
||||
|
||||
try {
|
||||
const response = await axios.get(`${api}/userInfo`, { withCredentials: true });
|
||||
info.setUserInfo(response.data.username, response.data.userId);
|
||||
|
||||
return next({ name: 'mainmenu' });
|
||||
|
||||
} catch (err) {
|
||||
info.clearUserInfo();
|
||||
return next('/login');
|
||||
}
|
||||
} else {
|
||||
return next();
|
||||
}
|
||||
}
|
||||
if (!isOnline) {
|
||||
return next({ name: 'offline' });
|
||||
}
|
||||
|
||||
if (!to.meta.requiresAuth) return next();
|
||||
try {
|
||||
await axios.get(`${api}/userInfo`, { withCredentials: true }).then(
|
||||
@@ -70,8 +99,9 @@ router.beforeEach(async (to, from, next) => {
|
||||
);
|
||||
next();
|
||||
} catch (err) {
|
||||
info.clearUserInfo();
|
||||
next('/login');
|
||||
info.clearUserInfo();
|
||||
next('/login');
|
||||
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
212
src/views/OfflineView.vue
Normal file
212
src/views/OfflineView.vue
Normal file
@@ -0,0 +1,212 @@
|
||||
<script setup lang="ts">
|
||||
import { ref, computed } from 'vue'
|
||||
|
||||
type Symbol = '🍎' | '💎' | '🔔' | '🍒' | '🍋' | '⭐' | '❓';
|
||||
const symbols: Symbol[] = ['🍎', '💎', '🔔', '🍒', '🍋', '⭐']
|
||||
|
||||
const reelStates = ref([
|
||||
{ value: '❓' as Symbol, isSpinning: false },
|
||||
{ value: '❓' as Symbol, isSpinning: false },
|
||||
{ value: '❓' as Symbol, isSpinning: false }
|
||||
])
|
||||
|
||||
const globalSpinning = ref(false)
|
||||
const hasSpun = ref(false)
|
||||
const glowThird = ref(false)
|
||||
const winBlink = ref(false)
|
||||
const winFire = ref(false)
|
||||
let winEffectsTimer: number | undefined
|
||||
|
||||
const isWinner = computed(() => {
|
||||
const [r1, r2, r3] = reelStates.value;
|
||||
return hasSpun.value && !globalSpinning.value &&
|
||||
r1?.value !== '❓' && r1?.value === r2?.value && r2?.value === r3?.value
|
||||
})
|
||||
|
||||
const getRandomSymbol = (): Symbol => symbols[Math.floor(Math.random() * symbols.length)]!
|
||||
|
||||
const spin = (): void => {
|
||||
if (globalSpinning.value) return;
|
||||
|
||||
globalSpinning.value = true;
|
||||
hasSpun.value = false;
|
||||
// Reset possible win effects
|
||||
winBlink.value = false;
|
||||
winFire.value = false;
|
||||
if (winEffectsTimer) {
|
||||
clearTimeout(winEffectsTimer);
|
||||
winEffectsTimer = undefined;
|
||||
}
|
||||
reelStates.value.forEach((reel) => {
|
||||
reel.isSpinning = true;
|
||||
reel.value = getRandomSymbol();
|
||||
});
|
||||
|
||||
const base0 = 1500;
|
||||
const gap = 800;
|
||||
const base1 = base0 + gap;
|
||||
const base2 = base1 + gap;
|
||||
setTimeout(() => {
|
||||
reelStates.value[0].isSpinning = false;
|
||||
}, base0);
|
||||
setTimeout(() => {
|
||||
reelStates.value[1].isSpinning = false;
|
||||
}, base1);
|
||||
setTimeout(() => {
|
||||
const firstTwoMatch = reelStates.value[0].value === reelStates.value[1].value &&
|
||||
reelStates.value[0].value !== '❓';
|
||||
const extraDelay = firstTwoMatch ? 1000 : 0;
|
||||
|
||||
glowThird.value = firstTwoMatch;
|
||||
|
||||
setTimeout(() => {
|
||||
reelStates.value[2].isSpinning = false;
|
||||
glowThird.value = false;
|
||||
globalSpinning.value = false;
|
||||
hasSpun.value = true;
|
||||
|
||||
const allThreeMatch =
|
||||
reelStates.value[0].value !== '❓' &&
|
||||
reelStates.value[0].value === reelStates.value[1].value &&
|
||||
reelStates.value[1].value === reelStates.value[2].value;
|
||||
if (allThreeMatch) {
|
||||
winFire.value = true;
|
||||
winBlink.value = true;
|
||||
winEffectsTimer = window.setTimeout(() => {
|
||||
winFire.value = false;
|
||||
winBlink.value = false;
|
||||
winEffectsTimer = undefined;
|
||||
}, 3000);
|
||||
}
|
||||
}, base2 - base1 + extraDelay);
|
||||
}, base1);
|
||||
};
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<q-layout>
|
||||
<q-page-container>
|
||||
<q-page class="flex flex-center">
|
||||
<transition
|
||||
appear
|
||||
tag="div"
|
||||
enter-active-class="animate__animated animate__fadeInDown"
|
||||
leave-active-class="animate__animated animate__fadeOutUp"
|
||||
>
|
||||
<q-card class="slot-machine-card q-pa-lg text-center shadow-10">
|
||||
<div class="text-h4 q-mb-md text-black text-weight-bolder " style="font-family: serif;">Offline Drehmaschine</div>
|
||||
|
||||
<div class="row justify-center q-gutter-md q-mb-xl">
|
||||
<div
|
||||
v-for="(reel, index) in reelStates"
|
||||
:key="index"
|
||||
:class="['reel-container', 'shadow-2', (winFire || (glowThird && index === 2)) ? 'glow-fire' : '']"
|
||||
>
|
||||
|
||||
<div v-if="reel.isSpinning" class="reel-strip">
|
||||
<div v-for="n in 10" :key="n" class="text-h2">{{ symbols[n % symbols.length] }}</div>
|
||||
</div>
|
||||
|
||||
<div v-else :class="['text-h2', 'static-symbol', winBlink ? 'blink-win' : '']">{{ reel.value }}</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="result-box q-mb-md" style="height: 40px;">
|
||||
<div v-if="isWinner" class="text-h5 text-positive text-weight-bold animate-bounce">YOU WIN! (Nothing)</div>
|
||||
<div v-else-if="hasSpun && !globalSpinning" class="text-h6 text-grey-7">Try again!</div>
|
||||
<div v-else class="text-h6 text-grey-7">Try your luck until you are connected!</div>
|
||||
</div>
|
||||
|
||||
<q-btn
|
||||
size="lg" color="light-green"
|
||||
:label="globalSpinning ? 'SPINNING...' : 'SPIN'"
|
||||
:loading="globalSpinning"
|
||||
@click="spin" class="full-width" rounded
|
||||
/>
|
||||
</q-card>
|
||||
</transition>
|
||||
</q-page>
|
||||
</q-page-container>
|
||||
</q-layout>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.slot-machine-card { width: 100%; max-width: 400px; border: 4px solid #2c3e50; border-radius: 20px; }
|
||||
|
||||
.reel-container {
|
||||
background: white;
|
||||
width: 80px;
|
||||
height: 100px;
|
||||
position: relative;
|
||||
overflow: hidden;
|
||||
border-radius: 8px;
|
||||
border: 2px solid #ddd;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.reel-strip {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
animation: move-strip 0.3s linear infinite;
|
||||
filter: blur(2px);
|
||||
}
|
||||
|
||||
@keyframes move-strip {
|
||||
0% { transform: translateY(-50%); }
|
||||
100% { transform: translateY(0); }
|
||||
}
|
||||
|
||||
.static-symbol {
|
||||
animation: land 0.2s ease-out;
|
||||
}
|
||||
|
||||
@keyframes land {
|
||||
0% { transform: translateY(-40px); opacity: 0; }
|
||||
70% { transform: translateY(10px); }
|
||||
100% { transform: translateY(0); opacity: 1; }
|
||||
}
|
||||
|
||||
.animate-bounce { animation: bounce 0.5s infinite alternate; }
|
||||
@keyframes bounce { from { transform: scale(1); } to { transform: scale(1.1); } }
|
||||
|
||||
.glow-fire {
|
||||
border-color: #ff9800;
|
||||
box-shadow:
|
||||
0 0 10px 2px rgba(255, 152, 0, 0.8),
|
||||
0 0 18px 6px rgba(255, 87, 34, 0.5),
|
||||
inset 0 0 8px 2px rgba(255, 193, 7, 0.4);
|
||||
animation: fireGlow 900ms ease-in-out infinite alternate;
|
||||
}
|
||||
|
||||
@keyframes fireGlow {
|
||||
0% {
|
||||
box-shadow:
|
||||
0 0 6px 1px rgba(255, 152, 0, 0.6),
|
||||
0 0 12px 3px rgba(255, 87, 34, 0.35),
|
||||
inset 0 0 5px 1px rgba(255, 193, 7, 0.3);
|
||||
transform: translateY(0) scale(1);
|
||||
}
|
||||
100% {
|
||||
box-shadow:
|
||||
0 0 14px 3px rgba(255, 152, 0, 1),
|
||||
0 0 24px 8px rgba(255, 87, 34, 0.6),
|
||||
inset 0 0 10px 3px rgba(255, 193, 7, 0.5);
|
||||
transform: translateY(-1px) scale(1.02);
|
||||
}
|
||||
}
|
||||
|
||||
.blink-win {
|
||||
animation: blinkWin 300ms steps(1, end) infinite;
|
||||
}
|
||||
|
||||
@keyframes blinkWin {
|
||||
0% { opacity: 1; filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
|
||||
50% { opacity: 0.2; filter: drop-shadow(0 0 6px rgba(255,255,255,0.6)); }
|
||||
100% { opacity: 1; filter: drop-shadow(0 0 0 rgba(255,255,255,0)); }
|
||||
}
|
||||
</style>
|
||||
@@ -1,3 +1,3 @@
|
||||
MAJOR=0
|
||||
MINOR=14
|
||||
PATCH=1
|
||||
PATCH=0
|
||||
|
||||
@@ -1,18 +1,54 @@
|
||||
import { fileURLToPath, URL } from 'node:url'
|
||||
|
||||
import { defineConfig } from 'vite'
|
||||
import vue from '@vitejs/plugin-vue'
|
||||
import { quasar, transformAssetUrls } from '@quasar/vite-plugin'
|
||||
import vueJsx from '@vitejs/plugin-vue-jsx'
|
||||
import vueDevTools from 'vite-plugin-vue-devtools'
|
||||
import { quasar, transformAssetUrls } from '@quasar/vite-plugin'
|
||||
import { VitePWA } from 'vite-plugin-pwa'
|
||||
|
||||
// https://vite.dev/config/
|
||||
export default defineConfig({
|
||||
plugins: [
|
||||
vue({ template: { transformAssetUrls } }),
|
||||
vue({
|
||||
template: { transformAssetUrls }
|
||||
}),
|
||||
vueJsx(),
|
||||
vueDevTools(),
|
||||
quasar(),
|
||||
VitePWA({
|
||||
registerType: 'autoUpdate',
|
||||
workbox: {
|
||||
globDirectory: 'dist/',
|
||||
globPatterns: [
|
||||
'**/*.{js,css,html,ico,png,svg,webmanifest}',
|
||||
],
|
||||
},
|
||||
|
||||
manifest: {
|
||||
name: 'Knockout Whist PWA',
|
||||
short_name: 'Whist PWA',
|
||||
description: 'The Knockout Whist card game as a Progressive Web App.',
|
||||
theme_color: '#4A4A4A',
|
||||
background_color: '#ffffff',
|
||||
display: 'standalone',
|
||||
icons: [
|
||||
{
|
||||
src: 'logo192.png',
|
||||
sizes: '192x192',
|
||||
type: 'image/png'
|
||||
},
|
||||
{
|
||||
src: 'logo512.png',
|
||||
sizes: '512x512',
|
||||
type: 'image/png'
|
||||
}
|
||||
]
|
||||
},
|
||||
devOptions: {
|
||||
enabled: true,
|
||||
type: 'module',
|
||||
}
|
||||
})
|
||||
],
|
||||
resolve: {
|
||||
alias: {
|
||||
|
||||
Reference in New Issue
Block a user