-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscripts.js
73 lines (66 loc) · 2.29 KB
/
scripts.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
// Toggle the menu visibility
function toggleMenu() {
const navLinks = document.querySelector('.nav-links');
navLinks.style.display = navLinks.style.display === 'flex' ? 'none' : 'flex';
}
// Utility function: Convert file to Base64
function getBase64(file, callback) {
const reader = new FileReader();
reader.readAsDataURL(file);
reader.onload = function () {
callback(reader.result);
};
reader.onerror = function (error) {
console.error('Error converting file to Base64: ', error);
};
}
// Save report to local storage
function saveReport(report) {
let crimeReports = JSON.parse(localStorage.getItem('crimeReports')) || [];
crimeReports.push(report);
localStorage.setItem('crimeReports', JSON.stringify(crimeReports));
document.getElementById('statusMessage').textContent = "Report submitted successfully!";
document.getElementById('crimeForm').reset();
}
// Form submission handling
document.getElementById('crimeForm').addEventListener('submit', function (e) {
e.preventDefault();
const crimeImage = document.getElementById('crimeImage').files[0];
const crimeVideo = document.getElementById('crimeVideo').files[0];
// Initialize report object with form values
let report = {
reporterName: document.getElementById('reporterName').value,
category: document.getElementById('crimeCategory').value,
description: document.getElementById('crimeDescription').value,
location: document.getElementById('location').value,
date: document.getElementById('date').value,
time: document.getElementById('time').value,
image: null,
video: null
};
// Process image and video uploads
if (crimeImage) {
getBase64(crimeImage, function(base64Image) {
report.image = base64Image;
if (crimeVideo) {
getBase64(crimeVideo, function(base64Video) {
report.video = base64Video;
saveReport(report);
});
} else {
saveReport(report);
}
});
} else if (crimeVideo) {
getBase64(crimeVideo, function(base64Video) {
report.video = base64Video;
saveReport(report);
});
} else {
saveReport(report);
}
});
// Redirect to admin page on 'View Report' button click
document.getElementById('viewReportButton').addEventListener('click', function() {
window.location.href = 'admin.html';
});