Spaces:
Sleeping
Sleeping
File size: 20,744 Bytes
f4552a1 |
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 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 |
document.addEventListener('DOMContentLoaded', () => {
const studentSelector = document.getElementById('student-selector');
const generateReportBtn = document.getElementById('generate-report-btn');
const jobApplicationInput = document.getElementById('job-application-input');
const analyzeJobBtn = document.getElementById('analyze-job-btn');
const loadingSpinner = document.getElementById('loading-spinner');
const reportContainer = document.getElementById('report-container');
const jobAnalysisContainer = document.getElementById('job-analysis-container');
const chatbotContainer = document.getElementById('chatbot-container');
const chatForm = document.getElementById('chat-form');
const chatInput = document.getElementById('chat-input');
const chatHistory = document.getElementById('chat-history');
// 1. Populate student dropdown on page load
fetch('/api/students')
.then(response => response.json())
.then(students => {
students.forEach(student => {
const option = document.createElement('option');
option.value = student.enrollment_no;
option.textContent = `${student.name} (${student.enrollment_no})`;
studentSelector.appendChild(option);
});
})
.catch(error => console.error('Error fetching students:', error));
// 2. Enable buttons when inputs are filled
studentSelector.addEventListener('change', () => {
const hasSelection = !!studentSelector.value;
generateReportBtn.disabled = !hasSelection;
chatbotContainer.classList.toggle('hidden', !hasSelection);
reportContainer.classList.add('hidden'); // Hide old report on new selection
chatHistory.innerHTML = ''; // Clear chat history
});
jobApplicationInput.addEventListener('input', () => {
analyzeJobBtn.disabled = !jobApplicationInput.value.trim();
});
// 3. Handle "Generate Report" button click
generateReportBtn.addEventListener('click', () => {
const enrollmentNo = studentSelector.value;
if (!enrollmentNo) return;
loadingSpinner.classList.remove('hidden');
reportContainer.classList.add('hidden');
jobAnalysisContainer.classList.add('hidden');
chatbotContainer.classList.add('hidden');
fetch(`/api/report/${enrollmentNo}`)
.then(response => {
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
return response.json();
})
.then(report => {
loadingSpinner.classList.add('hidden');
if (report.error) {
alert(`Error generating report: ${report.error}`);
} else {
displayReport(report);
reportContainer.classList.remove('hidden');
chatbotContainer.classList.remove('hidden');
}
})
.catch(error => {
loadingSpinner.classList.add('hidden');
console.error('Report generation error:', error);
alert(`An unexpected error occurred: ${error.message}`);
});
});
// 4. Handle "Analyze Job Application" button click
analyzeJobBtn.addEventListener('click', () => {
const jobApplicationLink = jobApplicationInput.value.trim();
if (!jobApplicationLink) return;
loadingSpinner.classList.remove('hidden');
reportContainer.classList.add('hidden');
jobAnalysisContainer.classList.add('hidden');
chatbotContainer.classList.add('hidden');
fetch('/api/job-analysis', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ job_application_link: jobApplicationLink })
})
.then(response => {
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
return response.json();
})
.then(data => {
loadingSpinner.classList.add('hidden');
if (data.error) {
alert(`Error analyzing job application: ${data.error}`);
} else {
displayJobAnalysis(data.data); // Access data.data as per API response structure
jobAnalysisContainer.classList.remove('hidden');
}
})
.catch(error => {
loadingSpinner.classList.add('hidden');
console.error('Job analysis error:', error);
alert(`An unexpected error occurred: ${error.message}`);
});
});
// 5. Handle chat form submission
chatForm.addEventListener('submit', (e) => {
e.preventDefault();
const enrollmentNo = studentSelector.value;
const question = chatInput.value.trim();
if (!question || !enrollmentNo) return;
appendMessage(question, 'user');
chatInput.value = '';
appendMessage('Thinking...', 'ai', true); // Show loading indicator
fetch('/api/ask', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({ enrollment_no: enrollmentNo, question: question })
})
.then(response => {
if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`);
}
return response.json();
})
.then(data => {
const loadingElement = chatHistory.querySelector('.loading');
if (loadingElement) {
loadingElement.parentElement.remove();
}
appendMessage(data.answer, 'ai');
})
.catch(error => {
console.error('Chat error:', error);
const loadingElement = chatHistory.querySelector('.loading');
if (loadingElement) {
loadingElement.parentElement.remove();
}
appendMessage('Sorry, an error occurred while fetching the answer.', 'ai');
});
});
// --- Helper Functions ---
function displayReport(report) {
document.getElementById('report-title').textContent = `Performance Report for ${studentSelector.options[studentSelector.selectedIndex].text}`;
document.getElementById('summary-text').textContent = report.overall_summary;
// Display resume analysis
displayResumeAnalysis(report.resume_analysis);
const scoresGrid = document.getElementById('scores-grid');
scoresGrid.innerHTML = '';
report.detailed_scores.forEach(item => {
scoresGrid.innerHTML += `
<div class="score-card">
<div class="parameter">
<span>${item.parameter}</span>
<span class="score">${item.score}/10</span>
</div>
<div class="justification">${item.justification}</div>
</div>
`;
});
const createListItems = (items) => items.map(item => `<li>${item}</li>`).join('');
document.getElementById('strengths-list').innerHTML = createListItems(report.analysis.strengths);
document.getElementById('weaknesses-list').innerHTML = createListItems(report.analysis.weaknesses);
document.getElementById('advice-list').innerHTML = createListItems(report.actionable_advice.recommendations);
// Display YouTube recommendations
displayYouTubeRecommendations(report.youtube_recommendations);
}
function displayResumeAnalysis(resumeAnalysis) {
// Display skills as tags
const skillsContainer = document.getElementById('resume-skills');
skillsContainer.innerHTML = '';
resumeAnalysis.key_skills.forEach(skill => {
const tag = document.createElement('span');
tag.className = 'skill-tag';
tag.textContent = skill;
skillsContainer.appendChild(tag);
});
// Display professional links
const linksContainer = document.getElementById('resume-links');
linksContainer.innerHTML = '';
resumeAnalysis.professional_links.forEach(link => {
const li = document.createElement('li');
const a = document.createElement('a');
a.href = link;
a.target = '_blank';
// Extract domain for display
try {
const url = new URL(link);
a.textContent = url.hostname.replace('www.', '');
} catch (e) {
a.textContent = link;
}
li.appendChild(a);
linksContainer.appendChild(li);
});
// Display missing elements
const missingContainer = document.getElementById('resume-missing');
missingContainer.innerHTML = '';
resumeAnalysis.missing_elements.forEach(item => {
const li = document.createElement('li');
li.className = 'missing-items';
li.textContent = item;
missingContainer.appendChild(li);
});
}
function displayYouTubeRecommendations(recommendations) {
const container = document.getElementById('youtube-recommendations');
container.innerHTML = '';
if (!recommendations || recommendations.length === 0) {
container.innerHTML = '<p>No YouTube recommendations available for this student.</p>';
return;
}
recommendations.forEach(topic => {
// Check if this is a topic with videos or a single video
if (topic.videos && Array.isArray(topic.videos)) {
// This is a topic with multiple videos
const topicSection = document.createElement('div');
topicSection.className = 'topic-section';
const topicHeader = document.createElement('h3');
topicHeader.textContent = topic.topic;
topicSection.appendChild(topicHeader);
const topicReason = document.createElement('p');
topicReason.className = 'topic-reason';
topicReason.textContent = topic.reason;
topicSection.appendChild(topicReason);
const videosContainer = document.createElement('div');
videosContainer.className = 'videos-container';
topic.videos.forEach(video => {
const card = document.createElement('div');
card.className = 'youtube-card';
// Fix URL formatting - remove extra spaces
const embedUrl = (video.embed_url || video.url).replace(/\s+/g, '');
card.innerHTML = `
<div class="youtube-embed">
<iframe src="${embedUrl}"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
<div class="youtube-info">
<h3 class="youtube-title">${video.title}</h3>
<p class="youtube-reason">${video.reason || video.description}</p>
</div>
`;
videosContainer.appendChild(card);
});
topicSection.appendChild(videosContainer);
container.appendChild(topicSection);
} else {
// This is a single video (fallback case)
const card = document.createElement('div');
card.className = 'youtube-card';
// Fix URL formatting - remove extra spaces
const embedUrl = (topic.embed_url || topic.url).replace(/\s+/g, '');
card.innerHTML = `
<div class="youtube-embed">
<iframe src="${embedUrl}"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
<div class="youtube-info">
<h3 class="youtube-title">${topic.title}</h3>
<p class="youtube-reason">${topic.reason || topic.description}</p>
</div>
`;
container.appendChild(card);
}
});
}
function displayJobAnalysis(data) {
console.log("Job analysis data:", data); // Debug log
// Display strengths
const strengthsContainer = document.getElementById('job-strengths-list');
strengthsContainer.innerHTML = '';
// Check if strengths exist and is an array
if (data.strengths && Array.isArray(data.strengths)) {
data.strengths.forEach(strength => {
const item = document.createElement('div');
item.className = 'job-strength-item';
item.innerHTML = `
<div class="job-item-aspect">${strength.aspect || 'N/A'}</div>
<div class="job-item-description">${strength.description || 'N/A'}</div>
<div class="job-item-relevance">${strength.relevance || 'N/A'}</div>
`;
strengthsContainer.appendChild(item);
});
} else {
strengthsContainer.innerHTML = '<p>No strengths data available.</p>';
}
// Display weaknesses
const weaknessesContainer = document.getElementById('job-weaknesses-list');
weaknessesContainer.innerHTML = '';
// Check if weaknesses exist and is an array
if (data.weaknesses && Array.isArray(data.weaknesses)) {
data.weaknesses.forEach(weakness => {
const item = document.createElement('div');
item.className = 'job-weakness-item';
item.innerHTML = `
<div class="job-item-aspect">${weakness.aspect || 'N/A'}</div>
<div class="job-item-description">${weakness.description || 'N/A'}</div>
<div class="job-item-importance">Importance: ${weakness.importance || 'N/A'}</div>
<div class="job-item-suggestion">${weakness.improvement_suggestion || 'N/A'}</div>
`;
weaknessesContainer.appendChild(item);
});
} else {
weaknessesContainer.innerHTML = '<p>No weaknesses data available.</p>';
}
// Display enhancement recommendations
const enhancementsContainer = document.getElementById('job-enhancements-list');
enhancementsContainer.innerHTML = '';
// Check if enhancement_recommendations exist and is an array
if (data.enhancement_recommendations && Array.isArray(data.enhancement_recommendations)) {
data.enhancement_recommendations.forEach(rec => {
const item = document.createElement('div');
item.className = 'job-enhancement-item';
item.innerHTML = `
<div class="job-item-aspect">${rec.area || 'N/A'}</div>
<div class="job-item-description">${rec.suggestion || 'N/A'}</div>
<div class="job-item-importance">Priority: ${rec.priority || 'N/A'}</div>
`;
enhancementsContainer.appendChild(item);
});
} else {
enhancementsContainer.innerHTML = '<p>No enhancement recommendations available.</p>';
}
// Display YouTube recommendations
displayJobYouTubeRecommendations(data.video_recommendations);
}
function displayJobYouTubeRecommendations(recommendations) {
const container = document.getElementById('job-youtube-recommendations');
container.innerHTML = '';
if (!recommendations || !Array.isArray(recommendations) || recommendations.length === 0) {
container.innerHTML = '<p>No YouTube recommendations available for this job application.</p>';
return;
}
recommendations.forEach(topic => {
// Check if this is a topic with videos or a single video
if (topic.videos && Array.isArray(topic.videos)) {
// This is a topic with multiple videos
const topicSection = document.createElement('div');
topicSection.className = 'topic-section';
const topicHeader = document.createElement('h3');
topicHeader.textContent = topic.topic || 'Recommended Topic';
topicSection.appendChild(topicHeader);
const topicReason = document.createElement('p');
topicReason.className = 'topic-reason';
topicReason.textContent = topic.reason || 'Recommended to improve your skills';
topicSection.appendChild(topicReason);
const videosContainer = document.createElement('div');
videosContainer.className = 'videos-container';
topic.videos.forEach(video => {
const card = document.createElement('div');
card.className = 'youtube-card';
// Fix URL formatting - remove extra spaces
const embedUrl = (video.embed_url || video.url).replace(/\s+/g, '');
card.innerHTML = `
<div class="youtube-embed">
<iframe src="${embedUrl}"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
<div class="youtube-info">
<h3 class="youtube-title">${video.title || 'Untitled Video'}</h3>
<p class="youtube-reason">${video.reason || video.description || 'Recommended for skill development'}</p>
</div>
`;
videosContainer.appendChild(card);
});
topicSection.appendChild(videosContainer);
container.appendChild(topicSection);
} else {
// This is a single video (fallback case)
const card = document.createElement('div');
card.className = 'youtube-card';
// Fix URL formatting - remove extra spaces
const embedUrl = (topic.embed_url || topic.url).replace(/\s+/g, '');
card.innerHTML = `
<div class="youtube-embed">
<iframe src="${embedUrl}"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen></iframe>
</div>
<div class="youtube-info">
<h3 class="youtube-title">${topic.title || 'Untitled Video'}</h3>
<p class="youtube-reason">${topic.reason || topic.description || 'Recommended for skill development'}</p>
</div>
`;
container.appendChild(card);
}
});
}
function appendMessage(text, sender, isLoading = false) {
const messageWrapper = document.createElement('div');
messageWrapper.classList.add('chat-message', `${sender}-message`);
const messageP = document.createElement('p');
messageP.textContent = text;
if (isLoading) {
messageP.classList.add('loading');
}
messageWrapper.appendChild(messageP);
chatHistory.appendChild(messageWrapper);
chatHistory.scrollTop = chatHistory.scrollHeight; // Auto-scroll to bottom
}
}); |