Compare commits
5
Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1fb984e352 | ||
|
|
ce0ea66994 | ||
|
|
4fd2c7ce7d | ||
|
|
2ff7345a73 | ||
|
|
1de04d4908 |
@@ -241,6 +241,11 @@
|
|||||||
trigger.focus();
|
trigger.focus();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// Announce the close so whoever opened the modal can undo optimistic UI or
|
||||||
|
// clean up a dynamically-inserted overlay. A modal can be dismissed four
|
||||||
|
// ways — the ✕ button, a Cancel button, a backdrop click, and Escape — and
|
||||||
|
// the last two are handled globally here, so button-only listeners miss them.
|
||||||
|
el.dispatchEvent(new CustomEvent('lt:modalclose', { bubbles: true }));
|
||||||
}
|
}
|
||||||
|
|
||||||
function closeAllModals() {
|
function closeAllModals() {
|
||||||
@@ -2774,6 +2779,9 @@
|
|||||||
setTimeout(() => { if (modalEl && modalEl.parentNode) modalEl.remove(); }, 300);
|
setTimeout(() => { if (modalEl && modalEl.parentNode) modalEl.remove(); }, 300);
|
||||||
resolve(value);
|
resolve(value);
|
||||||
};
|
};
|
||||||
|
// Any dismissal counts as "no comment given", including a backdrop click or
|
||||||
|
// Escape, which close the overlay through the global handlers above.
|
||||||
|
modalEl.addEventListener('lt:modalclose', () => finish(null));
|
||||||
modalEl.querySelector('[data-modal-close]').addEventListener('click', () => finish(null));
|
modalEl.querySelector('[data-modal-close]').addEventListener('click', () => finish(null));
|
||||||
document.getElementById(modalId + '_cancel').addEventListener('click', () => finish(null));
|
document.getElementById(modalId + '_cancel').addEventListener('click', () => finish(null));
|
||||||
document.getElementById(modalId + '_confirm').addEventListener('click', () => {
|
document.getElementById(modalId + '_confirm').addEventListener('click', () => {
|
||||||
|
|||||||
+23
-7
@@ -550,7 +550,7 @@ function bulkClose() {
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
document.body.insertAdjacentHTML('beforeend', modalHtml);
|
document.body.insertAdjacentHTML('beforeend', modalHtml);
|
||||||
lt.modal.open('bulkCloseModal');
|
openModalWithDismiss('bulkCloseModal', closeBulkCloseModal);
|
||||||
}
|
}
|
||||||
|
|
||||||
function closeBulkCloseModal() {
|
function closeBulkCloseModal() {
|
||||||
@@ -633,7 +633,7 @@ function showBulkAssignModal() {
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
document.body.insertAdjacentHTML('beforeend', modalHtml);
|
document.body.insertAdjacentHTML('beforeend', modalHtml);
|
||||||
lt.modal.open('bulkAssignModal');
|
openModalWithDismiss('bulkAssignModal', closeBulkAssignModal);
|
||||||
setTimeout(() => { const inp = document.getElementById('bulkAssignUserInput'); if (inp) inp.focus(); }, 120);
|
setTimeout(() => { const inp = document.getElementById('bulkAssignUserInput'); if (inp) inp.focus(); }, 120);
|
||||||
|
|
||||||
lt.api.get('/api/get_users.php')
|
lt.api.get('/api/get_users.php')
|
||||||
@@ -731,7 +731,7 @@ function showBulkPriorityModal() {
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
document.body.insertAdjacentHTML('beforeend', modalHtml);
|
document.body.insertAdjacentHTML('beforeend', modalHtml);
|
||||||
lt.modal.open('bulkPriorityModal');
|
openModalWithDismiss('bulkPriorityModal', closeBulkPriorityModal);
|
||||||
}
|
}
|
||||||
|
|
||||||
function closeBulkPriorityModal() {
|
function closeBulkPriorityModal() {
|
||||||
@@ -845,7 +845,7 @@ function showBulkStatusModal() {
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
document.body.insertAdjacentHTML('beforeend', modalHtml);
|
document.body.insertAdjacentHTML('beforeend', modalHtml);
|
||||||
lt.modal.open('bulkStatusModal');
|
openModalWithDismiss('bulkStatusModal', closeBulkStatusModal);
|
||||||
}
|
}
|
||||||
|
|
||||||
function closeBulkStatusModal() {
|
function closeBulkStatusModal() {
|
||||||
@@ -942,7 +942,7 @@ function showBulkDeleteModal() {
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
document.body.insertAdjacentHTML('beforeend', modalHtml);
|
document.body.insertAdjacentHTML('beforeend', modalHtml);
|
||||||
lt.modal.open('bulkDeleteModal');
|
openModalWithDismiss('bulkDeleteModal', closeBulkDeleteModal);
|
||||||
}
|
}
|
||||||
|
|
||||||
function closeBulkDeleteModal() {
|
function closeBulkDeleteModal() {
|
||||||
@@ -1032,6 +1032,22 @@ function showInputModal(title, label, placeholder = '', onSubmit, onCancel = nul
|
|||||||
input.addEventListener('keypress', (e) => { if (e.key === 'Enter') handleSubmit(); });
|
input.addEventListener('keypress', (e) => { if (e.key === 'Enter') handleSubmit(); });
|
||||||
document.getElementById(`${modalId}_cancel`).addEventListener('click', () => cleanup(onCancel));
|
document.getElementById(`${modalId}_cancel`).addEventListener('click', () => cleanup(onCancel));
|
||||||
modal.querySelector('[data-modal-close]').addEventListener('click', () => cleanup(onCancel));
|
modal.querySelector('[data-modal-close]').addEventListener('click', () => cleanup(onCancel));
|
||||||
|
// Backdrop click / Escape close the overlay via base.js's global handlers.
|
||||||
|
modal.addEventListener('lt:modalclose', () => cleanup(onCancel));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Open a dynamically-inserted modal and make sure it tears itself down however it
|
||||||
|
* is dismissed. base.js handles backdrop clicks and Escape globally, so wiring
|
||||||
|
* only the ✕/Cancel buttons leaves the overlay in the DOM — and the next open
|
||||||
|
* inserts a second element with the same id, which then shadows the live one.
|
||||||
|
*/
|
||||||
|
function openModalWithDismiss(modalId, onDismiss) {
|
||||||
|
lt.modal.open(modalId);
|
||||||
|
const el = document.getElementById(modalId);
|
||||||
|
// lt.modal.close() early-returns once .is-open is gone, so the close call
|
||||||
|
// inside onDismiss cannot re-enter this listener.
|
||||||
|
if (el) el.addEventListener('lt:modalclose', onDismiss);
|
||||||
}
|
}
|
||||||
|
|
||||||
// ========================================
|
// ========================================
|
||||||
@@ -1069,7 +1085,7 @@ function quickStatusChange(ticketId, currentStatus) {
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
document.body.insertAdjacentHTML('beforeend', modalHtml);
|
document.body.insertAdjacentHTML('beforeend', modalHtml);
|
||||||
lt.modal.open('quickStatusModal');
|
openModalWithDismiss('quickStatusModal', closeQuickStatusModal);
|
||||||
}
|
}
|
||||||
|
|
||||||
function closeQuickStatusModal() {
|
function closeQuickStatusModal() {
|
||||||
@@ -1136,7 +1152,7 @@ function quickAssign(ticketId) {
|
|||||||
`;
|
`;
|
||||||
|
|
||||||
document.body.insertAdjacentHTML('beforeend', modalHtml);
|
document.body.insertAdjacentHTML('beforeend', modalHtml);
|
||||||
lt.modal.open('quickAssignModal');
|
openModalWithDismiss('quickAssignModal', closeQuickAssignModal);
|
||||||
|
|
||||||
lt.api.get('/api/get_users.php')
|
lt.api.get('/api/get_users.php')
|
||||||
.then(data => {
|
.then(data => {
|
||||||
|
|||||||
+22
-2
@@ -284,7 +284,15 @@ function addComment() {
|
|||||||
// Clear the comment box
|
// Clear the comment box
|
||||||
const nc = document.getElementById('newComment');
|
const nc = document.getElementById('newComment');
|
||||||
if (nc) nc.value = '';
|
if (nc) nc.value = '';
|
||||||
|
|
||||||
|
// Clear the live preview — clearing the textarea programmatically
|
||||||
|
// does not fire 'input', so updatePreview() never runs
|
||||||
|
const previewDiv = document.getElementById('markdownPreview');
|
||||||
|
if (previewDiv) {
|
||||||
|
previewDiv.innerHTML = '';
|
||||||
|
previewDiv.classList.add('is-hidden');
|
||||||
|
}
|
||||||
|
|
||||||
// Format the comment text for display
|
// Format the comment text for display
|
||||||
let displayText;
|
let displayText;
|
||||||
if (isMarkdownEnabled) {
|
if (isMarkdownEnabled) {
|
||||||
@@ -521,7 +529,19 @@ function updateTicketStatus() {
|
|||||||
`);
|
`);
|
||||||
const modal = document.getElementById(modalId);
|
const modal = document.getElementById(modalId);
|
||||||
lt.modal.open(modalId);
|
lt.modal.open(modalId);
|
||||||
const cleanup = (ok) => { lt.modal.close(modalId); setTimeout(() => modal.remove(), 300); if (!ok) statusSelect.selectedIndex = 0; };
|
let settled = false;
|
||||||
|
const cleanup = (ok) => {
|
||||||
|
if (settled) return; // lt.modal.close() below re-enters via lt:modalclose
|
||||||
|
settled = true;
|
||||||
|
lt.modal.close(modalId);
|
||||||
|
setTimeout(() => modal.remove(), 300);
|
||||||
|
if (!ok) statusSelect.selectedIndex = 0;
|
||||||
|
};
|
||||||
|
// Backdrop click and Escape close the overlay through base.js's global
|
||||||
|
// handlers. Without this the dropdown kept displaying the new status
|
||||||
|
// while the server was never called, so the ticket looked closed until
|
||||||
|
// a reload revealed it was still open.
|
||||||
|
modal.addEventListener('lt:modalclose', () => cleanup(false));
|
||||||
modal.querySelector('[data-modal-close]').addEventListener('click', () => cleanup(false));
|
modal.querySelector('[data-modal-close]').addEventListener('click', () => cleanup(false));
|
||||||
document.getElementById(`${modalId}_cancel`).addEventListener('click', () => cleanup(false));
|
document.getElementById(`${modalId}_cancel`).addEventListener('click', () => cleanup(false));
|
||||||
document.getElementById(`${modalId}_confirm`).addEventListener('click', () => {
|
document.getElementById(`${modalId}_confirm`).addEventListener('click', () => {
|
||||||
|
|||||||
+65
-2
@@ -277,9 +277,64 @@ include __DIR__ . '/layout_header.php';
|
|||||||
array_values($stats['by_category'] ?? [])
|
array_values($stats['by_category'] ?? [])
|
||||||
))) ?>;
|
))) ?>;
|
||||||
|
|
||||||
|
// ── Click-to-filter ────────────────────────────────────────────────────────
|
||||||
|
// Charts navigate to the same URL filters the stat cards use.
|
||||||
|
//
|
||||||
|
// The status the click filters on has to be explicit rather than left to the
|
||||||
|
// default: with no `status` param the controller falls back to the viewer's
|
||||||
|
// default_status_filters preference, which can be anything, so the resulting
|
||||||
|
// list would not necessarily match what the chart counted. StatsModel builds
|
||||||
|
// by_priority and by_category with `status != 'Closed'`, while by_status spans
|
||||||
|
// every status — so only the priority and category charts pin the open set.
|
||||||
|
function openStatuses() {
|
||||||
|
var all = window.TICKET_STATUSES || ['Open', 'Pending', 'In Progress', 'Closed'];
|
||||||
|
return all.filter(function(s) { return s !== 'Closed'; }).join(',');
|
||||||
|
}
|
||||||
|
|
||||||
|
function gotoFilter(params) {
|
||||||
|
var qs = new URLSearchParams();
|
||||||
|
Object.keys(params).forEach(function(k) {
|
||||||
|
if (params[k] !== null && params[k] !== undefined && params[k] !== '') qs.set(k, params[k]);
|
||||||
|
});
|
||||||
|
window.location.href = '/?' + qs.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Each chart maps a clicked label to a filter. Returns null when the label
|
||||||
|
// can't be mapped, so the click is simply ignored.
|
||||||
|
var CHART_FILTERS = {
|
||||||
|
chartPriority: function(label) {
|
||||||
|
var m = /^P(\d+)$/.exec(label);
|
||||||
|
return m ? { priority: m[1], status: openStatuses() } : null;
|
||||||
|
},
|
||||||
|
chartStatus: function(label) {
|
||||||
|
return label ? { status: label } : null;
|
||||||
|
},
|
||||||
|
chartCategory: function(label) {
|
||||||
|
return label ? { category: label, status: openStatuses() } : null;
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
function filterOnClick(canvasId) {
|
||||||
|
return function(evt, elements, chart) {
|
||||||
|
if (!elements || !elements.length) return;
|
||||||
|
var label = chart.data.labels[elements[0].index];
|
||||||
|
var mapper = CHART_FILTERS[canvasId];
|
||||||
|
var params = mapper && mapper(label);
|
||||||
|
if (params) gotoFilter(params);
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
||||||
|
// Pointer cursor over clickable segments so the affordance is visible.
|
||||||
|
function filterOnHover(evt, elements) {
|
||||||
|
if (evt && evt.native && evt.native.target) {
|
||||||
|
evt.native.target.style.cursor = (elements && elements.length) ? 'pointer' : 'default';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function makeDonut(canvasId, data, colorMap) {
|
function makeDonut(canvasId, data, colorMap) {
|
||||||
var ctx = document.getElementById(canvasId);
|
var ctx = document.getElementById(canvasId);
|
||||||
if (!ctx || !data.length) return;
|
if (!ctx || !data.length) return;
|
||||||
|
ctx.title = 'Click a segment to filter the ticket list';
|
||||||
return new Chart(ctx, {
|
return new Chart(ctx, {
|
||||||
type: 'doughnut',
|
type: 'doughnut',
|
||||||
data: {
|
data: {
|
||||||
@@ -295,12 +350,14 @@ include __DIR__ . '/layout_header.php';
|
|||||||
},
|
},
|
||||||
options: {
|
options: {
|
||||||
responsive: true, maintainAspectRatio: false,
|
responsive: true, maintainAspectRatio: false,
|
||||||
|
onClick: filterOnClick(canvasId),
|
||||||
|
onHover: filterOnHover,
|
||||||
plugins: {
|
plugins: {
|
||||||
legend: {
|
legend: {
|
||||||
position: 'bottom',
|
position: 'bottom',
|
||||||
labels: { color: '#8fa3b1', font: { family: 'monospace', size: 10 }, padding: 8, boxWidth: 10 }
|
labels: { color: '#8fa3b1', font: { family: 'monospace', size: 10 }, padding: 8, boxWidth: 10 }
|
||||||
},
|
},
|
||||||
tooltip: { callbacks: { label: function(ctx) { return ' ' + ctx.label + ': ' + ctx.parsed; } } }
|
tooltip: { callbacks: { label: function(ctx) { return ' ' + ctx.label + ': ' + ctx.parsed + ' — click to filter'; } } }
|
||||||
},
|
},
|
||||||
cutout: '68%'
|
cutout: '68%'
|
||||||
}
|
}
|
||||||
@@ -310,6 +367,7 @@ include __DIR__ . '/layout_header.php';
|
|||||||
function makeBar(canvasId, data) {
|
function makeBar(canvasId, data) {
|
||||||
var ctx = document.getElementById(canvasId);
|
var ctx = document.getElementById(canvasId);
|
||||||
if (!ctx || !data.length) return;
|
if (!ctx || !data.length) return;
|
||||||
|
ctx.title = 'Click a bar to filter the ticket list';
|
||||||
return new Chart(ctx, {
|
return new Chart(ctx, {
|
||||||
type: 'bar',
|
type: 'bar',
|
||||||
data: {
|
data: {
|
||||||
@@ -323,7 +381,12 @@ include __DIR__ . '/layout_header.php';
|
|||||||
},
|
},
|
||||||
options: {
|
options: {
|
||||||
indexAxis: 'y', responsive: true, maintainAspectRatio: false,
|
indexAxis: 'y', responsive: true, maintainAspectRatio: false,
|
||||||
plugins: { legend: { display: false } },
|
onClick: filterOnClick(canvasId),
|
||||||
|
onHover: filterOnHover,
|
||||||
|
plugins: {
|
||||||
|
legend: { display: false },
|
||||||
|
tooltip: { callbacks: { label: function(ctx) { return ' ' + ctx.parsed.x + ' — click to filter'; } } }
|
||||||
|
},
|
||||||
scales: {
|
scales: {
|
||||||
x: { ticks: { color: '#8fa3b1', font: { size: 10 } }, grid: { color: 'rgba(0,255,65,0.06)' } },
|
x: { ticks: { color: '#8fa3b1', font: { size: 10 } }, grid: { color: 'rgba(0,255,65,0.06)' } },
|
||||||
y: { ticks: { color: '#8fa3b1', font: { family: 'monospace', size: 10 } }, grid: { display: false } }
|
y: { ticks: { color: '#8fa3b1', font: { family: 'monospace', size: 10 } }, grid: { display: false } }
|
||||||
|
|||||||
Reference in New Issue
Block a user