feat|fix: Implementa Redis|Ajustes visuais

This commit is contained in:
LukiBeg 2025-12-16 10:23:47 -03:00
parent 80a4731cd0
commit 2eb39789d2
5 changed files with 259 additions and 269 deletions

View File

@ -42,7 +42,7 @@ SESSION_DOMAIN=null
BROADCAST_CONNECTION=log
FILESYSTEM_DISK=local
QUEUE_CONNECTION=database
QUEUE_CONNECTION=redis
CACHE_STORE=database
# CACHE_PREFIX=

View File

@ -23,11 +23,5 @@ public function run(): void
'email' => 'admin@omniboard.com',
'password' => bcrypt('password'), // A senha será 'password'
]);
User::factory()->create([
'name' => 'Test User',
'email' => 'test@example.com',
]);
$this->call([OmniBoardSeeder::class]);
}
}

View File

@ -1,3 +1,53 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
/* Animações para a página de welcome */
@keyframes float {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(-15px);
}
100% {
transform: translateY(0px);
}
}
@keyframes slide-up {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-float {
animation: float 6s ease-in-out infinite;
}
.animate-slide-up {
animation: slide-up 0.8s ease-out forwards;
opacity: 0;
}
.delay-100 {
animation-delay: 0.1s;
}
.delay-200 {
animation-delay: 0.2s;
}
.delay-300 {
animation-delay: 0.3s;
}
/* Fim das animações */

View File

@ -10,17 +10,13 @@ const props = defineProps({
const page = usePage();
const userTenantId = page.props.auth.user.tenant_id;
// Variável para guardar a inscrição do canal
let channel = null;
onMounted(() => {
if (userTenantId) {
// Verifica se o Echo já está carregado
if (window.Echo) {
connectToChannel();
} else {
// Se não, espera um pouco e tenta de novo (Fallback simples)
// Ou melhor: escuta o evento de carregamento, mas o setInterval é mais prático aqui
const checkEcho = setInterval(() => {
if (window.Echo) {
clearInterval(checkEcho);
@ -41,7 +37,6 @@ const connectToChannel = () => {
})
.error((err) => {
console.error("❌ Erro de Conexão/Auth:", err);
// Dica: Se o erro for detalhado, ele vai aparecer aqui.
});
};

View File

@ -1,7 +1,7 @@
<script setup>
import { Head, Link } from '@inertiajs/vue3';
import { Head, Link } from '@inertiajs/vue3';
defineProps({
defineProps({
canLogin: {
type: Boolean,
},
@ -16,68 +16,19 @@ defineProps({
type: String,
required: true,
},
});
</script>
});
</script>
<style>
/* Animações Suaves */
@keyframes float {
0% {
transform: translateY(0px);
}
50% {
transform: translateY(-15px);
}
100% {
transform: translateY(0px);
}
}
@keyframes slide-up {
from {
opacity: 0;
transform: translateY(20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
.animate-float {
animation: float 6s ease-in-out infinite;
}
.animate-slide-up {
animation: slide-up 0.8s ease-out forwards;
opacity: 0;
}
.delay-100 {
animation-delay: 0.1s;
}
.delay-200 {
animation-delay: 0.2s;
}
.delay-300 {
animation-delay: 0.3s;
}
</style>
<template>
<template>
<Head title="OmniBoard - Dashboard Inteligente" />
<div
class="min-h-screen bg-gray-50 text-slate-800 selection:bg-blue-100 selection:text-blue-900 overflow-hidden relative font-sans">
class="min-h-screen flex flex-col bg-gray-50 text-slate-800 selection:bg-blue-100 selection:text-blue-900 overflow-hidden relative font-sans">
<div class="absolute top-0 left-0 w-full h-full overflow-hidden z-0 pointer-events-none">
<div class="absolute -top-[10%] -right-[5%] w-[40%] h-[40%] bg-blue-200/40 rounded-full blur-[100px]"></div>
<div class="absolute -top-[10%] -right-[5%] w-[40%] h-[40%] bg-blue-200/40 rounded-full blur-[100px]">
</div>
<div class="absolute top-[30%] -left-[10%] w-[30%] h-[30%] bg-purple-200/40 rounded-full blur-[100px]">
</div>
</div>
@ -266,8 +217,8 @@ defineProps({
</div>
</section>
<footer class="relative z-10 border-t border-gray-100 py-8 text-center text-slate-400 text-sm bg-white">
<footer class="relative z-10 mt-auto border-t border-gray-100 py-8 text-center text-slate-400 text-sm bg-white">
<p>Ingline Systems &copy; 2025. Monitoramento Profissional.</p>
</footer>
</div>
</template>
</template>