develop #83

Merged
M-Gabrielly merged 426 commits from develop into main 2025-12-04 04:13:15 +00:00
2 changed files with 0 additions and 167 deletions
Showing only changes of commit e4afaa5743 - Show all commits

View File

@ -1,83 +0,0 @@
'use client'
import { useState } from 'react';
import { testSupabaseConnection, simpleLogin } from '@/lib/simple-auth';
export default function TestPage() {
const [email, setEmail] = useState('test@example.com');
const [password, setPassword] = useState('123456');
const [result, setResult] = useState<string>('');
const handleTestConnection = async () => {
setResult('Testando conexão...');
const success = await testSupabaseConnection();
setResult(success ? '✅ Conexão OK' : '❌ Conexão falhou');
};
const handleSimpleLogin = async () => {
setResult('Tentando login...');
try {
const response = await simpleLogin(email, password);
setResult(`✅ Login OK: ${JSON.stringify(response, null, 2)}`);
} catch (error) {
setResult(`❌ Login falhou: ${error}`);
}
};
return (
<div className="min-h-screen bg-gray-100 p-8">
<div className="max-w-2xl mx-auto bg-white rounded-lg shadow-md p-6">
<h1 className="text-2xl font-bold mb-6">🔧 Teste de Conexão Supabase</h1>
<div className="space-y-4">
<button
onClick={handleTestConnection}
className="w-full bg-blue-500 text-white py-2 px-4 rounded hover:bg-blue-600"
>
1. Testar Conexão com Supabase
</button>
<div className="border p-4 rounded">
<h3 className="font-semibold mb-2">2. Testar Login:</h3>
<div className="space-y-2">
<input
type="email"
placeholder="Email"
value={email}
onChange={(e) => setEmail(e.target.value)}
className="w-full border rounded px-3 py-2"
/>
<input
type="password"
placeholder="Senha"
value={password}
onChange={(e) => setPassword(e.target.value)}
className="w-full border rounded px-3 py-2"
/>
<button
onClick={handleSimpleLogin}
className="w-full bg-green-500 text-white py-2 px-4 rounded hover:bg-green-600"
>
Testar Login Simples
</button>
</div>
</div>
<div className="bg-gray-100 p-4 rounded">
<h3 className="font-semibold mb-2">Resultado:</h3>
<pre className="text-sm overflow-auto max-h-96">{result}</pre>
</div>
<div className="text-sm text-gray-600">
<p><strong>Como usar:</strong></p>
<ol className="list-decimal list-inside space-y-1">
<li>Primeiro teste a conexão básica</li>
<li>Se OK, teste o login (qualquer email/senha por enquanto)</li>
<li>Veja os logs no console (F12) para mais detalhes</li>
</ol>
</div>
</div>
</div>
</div>
);
}

View File

@ -1,84 +0,0 @@
/**
* Versão simplificada para testar conexão com Supabase
*/
export async function testSupabaseConnection() {
const url = 'https://yuanqfswhberkoevtmfr.supabase.co/rest/v1/';
const headers = {
'apikey': 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6Inl1YW5xZnN3aGJlcmtvZXZ0bWZyIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NTQ5NTQzNjksImV4cCI6MjA3MDUzMDM2OX0.g8Fm4XAvtX46zifBZnYVH4tVuQkqUH6Ia9CXQj4DztQ',
'Content-Type': 'application/json'
};
console.log('[TEST] Testando conexão com Supabase...');
try {
const response = await fetch(url, {
method: 'GET',
headers
});
console.log('[TEST] Status:', response.status);
console.log('[TEST] Headers:', Object.fromEntries(response.headers.entries()));
if (response.ok) {
console.log('[TEST] ✅ Conexão com Supabase OK!');
} else {
console.log('[TEST] ❌ Problema na conexão:', response.statusText);
}
return response.ok;
} catch (error) {
console.error('[TEST] Erro na conexão:', error);
return false;
}
}
/**
* Versão simplificada do login para debug
*/
export async function simpleLogin(email: string, password: string) {
const url = 'https://yuanqfswhberkoevtmfr.supabase.co/auth/v1/token?grant_type=password';
const payload = {
email: email,
password: password
};
const headers = {
'Content-Type': 'application/json',
'apikey': 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6Inl1YW5xZnN3aGJlcmtvZXZ0bWZyIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NTQ5NTQzNjksImV4cCI6MjA3MDUzMDM2OX0.g8Fm4XAvtX46zifBZnYVH4tVuQkqUH6Ia9CXQj4DztQ',
};
console.log('[SIMPLE-LOGIN] Tentando login simples...', {
url,
email,
headers: Object.keys(headers)
});
try {
const response = await fetch(url, {
method: 'POST',
headers,
body: JSON.stringify(payload)
});
const responseText = await response.text();
console.log('[SIMPLE-LOGIN] Response:', {
status: response.status,
statusText: response.statusText,
body: responseText,
headers: Object.fromEntries(response.headers.entries())
});
if (response.ok) {
return JSON.parse(responseText);
} else {
throw new Error(`Login failed: ${response.status} - ${responseText}`);
}
} catch (error) {
console.error('[SIMPLE-LOGIN] Erro:', error);
throw error;
}
}