360 lines
14 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php include('include/headscript.php'); ?>
<!doctype html>
<html lang="it">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" href="assets/images/favicon-32x32.png" type="image/png" />
<?php include('cssinclude.php'); ?>
<title>Gestione Matrici - <?= htmlspecialchars($titlewebsite, ENT_QUOTES, 'UTF-8'); ?></title>
<!-- jQuery, Bootstrap, SweetAlert -->
<script src="https://code.jquery.com/jquery-3.6.0.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@11"></script>
<!-- DataTables -->
<link rel="stylesheet" href="https://cdn.datatables.net/1.13.6/css/dataTables.bootstrap5.min.css">
<script src="https://cdn.datatables.net/1.13.6/js/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/1.13.6/js/dataTables.bootstrap5.min.js"></script>
<!-- Select2 -->
<link href="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/css/select2.min.css" rel="stylesheet" />
<link href="https://cdn.jsdelivr.net/npm/select2-bootstrap-5-theme@1.3.0/dist/select2-bootstrap-5-theme.min.css" rel="stylesheet" />
<script src="https://cdn.jsdelivr.net/npm/select2@4.1.0-rc.0/dist/js/select2.full.min.js"></script>
<style>
body {
font-size: 1.05rem;
background: #f8fafc;
}
.card {
border-radius: 16px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.back-dashboard {
background-color: #b9ebc7 !important;
color: #1f2d3d !important;
border-radius: 10px;
font-weight: 600;
font-size: 1rem;
padding: 10px 18px;
}
.btn-add {
background-color: #198754;
color: #fff;
border-radius: 8px;
padding: 10px 20px;
}
.table thead {
background-color: #b9ebc7;
text-align: center;
}
.action-btn {
border: none;
background: none;
cursor: pointer;
font-size: 1.2rem;
margin: 0 4px;
}
.edit {
color: #0d6efd;
}
.delete {
color: #dc3545;
}
.linee {
color: #198754;
}
.mescole {
color: #ff9800;
}
.thumb-img:hover {
transform: scale(1.05);
transition: 0.2s;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
</style>
</head>
<body>
<div class="wrapper">
<?php include('include/navbar.php'); ?>
<?php include('include/topbar.php'); ?>
<div class="page-wrapper">
<div class="page-content">
<div class="card p-3">
<div class="card-header d-flex justify-content-between align-items-center">
<h5 class="mb-0">Gestione Matrici</h5>
<button type="button" class="btn back-dashboard" onclick="location.href='production_dashboard.php'">↩️ Torna alla Dashboard</button>
</div>
<div class="card-body">
<div class="d-flex justify-content-between align-items-center mb-3">
<h6 class="fw-semibold mb-0">Elenco Completo</h6>
<button class="btn btn-add" data-bs-toggle="modal" data-bs-target="#addMatriceModal"> Aggiungi Matrice</button>
</div>
<!-- TABELLA -->
<div class="table-responsive">
<table id="tabellaMatrici" class="table table-striped align-middle text-center">
<thead>
<tr>
<th>Foto</th>
<th>Nome</th>
<th>Cliente</th>
<th>Data</th>
<th>Azioni</th>
</tr>
</thead>
<tbody>
<?php
$db = DBHandlerSelect::getInstance();
$pdo = $db->getConnection();
$stmt = $pdo->query("SELECT * FROM matrice ORDER BY id DESC");
function formatDateIT($d)
{
if (!$d || $d == '0000-00-00') return '';
return date("d/m/Y", strtotime($d));
}
if ($stmt->rowCount() === 0) {
echo "<tr><td colspan='5' class='text-muted'>Nessuna matrice presente</td></tr>";
} else {
while ($row = $stmt->fetch(PDO::FETCH_ASSOC)) {
$dataIT = formatDateIT($row['data_produzione']);
// gestione foto
$foto = $row['photo'] ?? '';
$pathFoto = "photos/matrici/" . $foto;
$placeholder = "assets/images/no-photo.png";
if ($foto && file_exists($pathFoto)) {
$thumb = $pathFoto;
$hasPhoto = true;
} else {
$thumb = $placeholder;
$hasPhoto = false;
}
echo "<tr>";
// colonna FOTO
echo "<td>
<img src='" . htmlspecialchars($thumb, ENT_QUOTES) . "'
class='thumb-img'
data-full='" . htmlspecialchars($thumb, ENT_QUOTES) . "'
style='height:60px; cursor:pointer; border-radius:6px; opacity:" . ($hasPhoto ? "1" : "0.6") . ";'
title='" . ($hasPhoto ? "Clicca per ingrandire" : "") . "'>
</td>";
// colonna NOME
echo "<td>" . htmlspecialchars($row['nome']) . "</td>";
// colonna CLIENTE
echo "<td>" . htmlspecialchars($row['cliente']) . "</td>";
// colonna DATA
echo "<td>{$dataIT}</td>";
// colonna AZIONI
echo "<td>
<button class='action-btn edit'
data-id='{$row['id']}'
data-nome='" . htmlspecialchars($row['nome'], ENT_QUOTES) . "'
data-cliente='" . htmlspecialchars($row['cliente'], ENT_QUOTES) . "'
data-data='{$dataIT}'>
<i class='fa-solid fa-pen-to-square'></i>
</button>
<button class='action-btn delete' data-id='{$row['id']}'>
<i class='fa-solid fa-trash'></i>
</button>
<button class='action-btn linee' data-id='{$row['id']}' data-nome='" . htmlspecialchars($row['nome'], ENT_QUOTES) . "'>
<i class='fa-solid fa-sitemap'></i>
</button>
<button class='action-btn mescole' data-id='{$row['id']}' data-nome='" . htmlspecialchars($row['nome'], ENT_QUOTES) . "'>
<i class='fa-solid fa-flask'></i>
</button>
</td>";
echo "</tr>";
}
}
?>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<?php include('include/footer.php'); ?>
</div>
<!-- MODALE AGGIUNTA / MODIFICA MATRICE -->
<div class="modal fade" id="addMatriceModal" tabindex="-1">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content">
<div class="modal-header" style="background-color:#b9ebc7;">
<h5 class="modal-title">Aggiungi / Modifica Matrice</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
</div>
<div class="modal-body">
<form id="addMatriceForm">
<input type="hidden" id="idMatriceEdit">
<div class="mb-3">
<label class="fw-semibold">Nome Matrice</label>
<input type="text" class="form-control" id="nomeMatrice" required>
</div>
<div class="mb-3">
<label class="fw-semibold">Cliente</label>
<input type="text" class="form-control" id="clienteMatrice">
</div>
<div class="mb-3">
<label class="fw-semibold">Data</label>
<input type="text" class="form-control" id="dataMatrice" placeholder="dd/mm/yyyy">
</div>
<div class="text-center">
<button type="submit" class="btn btn-add">💾 Salva</button>
</div>
</form>
</div>
</div>
</div>
</div>
<?php include('jsinclude.php'); ?>
<script>
/* Format date dd/mm/yyyy → yyyy-mm-dd */
function convertToMySQLDate(dateStr) {
if (!dateStr) return "";
const parts = dateStr.split("/");
if (parts.length !== 3) return "";
return parts[2] + "-" + parts[1] + "-" + parts[0];
}
$(document).ready(function() {
$('#tabellaMatrici').DataTable({
order: [
[0, 'desc']
],
language: {
url: 'https://cdn.datatables.net/plug-ins/1.13.6/i18n/it-IT.json'
}
});
// === EDIT MATRICE ===
$(document).on("click", ".edit", function() {
$("#idMatriceEdit").val($(this).data("id"));
$("#nomeMatrice").val($(this).data("nome"));
$("#clienteMatrice").val($(this).data("cliente"));
$("#dataMatrice").val($(this).data("data"));
$("#addMatriceModal").modal("show");
});
// === SALVA MATRICE ===
$("#addMatriceForm").on("submit", function(e) {
e.preventDefault();
let id = $("#idMatriceEdit").val();
let nome = $("#nomeMatrice").val().trim();
let cliente = $("#clienteMatrice").val().trim();
let dataIT = $("#dataMatrice").val().trim();
let dataSQL = convertToMySQLDate(dataIT);
fetch("save_matrice.php", {
method: "POST",
headers: {
"Content-Type": "application/x-www-form-urlencoded"
},
body: "id=" + id + "&nome=" + encodeURIComponent(nome) + "&cliente=" + encodeURIComponent(cliente) + "&data=" + encodeURIComponent(dataSQL)
})
.then(r => r.json())
.then(data => {
Swal.fire({
icon: data.success ? "success" : "error",
title: data.success ? "Salvato!" : "Errore",
text: data.message || ""
}).then(() => location.reload());
});
});
// === DELETE MATRICE ===
$(document).on("click", ".delete", function() {
const id = $(this).data("id");
Swal.fire({
icon: "warning",
title: "Eliminare questa matrice?",
showCancelButton: true,
confirmButtonColor: "#d33"
}).then(res => {
if (res.isConfirmed) {
fetch("delete_matrice.php?id=" + id)
.then(r => r.json())
.then(data => {
Swal.fire({
icon: data.success ? "success" : "error",
title: data.success ? "Eliminata!" : "Errore"
}).then(() => location.reload());
});
}
});
});
});
// thumbnail click → open modal with big photo
$(document).on("click", ".thumb-img", function() {
let full = $(this).data("full");
$("#fotoGrande").attr("src", full);
$("#fotoModal").modal("show");
});
</script>
<!-- MODALE FOTO GRANDE -->
<div class="modal fade" id="fotoModal" tabindex="-1">
<div class="modal-dialog modal-dialog-centered modal-lg">
<div class="modal-content p-0" style="background:transparent; border:none;">
<img id="fotoGrande" src="" style="width:100%; border-radius:10px;">
</div>
</div>
</div>
</body>
</html>