SyntaxSquad/DADProject#14 added protection to logout inside a game and going to another page

This commit is contained in:
2025-12-23 19:43:57 +00:00
parent e54ec58f0c
commit 8505d207e6
6 changed files with 226 additions and 31 deletions
+17 -4
View File
@@ -33,7 +33,10 @@
]"
>
<!-- Confetti Effect (if player wins) -->
<div v-if="winner === 'player' && showConfetti" class="absolute inset-0 pointer-events-none">
<div
v-if="winner === 'player' && showConfetti"
class="absolute inset-0 pointer-events-none"
>
<div
v-for="i in 30"
:key="i"
@@ -140,17 +143,23 @@
<!-- Actions -->
<div class="flex gap-3">
<button
v-if="!isLoggingOut"
@click="$emit('play-again')"
class="flex-1 bg-gradient-to-r from-emerald-500 to-emerald-600 hover:from-emerald-600 hover:to-emerald-700 text-white font-bold py-3 px-6 rounded-lg transition-all duration-200 hover:scale-105 active:scale-95 shadow-lg"
class="flex-1 bg-gradient-to-r from-emerald-500 to-emerald-600 hover:from-emerald-600 hover:to-emerald-700 text-white font-bold py-3 px-6 rounded-lg transition-all shadow-lg"
>
Play Again
</button>
<button
v-if="!hideClose"
@click="handleClose"
class="flex-1 bg-gray-700 hover:bg-gray-600 text-white font-bold py-3 px-6 rounded-lg transition-all duration-200 hover:scale-105 active:scale-95"
class="flex-1 font-bold py-3 px-6 rounded-lg transition-all"
:class="[
isLoggingOut
? 'bg-red-600 hover:bg-red-700 text-white w-full' // Estilo de destaque para Logout
: 'bg-gray-700 hover:bg-gray-600 text-white',
]"
>
Close
{{ isLoggingOut ? 'Confirmar Logout' : 'Close' }}
</button>
</div>
</div>
@@ -197,6 +206,10 @@ const props = defineProps({
type: Boolean,
default: false,
},
isLoggingOut: {
type: Boolean,
default: false,
},
})
const emit = defineEmits(['close', 'play-again'])