Make time-relative a separable custom element I can reuse

This commit is contained in:
Eli Ribble 2026-03-06 16:48:10 +00:00
parent 0fbd1c3fca
commit 49a109ae85
No known key found for this signature in database
2 changed files with 39 additions and 75 deletions

View file

@ -3,7 +3,7 @@
class ReportTable extends HTMLElement { class ReportTable extends HTMLElement {
constructor() { constructor() {
super(); super();
this.attachShadow({ mode: 'open' }); this.attachShadow({ mode: "open" });
this._reports = []; this._reports = [];
} }
@ -26,58 +26,19 @@ class ReportTable extends HTMLElement {
this.render(); this.render();
} }
/**
* Format timestamp to relative time (e.g., "2 days ago")
*/
formatRelativeTime(timestamp) {
const now = new Date();
const date = new Date(timestamp);
const diffInSeconds = Math.floor((now - date) / 1000);
// Time units in seconds
const minute = 60;
const hour = minute * 60;
const day = hour * 24;
const week = day * 7;
const month = day * 30;
const year = day * 365;
if (diffInSeconds < minute) {
return 'just now';
} else if (diffInSeconds < hour) {
const minutes = Math.floor(diffInSeconds / minute);
return `${minutes} ${minutes === 1 ? 'minute' : 'minutes'} ago`;
} else if (diffInSeconds < day) {
const hours = Math.floor(diffInSeconds / hour);
return `${hours} ${hours === 1 ? 'hour' : 'hours'} ago`;
} else if (diffInSeconds < week) {
const days = Math.floor(diffInSeconds / day);
return `${days} ${days === 1 ? 'day' : 'days'} ago`;
} else if (diffInSeconds < month) {
const weeks = Math.floor(diffInSeconds / week);
return `${weeks} ${weeks === 1 ? 'week' : 'weeks'} ago`;
} else if (diffInSeconds < year) {
const months = Math.floor(diffInSeconds / month);
return `${months} ${months === 1 ? 'month' : 'months'} ago`;
} else {
const years = Math.floor(diffInSeconds / year);
return `${years} ${years === 1 ? 'year' : 'years'} ago`;
}
}
/** /**
* Get badge color class based on report type * Get badge color class based on report type
*/ */
getTypeClass(type) { getTypeClass(type) {
switch(type) { switch (type) {
case 'nuisance': case "nuisance":
return 'bg-danger'; return "bg-danger";
case 'quick': case "quick":
return 'bg-primary'; return "bg-primary";
case 'pool': case "pool":
return 'bg-success'; return "bg-success";
default: default:
return 'bg-secondary'; return "bg-secondary";
} }
} }
@ -85,17 +46,17 @@ class ReportTable extends HTMLElement {
* Get badge color class based on report status * Get badge color class based on report status
*/ */
getStatusClass(status) { getStatusClass(status) {
switch(status) { switch (status) {
case 'Reported': case "Reported":
return 'bg-warning text-dark'; return "bg-warning text-dark";
case 'Assigned': case "Assigned":
return 'bg-info text-dark'; return "bg-info text-dark";
case 'On-Hold': case "On-Hold":
return 'bg-secondary'; return "bg-secondary";
case 'Complete': case "Complete":
return 'bg-success'; return "bg-success";
default: default:
return 'bg-secondary'; return "bg-secondary";
} }
} }
@ -195,18 +156,17 @@ class ReportTable extends HTMLElement {
// Generate rows for each report // Generate rows for each report
if (this._reports.length > 0) { if (this._reports.length > 0) {
this._reports.forEach(report => { this._reports.forEach((report) => {
const typeClass = this.getTypeClass(report.type); const typeClass = this.getTypeClass(report.type);
const statusClass = this.getStatusClass(report.status); const statusClass = this.getStatusClass(report.status);
const formattedId = this.formatId(report.id); const formattedId = this.formatId(report.id);
const relativeTime = this.formatRelativeTime(report.created);
tableHTML += ` tableHTML += `
<tr class="clickable-row" data-report-id="${report.id}"> <tr class="clickable-row" data-report-id="${report.id}">
<td><strong>${formattedId}</strong></td> <td><strong>${formattedId}</strong></td>
<td>${relativeTime}</td> <td><time-relative time="${report.created}"</time-relative></td>
<td><span class="badge ${typeClass} report-type-badge">${report.type}</span></td> <td><span class="badge ${typeClass} report-type-badge">${report.type}</span></td>
<td>${report.address || 'N/A'}</td> <td>${report.address || "N/A"}</td>
<td><span class="badge ${statusClass}">${report.status}</span></td> <td><span class="badge ${statusClass}">${report.status}</span></td>
</tr> </tr>
`; `;
@ -225,23 +185,25 @@ class ReportTable extends HTMLElement {
// Set the shadow DOM content // Set the shadow DOM content
this.shadowRoot.innerHTML = style + tableHTML; this.shadowRoot.innerHTML = style + tableHTML;
// Add click handlers for the rows // Add click handlers for the rows
this.shadowRoot.querySelectorAll("tr.clickable-row").forEach(el => { this.shadowRoot.querySelectorAll("tr.clickable-row").forEach((el) => {
el.addEventListener("click", e => { el.addEventListener("click", (e) => {
let element = e.target let element = e.target;
while (element.nodeName != "TR" ) { while (element.nodeName != "TR") {
element = element.parentElement; element = element.parentElement;
} }
this.dispatchEvent(new CustomEvent("row-clicked", { this.dispatchEvent(
bubbles: true, new CustomEvent("row-clicked", {
composed: true, // Allows event to cross shadow DOM boundary bubbles: true,
detail: { composed: true, // Allows event to cross shadow DOM boundary
reportId: element.dataset.reportId detail: {
} reportId: element.dataset.reportId,
})); },
}),
);
}); });
}) });
} }
} }
// Register the custom element // Register the custom element
customElements.define('report-table', ReportTable); customElements.define("report-table", ReportTable);

View file

@ -10,6 +10,8 @@
<script src="/static/js/geocode.js"></script> <script src="/static/js/geocode.js"></script>
<script src="/static/js/location.js"></script> <script src="/static/js/location.js"></script>
<script src="/static/js/map-multipoint.js"></script> <script src="/static/js/map-multipoint.js"></script>
<-- ordering matters since report table depends on time-relative !-->
<script src="/static/js/time-relative.js"></script>
<script src="/static/js/report-table.js"></script> <script src="/static/js/report-table.js"></script>
<script> <script>
const MAPBOX_ACCESS_TOKEN = '{{.MapboxToken}}'; const MAPBOX_ACCESS_TOKEN = '{{.MapboxToken}}';