447 lines
20 KiB
JavaScript
447 lines
20 KiB
JavaScript
console.log('Carregando script militantes.js...');
|
|
|
|
// Variáveis globais para controle dos filtros
|
|
let filtroAtual = 'todos';
|
|
let filtroResponsabilidade = null;
|
|
let filtroCelula = null;
|
|
|
|
// Função para filtrar militantes
|
|
function filtrarMilitantes() {
|
|
const searchTerm = document.getElementById('searchInput').value.toLowerCase();
|
|
const rows = document.querySelectorAll('#militantesTable tbody tr');
|
|
let count = 0;
|
|
|
|
rows.forEach(row => {
|
|
let shouldShow = true;
|
|
|
|
// Filtro de texto
|
|
const textContent = row.textContent.toLowerCase();
|
|
if (!textContent.includes(searchTerm)) {
|
|
shouldShow = false;
|
|
}
|
|
|
|
// Filtro de status (filiado/não filiado)
|
|
if (filtroAtual !== 'todos') {
|
|
const filiado = row.getAttribute('data-filiado');
|
|
if (filtroAtual === 'filiados' && filiado !== 'sim') {
|
|
shouldShow = false;
|
|
}
|
|
if (filtroAtual === 'nao-filiados' && filiado !== 'nao') {
|
|
shouldShow = false;
|
|
}
|
|
}
|
|
|
|
// Filtro de responsabilidades
|
|
if (filtroResponsabilidade) {
|
|
const badges = row.querySelectorAll('.badge');
|
|
const hasResponsabilidade = Array.from(badges).some(badge =>
|
|
badge.textContent.toLowerCase() === filtroResponsabilidade.toLowerCase()
|
|
);
|
|
if (!hasResponsabilidade) {
|
|
shouldShow = false;
|
|
}
|
|
}
|
|
|
|
// Filtro de célula
|
|
if (filtroCelula) {
|
|
const celula = row.querySelector('[data-celula]').getAttribute('data-celula');
|
|
if (celula !== filtroCelula) {
|
|
shouldShow = false;
|
|
}
|
|
}
|
|
|
|
// Aplicar visibilidade
|
|
row.style.display = shouldShow ? '' : 'none';
|
|
if (shouldShow) count++;
|
|
});
|
|
|
|
// Atualizar contador
|
|
document.getElementById('countMilitantes').textContent = count;
|
|
}
|
|
|
|
// Configurar eventos quando o DOM estiver carregado
|
|
document.addEventListener('DOMContentLoaded', function() {
|
|
// Configurar pesquisa
|
|
const searchInput = document.getElementById('searchInput');
|
|
if (searchInput) {
|
|
let timeoutId;
|
|
searchInput.addEventListener('input', function() {
|
|
clearTimeout(timeoutId);
|
|
timeoutId = setTimeout(filtrarMilitantes, 300);
|
|
});
|
|
}
|
|
|
|
// Configurar filtros
|
|
document.querySelectorAll('.dropdown-item[data-filter]').forEach(item => {
|
|
item.addEventListener('click', function(e) {
|
|
e.preventDefault();
|
|
|
|
const filter = this.getAttribute('data-filter');
|
|
const celula = this.getAttribute('data-celula');
|
|
|
|
// Resetar filtros anteriores
|
|
if (filter === 'todos') {
|
|
filtroAtual = 'todos';
|
|
filtroResponsabilidade = null;
|
|
filtroCelula = null;
|
|
} else if (['filiados', 'nao-filiados'].includes(filter)) {
|
|
filtroAtual = filter;
|
|
filtroResponsabilidade = null;
|
|
filtroCelula = null;
|
|
} else if (['financas', 'imprensa', 'quadro-orientador'].includes(filter)) {
|
|
filtroAtual = 'todos';
|
|
filtroResponsabilidade = filter === 'financas' ? 'Finanças' :
|
|
filter === 'imprensa' ? 'Imprensa' :
|
|
'Quadro-Orientador';
|
|
filtroCelula = null;
|
|
} else if (filter === 'celula') {
|
|
filtroAtual = 'todos';
|
|
filtroResponsabilidade = null;
|
|
filtroCelula = celula;
|
|
}
|
|
|
|
filtrarMilitantes();
|
|
|
|
// Atualizar texto do botão de filtro
|
|
const filterText = this.textContent;
|
|
const dropdownButton = document.querySelector('.dropdown-toggle');
|
|
dropdownButton.innerHTML = `<i class="fas fa-filter me-2"></i>${filterText}`;
|
|
});
|
|
});
|
|
|
|
console.log('DOM carregado');
|
|
|
|
// Configuração do modal de edição
|
|
const modalEditarMilitante = document.getElementById('modalEditarMilitante');
|
|
console.log('Modal de edição:', modalEditarMilitante);
|
|
|
|
if (modalEditarMilitante) {
|
|
console.log('Modal encontrado, configurando eventos...');
|
|
|
|
modalEditarMilitante.addEventListener('show.bs.modal', function(event) {
|
|
console.log('Modal sendo exibido');
|
|
const button = event.relatedTarget;
|
|
console.log('Botão:', button);
|
|
|
|
if (!button) {
|
|
console.error('Botão não encontrado!');
|
|
return;
|
|
}
|
|
|
|
const militanteId = button.getAttribute('data-militante-id');
|
|
console.log('ID do militante:', militanteId);
|
|
|
|
// Dados do militante
|
|
const dados = {
|
|
nome: button.getAttribute('data-militante-nome'),
|
|
cpf: button.getAttribute('data-militante-cpf'),
|
|
email: button.getAttribute('data-militante-email'),
|
|
telefone: button.getAttribute('data-militante-telefone'),
|
|
endereco: button.getAttribute('data-militante-endereco'),
|
|
filiado: button.getAttribute('data-militante-filiado')
|
|
};
|
|
console.log('Dados do militante:', dados);
|
|
|
|
// Preencher campos
|
|
document.getElementById('editNome').value = dados.nome || '';
|
|
document.getElementById('editCpf').value = dados.cpf || '';
|
|
document.getElementById('editEmail').value = dados.email || '';
|
|
document.getElementById('editTelefone').value = dados.telefone || '';
|
|
document.getElementById('editEndereco').value = dados.endereco || '';
|
|
document.getElementById('editFiliado').checked = dados.filiado === 'True';
|
|
|
|
// Configurar formulário
|
|
const form = document.getElementById('formEditarMilitante');
|
|
if (form) {
|
|
form.action = `/militantes/editar/${militanteId}`;
|
|
console.log('Action do formulário:', form.action);
|
|
}
|
|
});
|
|
|
|
// Envio do formulário de edição via AJAX
|
|
const formEditarMilitante = document.getElementById('formEditarMilitante');
|
|
if (formEditarMilitante) {
|
|
formEditarMilitante.addEventListener('submit', function(e) {
|
|
e.preventDefault();
|
|
|
|
const formData = new FormData(this);
|
|
|
|
fetch(this.action, {
|
|
method: 'POST',
|
|
body: formData,
|
|
headers: {
|
|
'X-Requested-With': 'XMLHttpRequest'
|
|
}
|
|
})
|
|
.then(response => response.json())
|
|
.then(data => {
|
|
if (data.status === 'success') {
|
|
// Fechar o modal
|
|
bootstrap.Modal.getInstance(modalEditarMilitante).hide();
|
|
|
|
// Atualizar a lista
|
|
location.reload();
|
|
|
|
// Mostrar mensagem de sucesso
|
|
const alertDiv = document.createElement('div');
|
|
alertDiv.className = 'alert alert-success alert-dismissible fade show';
|
|
alertDiv.innerHTML = `
|
|
${data.message}
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert"></button>
|
|
`;
|
|
document.querySelector('.container').insertBefore(alertDiv, document.querySelector('.container').firstChild);
|
|
} else {
|
|
// Mostrar erro
|
|
const alertDiv = document.createElement('div');
|
|
alertDiv.className = 'alert alert-danger alert-dismissible fade show';
|
|
alertDiv.innerHTML = `
|
|
${data.message}
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert"></button>
|
|
`;
|
|
document.querySelector('.modal-body').insertBefore(alertDiv, formEditarMilitante);
|
|
}
|
|
})
|
|
.catch(error => {
|
|
console.error('Erro:', error);
|
|
const alertDiv = document.createElement('div');
|
|
alertDiv.className = 'alert alert-danger alert-dismissible fade show';
|
|
alertDiv.innerHTML = `
|
|
Erro ao atualizar militante. Tente novamente.
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert"></button>
|
|
`;
|
|
document.querySelector('.modal-body').insertBefore(alertDiv, formEditarMilitante);
|
|
});
|
|
});
|
|
}
|
|
|
|
// Limpar alertas quando o modal for fechado
|
|
modalEditarMilitante.addEventListener('hidden.bs.modal', function () {
|
|
const alerts = this.querySelectorAll('.alert');
|
|
alerts.forEach(alert => alert.remove());
|
|
});
|
|
} else {
|
|
console.error('Modal de edição não encontrado!');
|
|
}
|
|
|
|
// Envio do formulário via AJAX
|
|
const formNovoMilitante = document.getElementById('formNovoMilitante');
|
|
if (formNovoMilitante) {
|
|
formNovoMilitante.addEventListener('submit', function(e) {
|
|
e.preventDefault();
|
|
|
|
const formData = new FormData(this);
|
|
|
|
fetch(this.action, {
|
|
method: 'POST',
|
|
body: formData,
|
|
headers: {
|
|
'X-Requested-With': 'XMLHttpRequest'
|
|
}
|
|
})
|
|
.then(response => response.json())
|
|
.then(data => {
|
|
if (data.status === 'success') {
|
|
// Fechar o modal
|
|
const modal = bootstrap.Modal.getInstance(document.getElementById('modalNovoMilitante'));
|
|
modal.hide();
|
|
|
|
// Limpar o formulário
|
|
formNovoMilitante.reset();
|
|
|
|
// Adicionar o novo militante à tabela
|
|
const tbody = document.querySelector('#militantesTable tbody');
|
|
const tr = document.createElement('tr');
|
|
tr.setAttribute('data-militante', data.militante.id);
|
|
tr.setAttribute('data-filiado', data.militante.filiado ? 'sim' : 'nao');
|
|
|
|
tr.innerHTML = `
|
|
<td data-nome="${data.militante.nome}">${data.militante.nome}</td>
|
|
<td data-cpf="${data.militante.cpf}">${data.militante.cpf}</td>
|
|
<td data-email="${data.militante.email}">${data.militante.email}</td>
|
|
<td data-telefone="${data.militante.telefone}">${data.militante.telefone}</td>
|
|
<td data-filiado="${data.militante.filiado}">
|
|
<span class="badge ${data.militante.filiado ? 'bg-success' : 'bg-secondary'}">
|
|
${data.militante.filiado ? 'Sim' : 'Não'}
|
|
</span>
|
|
</td>
|
|
<td class="text-end">
|
|
<div class="btn-group">
|
|
<button type="button"
|
|
class="btn btn-sm btn-outline-primary"
|
|
data-bs-toggle="modal"
|
|
data-bs-target="#modalEditarMilitante"
|
|
data-militante-id="${data.militante.id}"
|
|
data-militante-nome="${data.militante.nome}"
|
|
data-militante-cpf="${data.militante.cpf}"
|
|
data-militante-email="${data.militante.email}"
|
|
data-militante-telefone="${data.militante.telefone}"
|
|
data-militante-endereco="${data.militante.endereco}"
|
|
data-militante-filiado="${data.militante.filiado}"
|
|
title="Editar">
|
|
<i class="fas fa-edit"></i>
|
|
</button>
|
|
<button type="button"
|
|
class="btn btn-sm btn-outline-danger"
|
|
data-bs-toggle="modal"
|
|
data-bs-target="#deleteModal"
|
|
data-militante-id="${data.militante.id}"
|
|
data-militante-nome="${data.militante.nome}"
|
|
title="Excluir">
|
|
<i class="fas fa-trash"></i>
|
|
</button>
|
|
</div>
|
|
</td>
|
|
`;
|
|
|
|
// Inserir no início da tabela
|
|
tbody.insertBefore(tr, tbody.firstChild);
|
|
|
|
// Atualizar contador
|
|
const countElement = document.getElementById('countMilitantes');
|
|
countElement.textContent = parseInt(countElement.textContent) + 1;
|
|
|
|
// Mostrar mensagem de sucesso
|
|
const alertDiv = document.createElement('div');
|
|
alertDiv.className = 'alert alert-success alert-dismissible fade show';
|
|
alertDiv.innerHTML = `
|
|
${data.message}
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert"></button>
|
|
`;
|
|
document.querySelector('.container').insertBefore(alertDiv, document.querySelector('.container').firstChild);
|
|
} else {
|
|
// Mostrar erro
|
|
const alertDiv = document.createElement('div');
|
|
alertDiv.className = 'alert alert-danger alert-dismissible fade show';
|
|
alertDiv.innerHTML = `
|
|
${data.message}
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert"></button>
|
|
`;
|
|
document.querySelector('.modal-body').insertBefore(alertDiv, formNovoMilitante);
|
|
}
|
|
})
|
|
.catch(error => {
|
|
console.error('Erro:', error);
|
|
// Mostrar erro genérico
|
|
const alertDiv = document.createElement('div');
|
|
alertDiv.className = 'alert alert-danger alert-dismissible fade show';
|
|
alertDiv.innerHTML = `
|
|
Erro ao cadastrar militante. Tente novamente.
|
|
<button type="button" class="btn-close" data-bs-dismiss="alert"></button>
|
|
`;
|
|
document.querySelector('.modal-body').insertBefore(alertDiv, formNovoMilitante);
|
|
});
|
|
});
|
|
}
|
|
|
|
// Máscara para CPF
|
|
const cpfInput = document.getElementById('cpf');
|
|
if (cpfInput) {
|
|
cpfInput.addEventListener('input', function(e) {
|
|
let value = e.target.value.replace(/\D/g, '');
|
|
if (value.length <= 11) {
|
|
value = value.replace(/(\d{3})(\d{3})(\d{3})(\d{2})/, '$1.$2.$3-$4');
|
|
e.target.value = value;
|
|
}
|
|
});
|
|
}
|
|
|
|
// Máscara para telefone
|
|
const telefoneInput = document.getElementById('telefone');
|
|
if (telefoneInput) {
|
|
telefoneInput.addEventListener('input', function(e) {
|
|
let value = e.target.value.replace(/\D/g, '');
|
|
if (value.length <= 11) {
|
|
if (value.length === 11) {
|
|
value = value.replace(/(\d{2})(\d{5})(\d{4})/, '($1) $2-$3');
|
|
} else {
|
|
value = value.replace(/(\d{2})(\d{4})(\d{4})/, '($1) $2-$3');
|
|
}
|
|
e.target.value = value;
|
|
}
|
|
});
|
|
}
|
|
|
|
// Limpar formulário e alertas quando o modal for fechado
|
|
const modalNovoMilitante = document.getElementById('modalNovoMilitante');
|
|
if (modalNovoMilitante) {
|
|
modalNovoMilitante.addEventListener('hidden.bs.modal', function () {
|
|
formNovoMilitante.reset();
|
|
const alerts = this.querySelectorAll('.alert');
|
|
alerts.forEach(alert => alert.remove());
|
|
});
|
|
}
|
|
|
|
// Configuração do modal de exclusão
|
|
const deleteModal = document.getElementById('deleteModal');
|
|
if (deleteModal) {
|
|
deleteModal.addEventListener('show.bs.modal', function(event) {
|
|
const button = event.relatedTarget;
|
|
const militanteId = button.getAttribute('data-militante-id');
|
|
const militanteNome = button.getAttribute('data-militante-nome');
|
|
|
|
document.getElementById('militanteNome').textContent = militanteNome;
|
|
document.getElementById('deleteForm').action = `/militantes/excluir/${militanteId}`;
|
|
});
|
|
}
|
|
|
|
// Ordenação
|
|
const headers = document.querySelectorAll('#militantesTable th[data-sort]');
|
|
headers.forEach(header => {
|
|
header.addEventListener('click', function() {
|
|
const column = this.getAttribute('data-sort');
|
|
const tbody = document.querySelector('#militantesTable tbody');
|
|
const rows = Array.from(tbody.querySelectorAll('tr'));
|
|
const isAsc = !this.classList.contains('sort-asc');
|
|
|
|
// Remover classes de ordenação de todos os headers
|
|
headers.forEach(h => {
|
|
h.classList.remove('sort-asc', 'sort-desc');
|
|
h.querySelector('i').className = 'fas fa-sort';
|
|
});
|
|
|
|
// Adicionar classe de ordenação ao header clicado
|
|
this.classList.add(isAsc ? 'sort-asc' : 'sort-desc');
|
|
this.querySelector('i').className = `fas fa-sort-${isAsc ? 'up' : 'down'}`;
|
|
|
|
// Ordenar linhas
|
|
rows.sort((a, b) => {
|
|
const aVal = a.querySelector(`td[data-${column}]`).getAttribute(`data-${column}`);
|
|
const bVal = b.querySelector(`td[data-${column}]`).getAttribute(`data-${column}`);
|
|
return isAsc ? aVal.localeCompare(bVal) : bVal.localeCompare(aVal);
|
|
});
|
|
|
|
// Reposicionar linhas
|
|
rows.forEach(row => tbody.appendChild(row));
|
|
});
|
|
});
|
|
|
|
// Exportar para CSV
|
|
const btnExportar = document.getElementById('btnExportar');
|
|
if (btnExportar) {
|
|
btnExportar.addEventListener('click', function() {
|
|
const rows = document.querySelectorAll('#militantesTable tbody tr:not([style*="display: none"])');
|
|
const headers = ['Nome', 'CPF', 'Email', 'Telefone', 'Filiado'];
|
|
let csv = headers.join(',') + '\n';
|
|
|
|
rows.forEach(row => {
|
|
const cols = row.querySelectorAll('td');
|
|
const values = [
|
|
cols[0].textContent,
|
|
cols[1].textContent,
|
|
cols[2].textContent,
|
|
cols[3].textContent,
|
|
cols[4].textContent.trim()
|
|
].map(val => `"${val}"`);
|
|
csv += values.join(',') + '\n';
|
|
});
|
|
|
|
const blob = new Blob([csv], { type: 'text/csv;charset=utf-8;' });
|
|
const link = document.createElement('a');
|
|
link.href = URL.createObjectURL(blob);
|
|
link.setAttribute('download', 'militantes.csv');
|
|
document.body.appendChild(link);
|
|
link.click();
|
|
document.body.removeChild(link);
|
|
});
|
|
}
|
|
});
|