mirror of
https://github.com/smittix/intercept.git
synced 2026-07-15 04:58:10 -07:00
feat: add category filter to TSCM report exports
Users can now choose which risk categories to include in generated reports — High Interest, Needs Review, and Informational — via three checkboxes that appear after a sweep completes. Applies to the HTML report, PDF, JSON annex, and CSV annex. Defaults to High Interest + Needs Review (Informational excluded) to keep reports concise. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
+36
-11
@@ -12260,6 +12260,7 @@
|
||||
// Clear and reset the signal timeline for new sweep
|
||||
SignalTimeline.clear();
|
||||
document.getElementById('tscmReportBtn').style.display = 'none';
|
||||
document.getElementById('tscmReportCategoryFilter').style.display = 'none';
|
||||
|
||||
// Show warnings if any devices unavailable
|
||||
if (scanResult.warnings && scanResult.warnings.length > 0) {
|
||||
@@ -12361,9 +12362,10 @@
|
||||
document.getElementById('stopTscmBtn').style.display = 'none';
|
||||
document.getElementById('tscmProgress').style.display = 'none';
|
||||
|
||||
// Show report button if we have any data
|
||||
// Show report button and category filter if we have any data
|
||||
const hasData = tscmWifiDevices.length > 0 || tscmBtDevices.length > 0 || tscmRfSignals.length > 0;
|
||||
document.getElementById('tscmReportBtn').style.display = hasData ? 'block' : 'none';
|
||||
document.getElementById('tscmReportCategoryFilter').style.display = hasData ? 'block' : 'none';
|
||||
|
||||
return postStopRequest(endpoint, timeoutMs);
|
||||
}
|
||||
@@ -12383,18 +12385,30 @@
|
||||
...tscmRfSignals.map(d => ({ ...d, protocol: 'RF' }))
|
||||
];
|
||||
|
||||
const highInterest = allDevices.filter(d => d.classification === 'high_interest' || d.score >= 6);
|
||||
const needsReview = allDevices.filter(d => d.classification === 'review' || (d.score >= 3 && d.score < 6));
|
||||
const informational = allDevices.filter(d => d.classification === 'informational' || d.score < 3);
|
||||
const allHighInterest = allDevices.filter(d => d.classification === 'high_interest' || d.score >= 6);
|
||||
const allNeedsReview = allDevices.filter(d => d.classification === 'review' || (d.score >= 3 && d.score < 6));
|
||||
const allInformational = allDevices.filter(d => d.classification === 'informational' || d.score < 3);
|
||||
|
||||
// Determine overall assessment
|
||||
// Apply category filter from sidebar checkboxes
|
||||
const incHighInterest = document.getElementById('tscmCatHighInterest')?.checked ?? true;
|
||||
const incNeedsReview = document.getElementById('tscmCatNeedsReview')?.checked ?? true;
|
||||
const incInformational = document.getElementById('tscmCatInformational')?.checked ?? false;
|
||||
const highInterest = incHighInterest ? allHighInterest : [];
|
||||
const needsReview = incNeedsReview ? allNeedsReview : [];
|
||||
const informational = incInformational ? allInformational : [];
|
||||
|
||||
const categoryNote = (!incHighInterest || !incNeedsReview || !incInformational)
|
||||
? `<div style="font-size:11px; color:#6b7280; margin-top:8px;">Filtered: showing ${[incHighInterest && 'High Interest', incNeedsReview && 'Needs Review', incInformational && 'Informational'].filter(Boolean).join(', ') || 'none'} only</div>`
|
||||
: '';
|
||||
|
||||
// Determine overall assessment (based on all data, not filter)
|
||||
let assessment = 'LOW CONCERN';
|
||||
let assessmentClass = 'informational';
|
||||
if (highInterest.length > 0) {
|
||||
assessment = `ELEVATED CONCERN: ${highInterest.length} high-interest item(s) detected requiring immediate attention`;
|
||||
if (allHighInterest.length > 0) {
|
||||
assessment = `ELEVATED CONCERN: ${allHighInterest.length} high-interest item(s) detected requiring immediate attention`;
|
||||
assessmentClass = 'high-interest';
|
||||
} else if (needsReview.length > 0) {
|
||||
assessment = `MODERATE CONCERN: ${needsReview.length} item(s) requiring further review`;
|
||||
} else if (allNeedsReview.length > 0) {
|
||||
assessment = `MODERATE CONCERN: ${allNeedsReview.length} item(s) requiring further review`;
|
||||
assessmentClass = 'needs-review';
|
||||
} else {
|
||||
assessment = 'LOW CONCERN: No anomalies flagged by automated scan. Manual inspection recommended for comprehensive assessment.';
|
||||
@@ -12765,6 +12779,7 @@
|
||||
<div class="assessment ${assessmentClass}">
|
||||
<strong>Assessment:</strong> ${assessment}
|
||||
</div>
|
||||
${categoryNote}
|
||||
</div>
|
||||
|
||||
${highInterest.length > 0 ? `
|
||||
@@ -16216,9 +16231,18 @@
|
||||
}
|
||||
|
||||
// Report Downloads
|
||||
function _tscmCategoryParam() {
|
||||
const cats = [];
|
||||
if (document.getElementById('tscmCatHighInterest')?.checked) cats.push('high_interest');
|
||||
if (document.getElementById('tscmCatNeedsReview')?.checked) cats.push('needs_review');
|
||||
if (document.getElementById('tscmCatInformational')?.checked) cats.push('informational');
|
||||
return cats.length < 3 ? `categories=${cats.join(',')}` : '';
|
||||
}
|
||||
|
||||
async function tscmDownloadPdf() {
|
||||
try {
|
||||
const response = await fetch('/tscm/report/pdf');
|
||||
const catParam = _tscmCategoryParam();
|
||||
const response = await fetch(`/tscm/report/pdf${catParam ? '?' + catParam : ''}`);
|
||||
if (response.ok) {
|
||||
const blob = await response.blob();
|
||||
const url = URL.createObjectURL(blob);
|
||||
@@ -16241,7 +16265,8 @@
|
||||
|
||||
async function tscmDownloadAnnex(format) {
|
||||
try {
|
||||
const response = await fetch(`/tscm/report/annex?format=${format}`);
|
||||
const catParam = _tscmCategoryParam();
|
||||
const response = await fetch(`/tscm/report/annex?format=${format}${catParam ? '&' + catParam : ''}`);
|
||||
if (response.ok) {
|
||||
const blob = await response.blob();
|
||||
const url = URL.createObjectURL(blob);
|
||||
|
||||
@@ -101,6 +101,23 @@
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Report category filter (shown when sweep has data) -->
|
||||
<div id="tscmReportCategoryFilter" style="display: none; margin-top: 8px; padding: 8px; background: rgba(255,255,255,0.04); border-radius: 4px; border: 1px solid var(--border-color);">
|
||||
<label style="display: block; font-size: 10px; font-weight: 600; margin-bottom: 6px; color: var(--text-secondary); text-transform: uppercase; letter-spacing: 0.5px;">Include in Report</label>
|
||||
<label style="display: flex; align-items: center; gap: 6px; font-size: 11px; margin-bottom: 4px; cursor: pointer;">
|
||||
<input type="checkbox" id="tscmCatHighInterest" checked>
|
||||
<span style="color: #ff3333; font-size: 9px;">●</span> High Interest
|
||||
</label>
|
||||
<label style="display: flex; align-items: center; gap: 6px; font-size: 11px; margin-bottom: 4px; cursor: pointer;">
|
||||
<input type="checkbox" id="tscmCatNeedsReview" checked>
|
||||
<span style="color: #ffcc00; font-size: 9px;">●</span> Needs Review
|
||||
</label>
|
||||
<label style="display: flex; align-items: center; gap: 6px; font-size: 11px; cursor: pointer;">
|
||||
<input type="checkbox" id="tscmCatInformational">
|
||||
<span style="color: #00cc00; font-size: 9px;">●</span> Informational
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<button class="preset-btn" id="tscmReportBtn" onclick="generateTscmReport()" style="display: none; width: 100%; margin-top: 8px; background: var(--accent-cyan); color: #000; font-weight: 600;">
|
||||
Generate Report
|
||||
</button>
|
||||
|
||||
Reference in New Issue
Block a user