2026-02-27 16:51:41 +00:00
{{ 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-06 22:07:48 +00:00
< script
defer
src="https://cdn.jsdelivr.net/npm/alpinejs@3.x.x/dist/cdn.min.js"
>< / script >
2026-03-07 01:20:47 +00:00
< script src = "/static/js/time-relative.js" > < / script >
2026-03-07 01:38:05 +00:00
< script src = "/static/js/map-multipoint.js" > < / script >
2026-02-27 16:51:41 +00:00
< script >
2026-03-06 23:45:12 +00:00
function filterMatches(filter, comm) {
return true;
2026-02-27 16:51:41 +00:00
}
2026-03-06 23:45:12 +00:00
function formatAddress(a) {
2026-03-09 23:02:11 +00:00
if (a.number == "" & & a.street == "") {
return "no address provided";
}
2026-03-09 23:26:24 +00:00
return a.number + " " + a.street + ", " + a.locality;
2026-02-27 16:51:41 +00:00
}
2026-03-10 04:58:43 +00:00
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`;
}
}
2026-03-06 22:07:48 +00:00
function communicationsApp() {
return {
2026-03-06 23:45:12 +00:00
apiBase: "/api",
2026-03-06 22:07:48 +00:00
// State
2026-03-06 23:45:12 +00:00
selectedCommunication: null,
2026-03-06 22:07:48 +00:00
searchFilter: "",
typeFilter: "all",
messageText: "",
showPhotoModal: false,
showInvalidModal: false,
currentPhotoIndex: 0,
invalidReason: "",
invalidNotes: "",
showToast: false,
toastTitle: "",
toastMessage: "",
2026-03-10 16:20:28 +00:00
communications: [],
2026-03-06 22:07:48 +00:00
2026-03-06 23:45:12 +00:00
init() {
this.loadFromAPI();
2026-03-07 01:38:05 +00:00
document.addEventListener("DOMContentLoaded", () => {
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",
});
});
});
2026-03-06 23:45:12 +00:00
},
2026-03-06 22:07:48 +00:00
// Computed property for filtered reports
2026-03-06 23:45:12 +00:00
get filteredCommunications() {
return this.communications.filter((report) => {
2026-03-06 22:07:48 +00:00
const matchesType =
this.typeFilter === "all" || report.type === this.typeFilter;
2026-03-06 23:45:12 +00:00
return matchesType & & filterMatches(this.searchFilter, report);
2026-03-06 22:07:48 +00:00
});
},
2026-03-06 23:45:12 +00:00
async loadCommunications() {
try {
// Build query parameters from filters
const params = new URLSearchParams();
2026-03-10 15:46:17 +00:00
params.append("sort", "-created");
2026-03-06 23:45:12 +00:00
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
} catch (err) {
console.error("Error loading communications:", err);
throw err;
}
},
async loadFromAPI() {
this.loading = true;
this.error = null;
try {
await Promise.all([this.loadCommunications()]);
} catch (err) {
this.error = err.message;
console.error("Error loading data:", err);
}
},
2026-03-06 22:07:48 +00:00
// Methods
2026-03-07 01:52:59 +00:00
selectCommunication(report) {
2026-03-06 23:45:12 +00:00
this.selectedCommunication = report;
2026-03-06 22:07:48 +00:00
this.messageText = "";
2026-03-07 01:52:59 +00:00
this.updateMap();
2026-03-06 22:07:48 +00:00
},
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`,
2026-03-06 22:07:48 +00:00
};
if (templates[template]) {
this.messageText = templates[template];
}
},
createLead() {
// TODO: Implement API call to create lead
2026-03-06 23:45:12 +00:00
console.log(
"Creating lead for report:",
this.selectedCommunication.id,
);
2026-03-06 22:07:48 +00:00
// Add to activity log
2026-03-10 04:58:43 +00:00
if (!this.selectedCommunication.history) {
this.selectedCommunication.history = [];
2026-03-06 22:07:48 +00:00
}
2026-03-10 04:58:43 +00:00
this.selectedCommunication.history.push({
2026-03-06 22:07:48 +00:00
action: "Lead created",
timestamp: new Date(),
});
this.showNotification(
"Lead Created",
2026-03-06 23:45:12 +00:00
`Lead successfully created for report #${this.selectedCommunication.id}`,
2026-03-06 22:07:48 +00:00
);
// Remove from list after creating lead
2026-03-06 23:45:12 +00:00
// this.communications = this.communications.filter(r => r.id !== this.selectedCommunication.id);
// this.selectedCommunication = null;
2026-03-06 22:07:48 +00:00
},
markInvalid() {
// TODO: Implement API call to mark as invalid
console.log(
"Marking report as invalid:",
2026-03-06 23:45:12 +00:00
this.selectedCommunication.id,
2026-03-06 22:07:48 +00:00
this.invalidReason,
this.invalidNotes,
);
this.showNotification(
"Report Marked Invalid",
2026-03-06 23:45:12 +00:00
`Report #${this.selectedCommunication.id} has been marked as ${this.invalidReason}`,
2026-03-06 22:07:48 +00:00
);
// Remove from list
2026-03-06 23:45:12 +00:00
this.communications = this.communications.filter(
(r) => r.id !== this.selectedCommunication.id,
2026-03-06 22:07:48 +00:00
);
2026-03-06 23:45:12 +00:00
this.selectedCommunication = null;
2026-03-06 22:07:48 +00:00
this.showInvalidModal = false;
this.invalidReason = "";
this.invalidNotes = "";
},
sendMessage() {
if (!this.messageText.trim()) return;
// TODO: Implement API call to send message
2026-03-06 23:45:12 +00:00
console.log(
"Sending message to:",
2026-03-07 01:20:47 +00:00
this.selectedCommunication.public_report.reporter.has_email,
2026-03-06 23:45:12 +00:00
);
2026-03-06 22:07:48 +00:00
console.log("Message:", this.messageText);
// Add to activity log
2026-03-10 04:58:43 +00:00
if (!this.selectedCommunication.history) {
this.selectedCommunication.history = [];
2026-03-06 22:07:48 +00:00
}
2026-03-10 04:58:43 +00:00
this.selectedCommunication.history.push({
2026-03-06 22:07:48 +00:00
action: "Message sent to reporter",
timestamp: new Date(),
});
this.showNotification(
"Message Sent",
2026-03-07 01:20:47 +00:00
`Message successfully sent to ${this.selectedCommunication.public_report.reporter.name}`,
2026-03-06 22:07:48 +00:00
);
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");
2026-03-10 04:20:55 +00:00
const loc = this.selectedCommunication.public_report.location;
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(
2026-03-10 04:20:55 +00:00
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,
});
},
2026-03-06 22:07:48 +00:00
};
}
< / script >
2026-02-27 16:51:41 +00:00
{{ end }}
{{ define "content" }}
2026-03-06 22:07:48 +00:00
< div x-data = "communicationsApp()" class = "h-100" >
< div class = "container-fluid h-100" >
< div class = "row h-100" >
2026-03-06 23:45:12 +00:00
<!-- Left Column - Communications List -->
2026-03-06 22:07:48 +00:00
< 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
2026-03-06 22:07:48 +00:00
< / 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'"
2026-03-06 22:07:48 +00:00
>
< i class = "bi bi-droplet" > < / i > Water
< / button >
< / div >
< / div >
< div class = "list-group list-group-flush" >
2026-03-06 23:45:12 +00:00
< template x-for = "comm in filteredCommunications" :key = "comm.id" >
2026-03-06 22:07:48 +00:00
< div
class="list-group-item report-card p-3"
2026-03-06 23:45:12 +00:00
:class="{ 'active': selectedCommunication & & selectedCommunication.id === comm.id }"
2026-03-07 01:52:59 +00:00
@click="selectCommunication(comm)"
2026-03-06 22:07:48 +00:00
>
2026-03-06 22:44:11 +00:00
<!-- 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-06 23:45:12 +00:00
< template x-if = "comm.type === 'nuisance'" >
2026-03-09 18:04:28 +00:00
< i class = "bi fs-4 me-2" > {{ template "mosquito.svg" }}< / i >
2026-03-06 22:07:48 +00:00
< / template >
2026-03-06 23:45:12 +00:00
< template x-if = "comm.type === 'standing_water'" >
2026-03-06 22:07:48 +00:00
< i
2026-03-06 22:44:11 +00:00
class="bi bi-droplet-fill icon-standing-water fs-4 me-2"
2026-03-06 22:07:48 +00:00
>< / i >
< / template >
2026-03-06 22:44:11 +00:00
< span
class="badge"
2026-03-06 23:45:12 +00:00
:class="comm.type === 'nuisance' ? 'bg-danger' : 'bg-info'"
x-text="comm.type === 'nuisance' ? 'Nuisance' : 'Standing Water'"
2026-03-06 22:44:11 +00:00
>< / span >
2026-03-06 22:07:48 +00:00
< / div >
2026-03-07 01:26:25 +00:00
< small
2026-03-07 01:20:47 +00:00
>< time-relative :time = "comm.created" > < / time-relative >
< / small >
2026-03-06 22:44:11 +00:00
< / div >
<!-- Details section: full width -->
< div >
< div >
< i class = "bi bi-geo-alt text-muted" > < / i >
2026-03-06 23:45:12 +00:00
< span
x-text="comm.public_report.address.postal_code"
class="fw-medium"
>< / span >
2026-03-06 22:44:11 +00:00
< / div >
< small
2026-03-09 23:02:11 +00:00
x-text="formatAddress(comm.public_report.address)"
2026-03-06 22:44:11 +00:00
>< / small >
2026-03-07 01:57:18 +00:00
< template
x-if="comm.public_report.images & & comm.public_report.images.length > 0"
>
2026-03-06 22:07:48 +00:00
< div class = "mt-1" >
2026-03-06 22:44:11 +00:00
< 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)
2026-03-06 22:44:11 +00:00
< / small >
2026-03-06 22:07:48 +00:00
< / div >
2026-03-06 22:44:11 +00:00
< / template >
2026-03-06 22:07:48 +00:00
< / div >
< / div >
< / template >
< / div >
2026-02-27 16:51:41 +00:00
2026-03-06 23:45:12 +00:00
< template x-if = "filteredCommunications.length === 0" >
2026-03-06 22:07:48 +00:00
< 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 >
2026-02-27 16:51:41 +00:00
< / div >
2026-03-06 22:07:48 +00:00
<!-- Middle Column - Report Details -->
< div class = "col-md-6 p-0" >
2026-03-07 01:38:05 +00:00
< div class = "p-3" >
< div class = "map-container" >
< map-multipoint
id="map"
organization-id="{{ .Organization.ID }}"
tegola="{{ .URL.Tegola }}"
xmin="{{ .Organization.ServiceAreaXmin.GetOr 0 }}"
ymin="{{ .Organization.ServiceAreaYmin.GetOr 0 }}"
xmax="{{ .Organization.ServiceAreaXmax.GetOr 0 }}"
ymax="{{ .Organization.ServiceAreaYmax.GetOr 0 }}"
>< / map-multipoint >
< / div >
< / div >
2026-03-06 23:45:12 +00:00
< template x-if = "!selectedCommunication" >
2026-03-06 22:07:48 +00:00
< div
2026-03-09 18:04:28 +00:00
class="d-flex flex-column align-items-center justify-content-center text-muted"
2026-03-06 22:07:48 +00:00
>
< i class = "bi bi-hand-index fs-1" > < / i >
< p class = "mt-2" > Select a report to view details< / p >
< / div >
< / template >
2026-02-27 16:51:41 +00:00
2026-03-06 23:45:12 +00:00
< template x-if = "selectedCommunication" >
2026-03-06 22:07:48 +00:00
< 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" >
2026-03-06 23:45:12 +00:00
< template
x-if="selectedCommunication.type === 'nuisance'"
>
2026-03-06 22:07:48 +00:00
< span
2026-03-09 18:04:28 +00:00
>< i class = "bi icon-nuisance"
>{{ template "mosquito.svg" }}< /i
>
2026-03-06 22:07:48 +00:00
Nuisance Report< /span
>
< / template >
2026-03-06 23:45:12 +00:00
< template
x-if="selectedCommunication.type === 'standing_water'"
>
2026-03-06 22:07:48 +00:00
< span
>< i
class="bi bi-droplet-fill icon-standing-water"
>< / i >
Standing Water Report< /span
>
< / template >
< / h5 >
< small class = "text-muted"
2026-03-06 23:45:12 +00:00
>Report ID: #< span
x-text="selectedCommunication.id"
>< /span
2026-03-06 22:07:48 +00:00
>< / small >
< / div >
2026-03-07 01:20:47 +00:00
< span class = "badge bg-secondary"
>< time-relative
:time="selectedCommunication.created"
>< /time-relative
2026-03-06 22:07:48 +00:00
>< / span >
< / div >
2026-02-27 16:51:41 +00:00
2026-03-06 22:07:48 +00:00
<!-- 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"
2026-03-06 23:45:12 +00:00
x-text="formatAddress(selectedCommunication.public_report.address)"
2026-03-06 22:07:48 +00:00
>< / 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'"
2026-03-06 22:07:48 +00:00
>< / div >
2026-03-09 19:12:07 +00:00
< / 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 >
2026-03-06 22:07:48 +00:00
< / div >
< / div >
< / div >
< / div >
2026-02-27 16:51:41 +00:00
2026-03-06 22:07:48 +00:00
<!-- Nuisance - specific Fields -->
2026-03-06 23:45:12 +00:00
< template x-if = "selectedCommunication.type === 'nuisance'" >
2026-03-06 22:07:48 +00:00
< 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 >
2026-03-07 02:18:40 +00:00
< 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 >
2026-03-06 22:07:48 +00:00
< div
class="fw-medium"
2026-03-06 23:45:12 +00:00
x-text="selectedCommunication.timeOfDay"
2026-03-06 22:07:48 +00:00
>< / 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 >
2026-03-07 02:18:40 +00:00
< 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 >
2026-03-06 22:07:48 +00:00
< template
2026-03-06 23:45:12 +00:00
x-for="area in selectedCommunication.propertyAreas"
2026-03-06 22:07:48 +00:00
: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 >
2026-03-06 22:07:48 +00:00
< 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"
2026-03-07 02:18:40 +00:00
x-text="selectedCommunication.public_report.additional_info || 'No additional notes'"
2026-03-06 22:07:48 +00:00
>< / div >
< / div >
< / div >
< / div >
< / div >
< / template >
2026-02-27 16:51:41 +00:00
2026-03-06 22:07:48 +00:00
<!-- Standing Water - specific Fields -->
2026-03-06 23:45:12 +00:00
< template
x-if="selectedCommunication.type === 'standing_water'"
>
2026-03-06 22:07:48 +00:00
< 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"
2026-03-06 23:45:12 +00:00
:class="selectedCommunication.observedLarvae ? 'badge-larvae' : 'bg-light text-muted'"
2026-03-06 22:07:48 +00:00
>
< i
class="bi"
2026-03-06 23:45:12 +00:00
:class="selectedCommunication.observedLarvae ? 'bi-check-circle' : 'bi-circle'"
2026-03-06 22:07:48 +00:00
>< / i >
Larvae
< / span >
< span
class="badge me-2"
2026-03-06 23:45:12 +00:00
:class="selectedCommunication.observedPupae ? 'badge-pupae' : 'bg-light text-muted'"
2026-03-06 22:07:48 +00:00
>
< i
class="bi"
2026-03-06 23:45:12 +00:00
:class="selectedCommunication.observedPupae ? 'bi-check-circle' : 'bi-circle'"
2026-03-06 22:07:48 +00:00
>< / i >
Pupae
< / span >
< span
class="badge"
2026-03-06 23:45:12 +00:00
:class="selectedCommunication.observedAdult ? 'badge-adult' : 'bg-light text-muted'"
2026-03-06 22:07:48 +00:00
>
< i
class="bi"
2026-03-06 23:45:12 +00:00
:class="selectedCommunication.observedAdult ? 'bi-check-circle' : 'bi-circle'"
2026-03-06 22:07:48 +00:00
>< / i >
Adult Mosquitoes
< / span >
< / div >
2026-03-06 23:45:12 +00:00
< template x-if = "selectedCommunication.waterSourceType" >
2026-03-06 22:07:48 +00:00
< 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"
2026-03-06 23:45:12 +00:00
x-text="selectedCommunication.waterSourceType"
2026-03-06 22:07:48 +00:00
>< / div >
< / div >
< / template >
< / div >
< / div >
< / template >
2026-02-27 16:51:41 +00:00
2026-03-06 22:07:48 +00:00
<!-- 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"
2026-03-06 22:07:48 +00:00
>< / 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"
2026-03-06 22:07:48 +00:00
>
< 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"
2026-03-06 22:07:48 +00:00
:key="index"
>
< img
2026-03-09 19:29:48 +00:00
:src="photo.url_content"
2026-03-06 22:07:48 +00:00
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"
2026-03-06 22:07:48 +00:00
>
< 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 >
2026-03-06 22:07:48 +00:00
< / div >
< / template >
< / div >
< / div >
< / div >
2026-02-27 16:51:41 +00:00
< / div >
2026-03-06 22:07:48 +00:00
< / template >
< / div >
2026-02-27 16:51:41 +00:00
2026-03-06 22:07:48 +00:00
<!-- Right Column - Actions -->
< div class = "col-md-3 border-start p-0" >
2026-03-06 23:45:12 +00:00
< template x-if = "!selectedCommunication" >
2026-03-06 22:07:48 +00:00
< 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 >
2026-02-27 16:51:41 +00:00
< / div >
2026-03-06 22:07:48 +00:00
< / template >
2026-02-27 16:51:41 +00:00
2026-03-06 23:45:12 +00:00
< template x-if = "selectedCommunication" >
2026-03-06 22:07:48 +00:00
< 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 Lead -->
< div class = "d-grid mb-3" >
< button class = "btn btn-success btn-lg" @ click = "createLead()" >
< i class = "bi bi-plus-circle me-2" > < / i > Create Lead
< / button >
< small class = "text-muted mt-1" >
Creates a new service lead from this report
< / small >
< / div >
<!-- Mark Invalid -->
< div class = "d-grid mb-3" >
< button
class="btn btn-outline-danger"
@click="showInvalidModal = true"
>
< i class = "bi bi-x-circle me-2" > < / i > Mark Invalid
< / button >
< small class = "text-muted mt-1" >
Mark as spam, duplicate, or out of district
< / small >
< / div >
2026-02-27 16:51:41 +00:00
2026-03-06 22:07:48 +00:00
< hr / >
<!-- Message Reporter -->
< 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 >
< hr / >
<!-- Report History -->
< div >
< h6 > < i class = "bi bi-clock-history" > < / i > Activity Log< / h6 >
< div class = "small" >
< template
2026-03-10 04:58:43 +00:00
x-for="activity in selectedCommunication.history || []"
2026-03-06 22:07:48 +00:00
:key="activity.timestamp"
>
< div class = "border-start border-2 ps-2 mb-2" >
< div class = "text-muted" x-text = "activity.action" > < / div >
< small
class="text-muted"
x-text="formatDate(activity.timestamp)"
>< / small >
< / div >
< / template >
< template
2026-03-10 04:58:43 +00:00
x-if="!selectedCommunication.history || selectedCommunication.history.length === 0"
2026-03-06 22:07:48 +00:00
>
< div class = "text-muted" > No activity yet< / div >
< / template >
< / div >
< / div >
2026-02-27 16:51:41 +00:00
< / div >
< / div >
2026-03-06 22:07:48 +00:00
< / template >
< / div >
< / div >
< / div >
2026-02-27 16:51:41 +00:00
2026-03-06 22:07:48 +00:00
<!-- 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 >
2026-03-06 22:07:48 +00:00
< / h5 >
< button
type="button"
class="btn-close"
@click="showPhotoModal = false"
>< / button >
< / div >
< div class = "modal-body text-center" >
2026-03-06 23:45:12 +00:00
< template
2026-03-07 01:57:18 +00:00
x-if="selectedCommunication & & selectedCommunication.public_report.images"
2026-03-06 23:45:12 +00:00
>
2026-03-09 19:32:19 +00:00
< 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
>
2026-03-10 15:50:39 +00:00
< 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 >
2026-03-09 19:32:19 +00:00
< / div >
< / div >
< / div >
< / div >
2026-03-06 22:07:48 +00:00
< / 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"
2026-03-06 22:07:48 +00:00
>
Next < i class = "bi bi-chevron-right" > < / i >
< / button >
2026-02-27 16:51:41 +00:00
< / div >
< / div >
< / div >
2026-03-06 22:07:48 +00:00
< / div >
< div
class="modal-backdrop fade show"
x-show="showPhotoModal"
@click="showPhotoModal = false"
>< / div >
2026-02-27 16:51:41 +00:00
2026-03-06 22:07:48 +00:00
<!-- Invalid Report Modal -->
< div
class="modal fade"
:class="{ 'show d-block': showInvalidModal }"
tabindex="-1"
x-show="showInvalidModal"
@click.self="showInvalidModal = false"
>
< div class = "modal-dialog" >
< div class = "modal-content" >
< div class = "modal-header" >
< h5 class = "modal-title" >
< i class = "bi bi-x-circle text-danger" > < / i > Mark as Invalid
< / h5 >
< button
type="button"
class="btn-close"
@click="showInvalidModal = false"
>< / button >
< / div >
< div class = "modal-body" >
< p > Please select a reason for marking this report as invalid:< / p >
< div class = "form-check mb-2" >
< input
class="form-check-input"
type="radio"
name="invalidReason"
id="reason1"
value="spam"
x-model="invalidReason"
/>
< label class = "form-check-label" for = "reason1" > Spam or junk< / label >
< / div >
< div class = "form-check mb-2" >
< input
class="form-check-input"
type="radio"
name="invalidReason"
id="reason2"
value="duplicate"
x-model="invalidReason"
/>
< label class = "form-check-label" for = "reason2"
>Duplicate report< /label
>
< / div >
< div class = "form-check mb-2" >
< input
class="form-check-input"
type="radio"
name="invalidReason"
id="reason3"
value="out_of_district"
x-model="invalidReason"
/>
< label class = "form-check-label" for = "reason3"
>Outside service district< /label
>
< / div >
< div class = "form-check mb-2" >
< input
class="form-check-input"
type="radio"
name="invalidReason"
id="reason4"
value="insufficient"
x-model="invalidReason"
/>
< label class = "form-check-label" for = "reason4"
>Insufficient information< /label
>
< / div >
< div class = "form-check mb-3" >
< input
class="form-check-input"
type="radio"
name="invalidReason"
id="reason5"
value="other"
x-model="invalidReason"
/>
< label class = "form-check-label" for = "reason5" > Other< / label >
< / div >
< textarea
class="form-control"
rows="2"
placeholder="Additional notes (optional)"
x-model="invalidNotes"
>< / textarea >
< / div >
< div class = "modal-footer" >
< button
type="button"
class="btn btn-secondary"
@click="showInvalidModal = false"
>
Cancel
< / button >
< button
type="button"
class="btn btn-danger"
@click="markInvalid()"
:disabled="!invalidReason"
>
Confirm Invalid
< / button >
< / div >
< / div >
< / div >
< / div >
< div
class="modal-backdrop fade show"
x-show="showInvalidModal"
@click="showInvalidModal = false"
>< / div >
2026-02-27 16:51:41 +00:00
2026-03-06 22:07:48 +00:00
<!-- 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 >
2026-02-27 16:51:41 +00:00
< / div >
2026-03-06 22:07:48 +00:00
< / div >
2026-02-27 16:51:41 +00:00
< / div >
2026-03-06 22:07:48 +00:00
< script src = "https://cdn.jsdelivr.net/npm/bootstrap@5.3.2/dist/js/bootstrap.bundle.min.js" > < / script >
2026-02-27 16:51:41 +00:00
{{ end }}