nidus-sync/html/template/sync/communication-root.html

1014 lines
33 KiB
HTML
Raw Normal View History

{{ template "sync/layout/authenticated.html" . }}
{{ define "title" }}Planning{{ end }}
{{ define "extraheader" }}
<script
type="text/javascript"
src="//unpkg.com/maplibre-gl@5.0.1/dist/maplibre-gl.js"
></script>
2026-03-07 01:20:47 +00:00
<script src="/static/js/time-relative.js"></script>
<script src="/static/js/map-multipoint.js"></script>
<script>
function filterMatches(filter, comm) {
return true;
}
function formatAddress(a) {
if (a.number == "" && a.street == "") {
return "no address provided";
}
return a.number + " " + a.street + ", " + a.locality;
}
function formatDistance(meters) {
if (meters == undefined || meters == null) {
return "unknown";
}
if (meters < 1) {
// Convert to millimeters
const mm = Math.round(meters * 1000);
return `${mm} mm`;
} else if (meters >= 1000) {
// Convert to kilometers
const km = Math.round(meters / 1000);
return `${km} km`;
} else {
// Keep in meters
const m = Math.round(meters);
return `${m} m`;
}
}
function communicationsApp() {
return {
apiBase: "/api",
// State
selectedCommunication: null,
searchFilter: "",
typeFilter: "all",
messageText: "",
showPhotoModal: false,
currentPhotoIndex: 0,
showToast: false,
toastTitle: "",
toastMessage: "",
communications: [],
init() {
this.loadFromAPI();
document.addEventListener("DOMContentLoaded", () => {
2026-03-14 18:13:51 +00:00
SSEManager.subscribe("*", (e) => {
if (e.resource.startsWith("rmo:")) {
this.fetchCommunications();
}
});
const map = document.querySelector("map-multipoint");
map.on("load", () => {
map.addLayer({
id: "parcel",
minzoom: 14,
paint: {
"line-color": "#0f0",
},
source: "tegola",
"source-layer": "parcel",
type: "line",
});
});
});
},
// Computed property for filtered reports
get filteredCommunications() {
return this.communications.filter((report) => {
const matchesType =
this.typeFilter === "all" || report.type === this.typeFilter;
return matchesType && filterMatches(this.searchFilter, report);
});
},
async fetchCommunications() {
try {
// Build query parameters from filters
const params = new URLSearchParams();
2026-03-10 15:46:17 +00:00
params.append("sort", "-created");
if (this.typeFilter) params.append("type", this.typeFilter);
const response = await fetch(
`${this.apiBase}/communication?${params}`,
);
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
const data = await response.json();
this.communications = data.communications || data; // Handle different response formats
// if we already had something selected, reset it using the new data
if (this.selectedCommunication) {
const matching = this.communications.filter((report) => {
return report.id == this.selectedCommunication.id;
});
if (matching.length > 0) {
this.selectedCommunication = matching[0];
}
}
} catch (err) {
console.error("Error loading communications:", err);
throw err;
}
},
async loadFromAPI() {
this.loading = true;
this.error = null;
try {
await Promise.all([this.fetchCommunications()]);
} catch (err) {
this.error = err.message;
console.error("Error loading data:", err);
}
},
// Methods
2026-03-07 01:52:59 +00:00
selectCommunication(report) {
this.selectedCommunication = report;
this.messageText = "";
2026-03-07 01:52:59 +00:00
this.updateMap();
},
formatDate(date) {
return new Date(date).toLocaleString();
},
openPhotoViewer(index) {
this.currentPhotoIndex = index;
this.showPhotoModal = true;
},
applyMessageTemplate(template) {
const templates = {
2026-03-07 01:20:47 +00:00
received: `Dear ${this.selectedCommunication?.public_report.reporter.name || "Resident"},\n\nThank you for submitting your report to the Mosquito Control District. We have received your communication and it has been assigned to our team for review.\n\nWe will be in touch if we need any additional information.\n\nBest regards,\nMosquito Control District`,
scheduled: `Dear ${this.selectedCommunication?.public_report.reporter.name || "Resident"},\n\nGood news! Based on your report, we have scheduled a service visit to your area. Our technicians will be conducting mosquito control operations within the next 3-5 business days.\n\nNo action is required on your part.\n\nBest regards,\nMosquito Control District`,
completed: `Dear ${this.selectedCommunication?.public_report.reporter.name || "Resident"},\n\nWe wanted to let you know that our team has completed mosquito control operations in your area based on your recent report.\n\nIf you continue to experience issues, please don't hesitate to submit a new report.\n\nBest regards,\nMosquito Control District`,
need_info: `Dear ${this.selectedCommunication?.public_report.reporter.name || "Resident"},\n\nThank you for your recent report. In order to better assist you, we need some additional information:\n\n- [Specify what information is needed]\n\nPlease reply to this message with the requested details.\n\nBest regards,\nMosquito Control District`,
};
if (templates[template]) {
this.messageText = templates[template];
}
},
async createSignal() {
console.log(
"Marking report as signal:",
this.selectedCommunication.id,
);
try {
const report_id = this.selectedCommunication.id;
const payload = {
reportID: report_id,
};
this.removeCurrentFromList();
const response = await fetch(`api/publicreport/signal`, {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(payload),
});
if (!response.ok) {
throw new Error("Failed to submit signal");
}
this.showNotification(
"Report Marked Signal",
`Report #${report_id} has been marked as useful signal`,
);
this.fetchCommunications();
} catch (err) {
this.error = err.message;
console.error("Error creating lead:", err);
}
},
async markInvalid() {
console.log(
"Marking report as invalid:",
this.selectedCommunication.id,
);
const payload = {
reportID: this.selectedCommunication.id,
};
const response = await fetch(`api/publicreport/invalid`, {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(payload),
});
this.showNotification(
"Report Marked Invalid",
`Report #${this.selectedCommunication.id} has been marked as invalid`,
);
this.removeCurrentFromList();
this.fetchCommunications();
},
removeCurrentFromList() {
const index = this.communications.findIndex(
(c) => c.id === this.selectedCommunication.id,
);
if (index > -1) {
this.communications.splice(index, 1);
}
if (this.communications.length > 0) {
const nextIndex = Math.min(index, this.communications.length - 1);
this.selectedCommunication = this.communications[nextIndex];
} else {
this.selectedCommunication = null;
}
},
async sendMessage() {
if (!this.messageText.trim()) return;
console.log("Sending message reporter:", this.messageText);
const payload = {
message: this.messageText,
reportID: this.selectedCommunication.id,
};
const response = await fetch(`${this.apiBase}/publicreport/message`, {
method: "POST",
headers: {
"Content-Type": "application/json",
},
body: JSON.stringify(payload),
});
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
this.showNotification(
"Message Sent",
2026-03-07 01:20:47 +00:00
`Message successfully sent to ${this.selectedCommunication.public_report.reporter.name}`,
);
this.messageText = "";
},
showNotification(title, message) {
this.toastTitle = title;
this.toastMessage = message;
this.showToast = true;
setTimeout(() => {
this.showToast = false;
}, 3000);
},
// Initialize map (call this on page load if using a map library)
initMap() {
// TODO: Initialize your map library here
// Example with Leaflet:
// this.map = L.map('map-container').setView([28.5383, -81.3792], 12);
// L.tileLayer('https://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png').addTo(this.map);
console.log(
"Map initialization placeholder - implement with your preferred map library",
);
},
2026-03-07 01:52:59 +00:00
updateMap() {
const map = document.querySelector("map-multipoint");
const loc = this.selectedCommunication.public_report.location;
if (loc == null) {
map.ClearMarkers();
map.ResetCamera();
return;
}
let markers = [
new maplibregl.Marker({
color: "#FF0000",
draggable: false,
}).setLngLat([loc.longitude, loc.latitude]),
];
let min = { lat: loc.latitude, lng: loc.longitude };
let max = { lat: loc.latitude, lng: loc.longitude };
for (const i of this.selectedCommunication.public_report.images) {
if (i.location.latitude != 0 && i.location.longitude != 0) {
markers.push(
new maplibregl.Marker({
color: "#00FF00",
draggable: false,
}).setLngLat([i.location.longitude, i.location.latitude]),
);
min.lat = Math.min(min.lat, i.location.latitude);
min.lng = Math.min(min.lng, i.location.longitude);
max.lat = Math.max(max.lat, i.location.latitude);
max.lng = Math.max(max.lng, i.location.longitude);
}
}
map.SetMarkers(markers);
2026-03-07 01:52:59 +00:00
const bounds = new maplibregl.LngLatBounds(
new maplibregl.LngLat(min.lng - 0.01, min.lat - 0.01),
new maplibregl.LngLat(max.lng + 0.01, max.lat + 0.01),
2026-03-07 01:52:59 +00:00
);
map.FitBounds(bounds, {
padding: 50,
});
},
};
}
</script>
{{ end }}
{{ define "content" }}
<div x-data="communicationsApp()" class="h-100">
<div class="container-fluid h-100">
<div class="row h-100">
<!-- Left Column - Communications List -->
<div class="col-md-3 border-end p-0 reports-list">
<div class="p-3 bg-light border-bottom">
<div class="input-group input-group-sm">
<span class="input-group-text"><i class="bi bi-search"></i></span>
<input
type="text"
class="form-control"
placeholder="Filter reports..."
x-model="searchFilter"
/>
</div>
<div class="mt-2 d-flex gap-2">
<button
class="btn btn-sm"
:class="typeFilter === 'all' ? 'btn-primary' : 'btn-outline-secondary'"
@click="typeFilter = 'all'"
>
All
</button>
<button
class="btn btn-sm"
:class="typeFilter === 'nuisance' ? 'btn-danger' : 'btn-outline-secondary'"
@click="typeFilter = 'nuisance'"
>
2026-03-09 18:04:28 +00:00
<i class="bi">{{ template "mosquito.svg" }}</i> Nuisance
</button>
<button
class="btn btn-sm"
2026-03-10 15:47:30 +00:00
:class="typeFilter === 'water' ? 'btn-info' : 'btn-outline-secondary'"
@click="typeFilter = 'water'"
>
<i class="bi bi-droplet"></i> Water
</button>
</div>
</div>
<div class="list-group list-group-flush">
<template x-for="comm in filteredCommunications" :key="comm.id">
<div
class="list-group-item report-card p-3"
:class="{ 'active': selectedCommunication && selectedCommunication.id === comm.id }"
2026-03-07 01:52:59 +00:00
@click="selectCommunication(comm)"
>
<!-- First row: icon, type badge, and time -->
<div
class="d-flex justify-content-between align-items-center mb-2"
>
<div class="d-flex align-items-center">
2026-03-18 19:26:49 +00:00
<template x-if="comm.type === 'publicreport.nuisance'">
2026-03-09 18:04:28 +00:00
<i class="bi fs-4 me-2">{{ template "mosquito.svg" }}</i>
</template>
2026-03-18 19:26:49 +00:00
<template x-if="comm.type === 'publicreport.water'">
<i
class="bi bi-droplet-fill icon-standing-water fs-4 me-2"
></i>
</template>
<span
class="badge"
2026-03-18 19:26:49 +00:00
:class="comm.type === 'publicreport.nuisance' ? 'bg-danger' : 'bg-info'"
x-text="comm.type === 'publicreport.nuisance' ? 'Nuisance' : 'Standing Water'"
></span>
</div>
<small
2026-03-07 01:20:47 +00:00
><time-relative :time="comm.created"></time-relative>
</small>
</div>
<!-- Details section: full width -->
<div>
<div>
<i class="bi bi-geo-alt text-muted"></i>
<span
x-text="comm.public_report.address.postal_code"
class="fw-medium"
></span>
</div>
<small
x-text="formatAddress(comm.public_report.address)"
></small>
2026-03-07 01:57:18 +00:00
<template
x-if="comm.public_report.images && comm.public_report.images.length > 0"
>
<div class="mt-1">
<small class="text-muted">
<i class="bi bi-camera"></i>
2026-03-07 01:57:18 +00:00
<span x-text="comm.public_report.images.length"></span>
photo(s)
</small>
</div>
</template>
</div>
</div>
</template>
</div>
<template x-if="filteredCommunications.length === 0">
<div class="text-center text-muted p-4">
<i class="bi bi-inbox fs-1"></i>
<p class="mt-2">No reports found</p>
</div>
</template>
</div>
<!-- Middle Column - Report Details -->
<div class="col-md-6 p-0">
<div class="p-3">
<div class="map-container">
<map-multipoint
id="map"
organization-id="{{ .Organization.ID }}"
tegola="{{ .URL.Tegola }}"
2026-03-13 00:03:36 +00:00
xmin="{{ .Organization.ServiceArea.Min.X }}"
ymin="{{ .Organization.ServiceArea.Min.Y }}"
xmax="{{ .Organization.ServiceArea.Max.X }}"
ymax="{{ .Organization.ServiceArea.Max.Y }}"
></map-multipoint>
</div>
</div>
<template x-if="!selectedCommunication">
<div
2026-03-09 18:04:28 +00:00
class="d-flex flex-column align-items-center justify-content-center text-muted"
>
<i class="bi bi-hand-index fs-1"></i>
<p class="mt-2">Select a report to view details</p>
</div>
</template>
<template x-if="selectedCommunication">
<div class="h-100 d-flex flex-column">
<!-- Report Details -->
<div class="details-section p-3 border-top">
<div
class="d-flex justify-content-between align-items-start mb-3"
>
<div>
<h5 class="mb-1">
<template
2026-03-18 19:26:49 +00:00
x-if="selectedCommunication.type === 'publicreport.nuisance'"
>
<span
2026-03-09 18:04:28 +00:00
><i class="bi icon-nuisance"
>{{ template "mosquito.svg" }}</i
>
Nuisance Report</span
>
</template>
<template
2026-03-18 19:26:49 +00:00
x-if="selectedCommunication.type === 'publicreport.water'"
>
<span
><i
class="bi bi-droplet-fill icon-standing-water"
></i>
Standing Water Report</span
>
</template>
</h5>
<small class="text-muted"
>Report ID: #<span
x-text="selectedCommunication.id"
></span
></small>
</div>
2026-03-07 01:20:47 +00:00
<span class="badge bg-secondary"
><time-relative
:time="selectedCommunication.created"
></time-relative
></span>
</div>
<!-- Common Fields -->
<div class="card mb-3">
<div class="card-body">
<div class="row g-3">
<div class="col-12">
<label class="form-label text-muted small mb-0">
<i class="bi bi-geo-alt"></i> Address
</label>
<div
class="fw-medium"
x-text="formatAddress(selectedCommunication.public_report.address)"
></div>
</div>
<div class="col-md-6">
<label class="form-label text-muted small mb-0">
<i class="bi bi-person"></i> Reporter Name
</label>
<div
class="fw-medium"
2026-03-09 22:17:56 +00:00
x-text="selectedCommunication.public_report.reporter.name || 'not given'"
></div>
</div>
<div class="col-md-6">
2026-03-09 18:04:28 +00:00
<template
x-if="selectedCommunication.public_report.reporter.has_email"
>
<label class="form-label text-muted small mb-0">
<i class="bi bi-envelope"></i>
</label>
</template>
<template
x-if="selectedCommunication.public_report.reporter.has_phone"
>
<label class="form-label text-muted small mb-0">
<i class="bi bi-phone"></i>
</label>
</template>
</div>
</div>
</div>
</div>
<!-- Nuisance-specific Fields -->
2026-03-18 19:26:49 +00:00
<template
x-if="selectedCommunication.type === 'publicreport.nuisance'"
>
<div class="card mb-3">
<div class="card-header bg-danger bg-opacity-10">
<i class="bi bi-exclamation-triangle"></i> Nuisance
Details
</div>
<div class="card-body">
<div class="row g-3">
<div class="col-md-6">
<label class="form-label text-muted small mb-0">
<i class="bi bi-clock"></i> Time of Day Encountered
</label>
<ul>
<template
x-if="selectedCommunication.public_report.time_of_day_early"
>
<li>Early</li>
</template>
<template
x-if="selectedCommunication.public_report.time_of_day_day"
>
<li>Daytime</li>
</template>
<template
x-if="selectedCommunication.public_report.time_of_day_evening"
>
<li>Evening</li>
</template>
<template
x-if="selectedCommunication.public_report.time_of_day_night"
>
<li>Night</li>
</template>
</ul>
<div
class="fw-medium"
x-text="selectedCommunication.timeOfDay"
></div>
</div>
<div class="col-md-6">
<label class="form-label text-muted small mb-0">
<i class="bi bi-house"></i> Property Area
</label>
<div>
<ul>
<template
x-if="selectedCommunication.public_report.is_location_backyard"
>
<li>Backyard</li>
</template>
<template
x-if="selectedCommunication.public_report.is_location_frontyard"
>
<li>Frontyard</li>
</template>
<template
x-if="selectedCommunication.public_report.is_location_garden"
>
<li>Garden</li>
</template>
<template
x-if="selectedCommunication.public_report.is_location_other"
>
<li>Other</li>
</template>
<template
x-if="selectedCommunication.public_report.is_location_pool"
>
<li>Pool</li>
</template>
</ul>
<template
x-for="area in selectedCommunication.propertyAreas"
:key="area"
>
<span
class="badge bg-secondary me-1"
x-text="area"
></span>
</template>
</div>
</div>
2026-03-09 19:23:16 +00:00
<template
x-if="selectedCommunication.public_report.source_description != ''"
>
<div class="col-12">
<label class="form-label text-muted small mb-0">
<i class="bi bi-chat-text"></i> Source Description
</label>
<div
class="p-2 bg-light rounded"
x-text="selectedCommunication.public_report.source_description || 'none'"
></div>
</div>
</template>
<div class="col-12">
<label class="form-label text-muted small mb-0">
<i class="bi bi-chat-text"></i> Additional Notes
</label>
<div
class="p-2 bg-light rounded"
x-text="selectedCommunication.public_report.additional_info || 'No additional notes'"
></div>
</div>
</div>
</div>
</div>
</template>
<!-- Standing Water-specific Fields -->
<template
2026-03-18 19:26:49 +00:00
x-if="selectedCommunication.type === 'publicreport.water'"
>
<div class="card mb-3">
<div class="card-header bg-info bg-opacity-10">
<i class="bi bi-droplet"></i> Standing Water Details
</div>
<div class="card-body">
<label class="form-label text-muted small mb-0">
<i class="bi bi-eye"></i> Mosquito Life Stages Observed
</label>
<div class="mt-2">
<span
class="badge me-2"
:class="selectedCommunication.observedLarvae ? 'badge-larvae' : 'bg-light text-muted'"
>
<i
class="bi"
:class="selectedCommunication.observedLarvae ? 'bi-check-circle' : 'bi-circle'"
></i>
Larvae
</span>
<span
class="badge me-2"
:class="selectedCommunication.observedPupae ? 'badge-pupae' : 'bg-light text-muted'"
>
<i
class="bi"
:class="selectedCommunication.observedPupae ? 'bi-check-circle' : 'bi-circle'"
></i>
Pupae
</span>
<span
class="badge"
:class="selectedCommunication.observedAdult ? 'badge-adult' : 'bg-light text-muted'"
>
<i
class="bi"
:class="selectedCommunication.observedAdult ? 'bi-check-circle' : 'bi-circle'"
></i>
Adult Mosquitoes
</span>
</div>
<template x-if="selectedCommunication.waterSourceType">
<div class="mt-3">
<label class="form-label text-muted small mb-0">
<i class="bi bi-water"></i> Water Source Type
</label>
<div
class="fw-medium"
x-text="selectedCommunication.waterSourceType"
></div>
</div>
</template>
</div>
</div>
</template>
<!-- Photos Section -->
<div class="card">
<div
class="card-header d-flex justify-content-between align-items-center"
>
<span><i class="bi bi-images"></i> Attached Photos</span>
<span
class="badge bg-primary"
2026-03-07 01:57:18 +00:00
x-text="selectedCommunication.public_report.images ? selectedCommunication.public_report.images.length : 0"
></span>
</div>
<div class="card-body">
<template
2026-03-07 01:57:18 +00:00
x-if="selectedCommunication.public_report.images && selectedCommunication.public_report.images.length > 0"
>
<div class="d-flex flex-wrap gap-2">
<template
2026-03-07 01:57:18 +00:00
x-for="(photo, index) in selectedCommunication.public_report.images"
:key="index"
>
<img
:src="photo.url_content"
class="photo-thumbnail"
@click="openPhotoViewer(index)"
:alt="'Photo ' + (index + 1)"
/>
</template>
</div>
</template>
<template
2026-03-07 01:57:18 +00:00
x-if="!selectedCommunication.public_report.images || selectedCommunication.public_report.images.length === 0"
>
<div class="text-muted text-center py-3">
<i class="bi bi-camera-slash fs-4"></i>
2026-03-07 01:57:18 +00:00
<p class="mb-0 small">No images attached</p>
</div>
</template>
</div>
</div>
</div>
</div>
</template>
</div>
<!-- Right Column - Actions -->
<div class="col-md-3 border-start p-0">
<template x-if="!selectedCommunication">
<div
class="h-100 d-flex flex-column align-items-center justify-content-center text-muted p-3"
>
<i class="bi bi-gear fs-1"></i>
<p class="mt-2 text-center">
Actions will appear here when a report is selected
</p>
</div>
</template>
<template x-if="selectedCommunication">
<div class="actions-panel d-flex flex-column">
<div class="p-3 bg-light border-bottom">
<h6 class="mb-0">
<i class="bi bi-lightning"></i> Quick Actions
</h6>
</div>
<div class="p-3 flex-grow-1">
<!-- Create Signal -->
<div class="d-grid mb-3">
<button
class="btn btn-success btn-lg"
@click="createSignal()"
>
<i class="bi bi-plus-circle me-2"></i>Mark Signal
</button>
<small class="text-muted mt-1">
This report is useful signal
</small>
</div>
<!-- Mark Invalid -->
<div class="d-grid mb-3">
<button class="btn btn-outline-danger" @click="markInvalid()">
<i class="bi bi-x-circle me-2"></i>Mark Invalid
</button>
<small class="text-muted mt-1">
This report isn't useful
</small>
</div>
<hr />
<!-- Message Reporter -->
<template
2026-03-14 20:04:10 +00:00
x-if="!(selectedCommunication?.public_report.reporter.has_email && selectedCommunication?.public_report.reporter.has_phone)"
>
<div class="mb-3">
<h6>
<i class="bi bi-chat-dots"></i> No Reporter Communications
Available
</h6>
</div>
</template>
<template
2026-03-14 20:04:10 +00:00
x-if="selectedCommunication?.public_report.reporter.has_email || selectedCommunication?.public_report.reporter.has_phone"
>
<div class="mb-3">
<h6><i class="bi bi-chat-dots"></i> Message Reporter</h6>
<div class="mb-2">
<label class="form-label small text-muted"
>Quick Templates</label
>
<select
class="form-select form-select-sm"
@change="applyMessageTemplate($event.target.value)"
>
<option value="">Select a template...</option>
<option value="received">Report Received</option>
<option value="scheduled">Service Scheduled</option>
<option value="completed">Service Completed</option>
<option value="need_info">Need More Information</option>
</select>
</div>
<textarea
class="form-control mb-2"
rows="5"
x-model="messageText"
placeholder="Type your message to the reporter..."
></textarea>
<div class="d-grid">
<button
class="btn btn-primary"
@click="sendMessage()"
:disabled="!messageText.trim()"
>
<i class="bi bi-send me-2"></i>Send Message
</button>
</div>
</div>
</template>
<hr />
<!-- Report History -->
<div>
<h6><i class="bi bi-clock-history"></i> Activity Log</h6>
<div class="small">
<template
x-for="entry in selectedCommunication.public_report.log || []"
:key="entry.created"
>
<div class="border-start border-2 ps-2 mb-2">
<template x-if="entry.type == 'created'">
<div>
<div class="text-muted">Initial Report</div>
<small
class="text-muted"
x-text="formatDate(entry.created)"
></small>
</div>
</template>
<template x-if="entry.type == 'message-text'">
<div>
<div class="text-muted">Text Message</div>
<div x-text="entry.message"></div>
<small
class="text-muted"
x-text="formatDate(entry.created)"
></small>
</div>
</template>
<template
x-if="!(entry.type == 'created' || entry.type == 'message-text')"
>
<div x-text="entry.type"></div>
</template>
</div>
</template>
<template
x-if="!selectedCommunication.public_report.log || selectedCommunication.public_report.log.length === 0"
>
<div class="text-muted">No activity yet</div>
</template>
</div>
</div>
</div>
</div>
</template>
</div>
</div>
</div>
<!-- Photo Viewer Modal -->
<div
class="modal fade"
:class="{ 'show d-block': showPhotoModal }"
tabindex="-1"
x-show="showPhotoModal"
@click.self="showPhotoModal = false"
>
<div class="modal-dialog modal-lg modal-dialog-centered">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">
Photo <span x-text="currentPhotoIndex + 1"></span> of
2026-03-07 01:57:18 +00:00
<span
x-text="selectedCommunication?.public_report.images.length || 0"
></span>
</h5>
<button
type="button"
class="btn-close"
@click="showPhotoModal = false"
></button>
</div>
<div class="modal-body text-center">
<template x-if="selectedCommunication && showPhotoModal">
<div>
<img
:src="selectedCommunication.public_report.images[currentPhotoIndex].url_content"
class="img-fluid rounded"
style="max-height: 60vh;"
/>
<!-- EXIF Data Section -->
<div class="mt-4 pt-3 border-top text-start">
<h6 class="text-muted mb-3">Photo Information</h6>
<div class="row g-3">
<div class="col-md-4">
<small class="text-muted d-block">Date Taken</small>
<span
x-text="selectedCommunication.public_report.images[currentPhotoIndex].exif?.created || 'N/A'"
></span>
</div>
<div class="col-md-4">
<small class="text-muted d-block">Camera</small>
<span
x-text="(selectedCommunication.public_report.images[currentPhotoIndex].exif?.make || '') + ' ' + (selectedCommunication.public_report.images[currentPhotoIndex].exif?.model || '') || 'N/A'"
></span>
</div>
<div class="col-md-4">
<small class="text-muted d-block"
>Distance from Reporter</small
>
<template
x-if="selectedCommunication.public_report.images[currentPhotoIndex].location.latitude != 0"
>
<span
x-text="formatDistance(selectedCommunication.public_report.images[currentPhotoIndex].distance_from_reporter_meters)"
></span>
</template>
<template
x-if="selectedCommunication.public_report.images[currentPhotoIndex].location.latitude == 0"
>
<span>No location data in image</span>
</template>
</div>
</div>
</div>
</div>
</template>
</div>
<div class="modal-footer justify-content-between">
<button
class="btn btn-outline-secondary"
@click="currentPhotoIndex = Math.max(0, currentPhotoIndex - 1)"
:disabled="currentPhotoIndex === 0"
>
<i class="bi bi-chevron-left"></i> Previous
</button>
<button
class="btn btn-outline-secondary"
2026-03-07 01:57:18 +00:00
@click="currentPhotoIndex = Math.min(selectedCommunication.public_report.images.length - 1, currentPhotoIndex + 1)"
:disabled="currentPhotoIndex >= (selectedCommunication?.public_report.images?.length || 1) - 1"
>
Next <i class="bi bi-chevron-right"></i>
</button>
</div>
</div>
</div>
</div>
<div
class="modal-backdrop fade show"
x-show="showPhotoModal"
@click="showPhotoModal = false"
></div>
<!-- Toast Notifications -->
<div class="toast-container position-fixed bottom-0 end-0 p-3">
<div class="toast" :class="{ 'show': showToast }" role="alert">
<div class="toast-header">
<i class="bi bi-check-circle text-success me-2"></i>
<strong class="me-auto" x-text="toastTitle"></strong>
<button
type="button"
class="btn-close"
@click="showToast = false"
></button>
</div>
<div class="toast-body" x-text="toastMessage"></div>
</div>
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js"></script>
{{ end }}