mirror of
https://github.com/xodivorce/infra-xodivorce-in.git
synced 2026-02-04 19:12:23 +05:30
fix: khown bugs, add Medical/Health Issue in reports category
This commit is contained in:
@@ -1,12 +1,10 @@
|
||||
<?php
|
||||
date_default_timezone_set('Asia/Kolkata');
|
||||
$conn->query("SET time_zone = '+05:30'");
|
||||
|
||||
$totalResult = $conn->query("SELECT COUNT(*) FROM reports");
|
||||
$totalReports = $totalResult->fetch_row()[0];
|
||||
$openedResult = $conn->query("SELECT COUNT(*) FROM reports WHERE status = 'Opened'");
|
||||
$openedReports = $openedResult->fetch_row()[0];
|
||||
|
||||
$activeResult = $conn->query("SELECT COUNT(*) FROM reports WHERE status IN ('Opened', 'In Progress')");
|
||||
$activeReports = $activeResult->fetch_row()[0];
|
||||
$inProgressResult = $conn->query("SELECT COUNT(*) FROM reports WHERE status = 'In Progress'");
|
||||
$inProgressReports = $inProgressResult->fetch_row()[0];
|
||||
|
||||
$resolvedResult = $conn->query("SELECT COUNT(*) FROM reports WHERE status = 'Resolved'");
|
||||
$resolvedReports = $resolvedResult->fetch_row()[0];
|
||||
@@ -21,7 +19,8 @@ $recentResult = $conn->query($recentSql);
|
||||
$recentActivity = $recentResult->fetch_all(MYSQLI_ASSOC);
|
||||
|
||||
if (!function_exists('time_elapsed_string')) {
|
||||
function time_elapsed_string($datetime, $full = false) {
|
||||
function time_elapsed_string($datetime, $full = false)
|
||||
{
|
||||
$now = new DateTime;
|
||||
$ago = new DateTime($datetime);
|
||||
$diff = $now->diff($ago);
|
||||
@@ -38,51 +37,66 @@ if (!function_exists('time_elapsed_string')) {
|
||||
}
|
||||
}
|
||||
|
||||
if (!$full) $string = array_slice($string, 0, 1);
|
||||
if (!$full)
|
||||
$string = array_slice($string, 0, 1);
|
||||
return $string ? implode(', ', $string) . ' ago' : 'just now';
|
||||
}
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="max-w-6xl mx-auto w-full">
|
||||
|
||||
|
||||
<div class="grid grid-cols-1 md:grid-cols-3 gap-4 mb-4">
|
||||
|
||||
<div class="group bg-neutral-800 rounded-lg border border-neutral-700/50 p-4 shadow-sm hover:border-blue-500/30 transition-all duration-300 flex items-center justify-between">
|
||||
<div
|
||||
class="group bg-neutral-800 rounded-lg border border-neutral-700/50 p-4 shadow-sm hover:border-blue-500/30 transition-all duration-300 flex items-center justify-between">
|
||||
<div>
|
||||
<h3 class="text-xs font-semibold text-neutral-400 uppercase tracking-wider group-hover:text-blue-400 transition-colors">Total Reports</h3>
|
||||
<p class="text-2xl font-bold text-white mt-1"><?= $totalReports ?></p>
|
||||
<p class="text-[10px] text-neutral-500 mt-1">All submissions overview</p>
|
||||
<h3
|
||||
class="text-xs font-semibold text-neutral-400 uppercase tracking-wider group-hover:text-blue-400 transition-colors">
|
||||
Opened Reports
|
||||
</h3>
|
||||
<p class="text-2xl font-bold text-white mt-1"><?= $openedReports ?></p>
|
||||
<p class="text-[10px] text-neutral-500 mt-1">Newly reported issues</p>
|
||||
</div>
|
||||
<div class="p-3 bg-blue-500/10 rounded-lg group-hover:bg-blue-500/20 transition-colors">
|
||||
<svg class="w-6 h-6 text-blue-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 17v-2m3 2v-4m3 4v-6m2 10H7a2 2 0 01-2-2V5a2 2 0 012-2h5.586a1 1 0 01.707.293l5.414 5.414a1 1 0 01.293.707V19a2 2 0 01-2 2z" />
|
||||
|
||||
<div
|
||||
class="w-10 h-10 rounded-full bg-blue-500/10 border border-blue-500/20 flex items-center justify-center">
|
||||
<svg class="w-4 h-4 text-blue-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 4v16m8-8H4" />
|
||||
</svg>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="group bg-neutral-800 rounded-lg border border-neutral-700/50 p-4 shadow-sm hover:border-yellow-500/30 transition-all duration-300 flex items-center justify-between">
|
||||
<div
|
||||
class="group bg-neutral-800 rounded-lg border border-neutral-700/50 p-4 shadow-sm hover:border-yellow-500/30 transition-all duration-300 flex items-center justify-between">
|
||||
<div>
|
||||
<h3 class="text-xs font-semibold text-neutral-400 uppercase tracking-wider group-hover:text-yellow-400 transition-colors">Reports In Progress</h3>
|
||||
<p class="text-2xl font-bold text-white mt-1"><?= $activeReports ?></p>
|
||||
<h3
|
||||
class="text-xs font-semibold text-neutral-400 uppercase tracking-wider group-hover:text-yellow-400 transition-colors">
|
||||
Reports In Progress</h3>
|
||||
<p class="text-2xl font-bold text-white mt-1"><?= $inProgressReports ?></p>
|
||||
<p class="text-[10px] text-neutral-500 mt-1">In progress / Open</p>
|
||||
</div>
|
||||
<div class="p-3 bg-yellow-500/10 rounded-lg group-hover:bg-yellow-500/20 transition-colors">
|
||||
<svg class="w-6 h-6 text-yellow-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
||||
d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||
</svg>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="group bg-neutral-800 rounded-lg border border-neutral-700/50 p-4 shadow-sm hover:border-green-500/30 transition-all duration-300 flex items-center justify-between">
|
||||
<div
|
||||
class="group bg-neutral-800 rounded-lg border border-neutral-700/50 p-4 shadow-sm hover:border-green-500/30 transition-all duration-300 flex items-center justify-between">
|
||||
<div>
|
||||
<h3 class="text-xs font-semibold text-neutral-400 uppercase tracking-wider group-hover:text-green-400 transition-colors">Resolved Reports</h3>
|
||||
<h3
|
||||
class="text-xs font-semibold text-neutral-400 uppercase tracking-wider group-hover:text-green-400 transition-colors">
|
||||
Resolved Reports</h3>
|
||||
<p class="text-2xl font-bold text-white mt-1"><?= $resolvedReports ?></p>
|
||||
<p class="text-[10px] text-neutral-500 mt-1">Successfully closed</p>
|
||||
</div>
|
||||
<div class="p-3 bg-green-500/10 rounded-lg group-hover:bg-green-500/20 transition-colors">
|
||||
<svg class="w-6 h-6 text-green-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
||||
d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
|
||||
</svg>
|
||||
</div>
|
||||
</div>
|
||||
@@ -96,33 +110,36 @@ if (!function_exists('time_elapsed_string')) {
|
||||
</div>
|
||||
|
||||
<div class="divide-y divide-neutral-700/50">
|
||||
|
||||
|
||||
<?php if (count($recentActivity) > 0): ?>
|
||||
<?php foreach ($recentActivity as $row): ?>
|
||||
<?php
|
||||
$statusColor = 'blue';
|
||||
$iconPath = 'M12 4v16m8-8H4';
|
||||
|
||||
if ($row['status'] === 'Resolved') {
|
||||
$statusColor = 'green';
|
||||
$iconPath = 'M5 13l4 4L19 7';
|
||||
} elseif ($row['status'] === 'In Progress') {
|
||||
$statusColor = 'yellow';
|
||||
$iconPath = 'M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z';
|
||||
}
|
||||
<?php
|
||||
$statusColor = 'blue';
|
||||
$iconPath = 'M12 4v16m8-8H4';
|
||||
|
||||
if ($row['status'] === 'Resolved') {
|
||||
$statusColor = 'green';
|
||||
$iconPath = 'M5 13l4 4L19 7';
|
||||
} elseif ($row['status'] === 'In Progress') {
|
||||
$statusColor = 'yellow';
|
||||
$iconPath = 'M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z';
|
||||
}
|
||||
?>
|
||||
|
||||
<div class="px-4 py-3 hover:bg-neutral-700/30 transition-colors flex items-center gap-3">
|
||||
<div class="flex-shrink-0 w-8 h-8 rounded-full bg-<?= $statusColor ?>-500/10 border border-<?= $statusColor ?>-500/20 flex items-center justify-center">
|
||||
<svg class="w-4 h-4 text-<?= $statusColor ?>-500" fill="none" stroke="currentColor" viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="<?= $iconPath ?>"/>
|
||||
<div
|
||||
class="flex-shrink-0 w-8 h-8 rounded-full bg-<?= $statusColor ?>-500/10 border border-<?= $statusColor ?>-500/20 flex items-center justify-center">
|
||||
<svg class="w-4 h-4 text-<?= $statusColor ?>-500" fill="none" stroke="currentColor"
|
||||
viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="<?= $iconPath ?>" />
|
||||
</svg>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="flex-1 min-w-0 grid gap-0.5">
|
||||
<div class="flex items-center justify-between">
|
||||
<p class="text-sm font-medium text-neutral-200 truncate">
|
||||
Issue <span class="text-white">#<?= $row['id'] ?></span> <?= htmlspecialchars($row['status']) ?>
|
||||
Issue <span class="text-white">#<?= $row['id'] ?></span>
|
||||
<?= htmlspecialchars($row['status']) ?>
|
||||
</p>
|
||||
<span class="text-[10px] text-neutral-400 whitespace-nowrap">
|
||||
<?= time_elapsed_string($row['updated_at']) ?>
|
||||
|
||||
@@ -404,6 +404,7 @@ $result = $conn->query($sql);
|
||||
<option value="Furniture & Fixtures Issue">Furniture & Fixtures Issue</option>
|
||||
<option value="Library & Study Issue">Library & Study Issue</option>
|
||||
<option value="Lost & Stolen Issue">Lost & Stolen Issue</option>
|
||||
<option value="Medical/Health Issue">Medical & Health Issue</option>
|
||||
<option value="Other Issue">Other Issue</option>
|
||||
</select>
|
||||
<svg class="absolute right-3 top-3 h-4 w-4 text-neutral-500 pointer-events-none"
|
||||
|
||||
Reference in New Issue
Block a user