-
Notifications
You must be signed in to change notification settings - Fork 0
/
feed.php
236 lines (215 loc) · 9.05 KB
/
feed.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
<?php include 'imagemperfil.php'?>
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="home.css">
<style>
.card img {
width: 288px;
height: 280px;
object-fit: cover;
border-bottom-left-radius:5px;
border-bottom-right-radius: 5px;
}
.card {
width:380px;
margin: 10px auto;
max-height: 532px; /* Definindo a altura máxima dos cards */
overflow-y: auto; /* Adicionando rolagem vertical caso o conteúdo exceda a altura máxima */
overflow-x: auto;
}
.card-container {
display: flex;
flex-direction: column;
align-items: center;
}
.footer {
display: flex;
justify-content: space-between;
padding: 10px;
height: 110px;
background-color: #B61F43;
border-bottom-left-radius: 25px;
border-bottom-right-radius: 25px;
}
.footer .button {
display: flex;
align-items: center;
justify-content: center;
width: 90px;
height: 55px;
border: none;
background-color: white;
}
.footer .button img {
width: 38px;
height: 30px;
}
.perfil{
border-radius: 50%;
width: 50px;
height: 50px;
}
</style>
</head>
<body>
<div class="container">
<div class="header"></div>
<div class="main">
<div id="card-container" class="card-container">
<!-- Cards serão inseridos aqui via JavaScript -->
</div>
<div class="pagination">
<button id="prevBtn" class="btn btn-primary" onclick="showPrevCard()">Anterior</button>
<button id="nextBtn" class="btn btn-primary" onclick="showNextCard()">Próximo</button>
</div>
</div>
<div class="footer">
<button class="button" onclick="window.location.href='login.php';">
<img class="2" src="./img/home.png" alt="Home">
</button>
<button class="button" onclick="window.location.href='relatorio.html';">
<img src="./img/search-file.gif" alt="Search">
</button>
<button class="button" onclick="window.location.href='usuario_logado.php';">
<img class="perfil" src="<?php echo $nomeArquivo; ?>" alt="Avatar">
</button>
</div>
</div>
<!-- Modal -->
<div class="modal fade" id="adoptionModal" tabindex="-1" aria-labelledby="adoptionModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="adoptionModalLabel">Solicitação de Adoção</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<form id="adoptionForm">
<div class="mb-3">
<label for="name" class="form-label">Nome Completo</label>
<input type="text" class="form-control" id="name" name="name" required>
</div>
<div class="mb-3">
<label for="email" class="form-label">Email</label>
<input type="email" class="form-control" id="email" name="email" required>
</div>
<div class="mb-3">
<label for="phone" class="form-label">Telefone</label>
<input type="text" class="form-control" id="phone" name="phone" required>
</div>
<div class="mb-3">
<label for="message" class="form-label">Mensagem</label>
<textarea class="form-control" id="message" name="message" rows="3" readonly></textarea>
</div>
<button type="submit" class="btn btn-primary">Enviar Solicitação</button>
</form>
</div>
</div>
</div>
</div>
<script>
// Obtenha os dados dos cartões via PHP e passe-os para o JavaScript
const cards = [];
<?php
$dbHost = '34.95.244.237';
$dbUsername = 'turma3';
$dbPassword = '123456';
$dbName = 'bd_php';
// Conexão com o banco de dados
$conexao = new mysqli($dbHost, $dbUsername, $dbPassword, $dbName);
// Verificar conexão
if ($conexao->connect_error) {
die("Conexão falhou: " . $conexao->connect_error);
}
// Consulta para obter todos os dados
$sql = "SELECT DISTINCT id_animal, nome, sexo, porte, idade, castrado, vermifugado, descricao, foto_link FROM cadastro";
$resultado = $conexao->query($sql);
if ($resultado->num_rows > 0) {
while($row = $resultado->fetch_assoc()) {
echo "cards.push({
id_animal:
'". $row["id_animal"] ."',
nome: '". $row["nome"] ."',
sexo: '". $row["sexo"] ."',
porte: '". $row["porte"] ."',
idade: '". $row["idade"] ."',
castrado: ". ($row["castrado"] ? 'true' : 'false') .",
vermifugado: ". ($row["vermifugado"] ? 'true' : 'false') .",
descricao: '". $row["descricao"] ."',
foto_link: '". $row["foto_link"] ."'
});\n";
}
}
$conexao->close();
?>
let currentCardIndex = 0;
function showCard(index) {
const cardContainer = document.getElementById('card-container');
const card = cards[index];
cardContainer.innerHTML = `
<div class="card" style="width: 20rem; margin: 10px;">
<img src="${card.foto_link}" class="card-img-top" alt="Imagem do pet">
<div class="card-body">
<h5 class="card-title">Informações do Animal</h5>
<p class="card-text">
Nome: ${card.nome}<br>
Sexo: ${card.sexo}<br>
Porte: ${card.porte}<br>
Idade: ${card.idade}<br>
Castrado: ${card.castrado ? 'Sim' : 'Não'}<br>
Vermifugado: ${card.vermifugado ? 'Sim' : 'Não'}<br>
Descrição: ${card.descricao}<br>
</p>
<button class="btn btn-danger" onclick="openAdoptionModal('${card.nome}', '${card.id_animal}')">Quero Adotar!</button>
</div>
</div>
`;
}
function showPrevCard() {
if (currentCardIndex > 0) {
currentCardIndex--;
showCard(currentCardIndex);
}
}
function showNextCard() {
if (currentCardIndex < cards.length - 1) {
currentCardIndex++;
showCard(currentCardIndex);
}
}
// Inicialize com o primeiro card
if (cards.length > 0) {
showCard(currentCardIndex);
}
// Função para abrir o modal de adoção
function openAdoptionModal(nome, id_animal) {
const message = `Tenho interesse em adotar o animal ${nome} (ID: ${id_animal})`;
document.getElementById('message').value = message;
const adoptionModal = new bootstrap.Modal(document.getElementById('adoptionModal'));
adoptionModal.show();
}
// Função para processar e salvar os dados do formulário
document.getElementById('adoptionForm').addEventListener('submit', function(e) {
e.preventDefault();
const formData = new FormData(this);
fetch('process_adoption.php', {
method: 'POST',
body: formData
})
.then(response => response.text())
.then(data => {
alert('Solicitação enviada com sucesso!');
// Fechar o modal após enviar a solicitação
const adoptionModal = bootstrap.Modal.getInstance(document.getElementById('adoptionModal'));
adoptionModal.hide();
})
.catch(error => console.error('Erro:', error));
});
</script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js"></script>
</body>
</html>