🍅Session Structure
Use the ${data.pomodoro.study}/${data.pomodoro.short_break} Pomodoro method, taking a ${data.pomodoro.long_break} min break every ${data.pomodoro.sessions} sessions.
💡Learning Activities
Focus on these methods: ${data.activities.join(' ')}
🧠Retention Schedule
Review new material after ${state.config.repetition_intervals.join(', ')} days to build long-term memory.
This plan is a guideline. Adjust based on your progress and energy levels. Consistency is key.
`;
document.body.appendChild(reportContainer);
try {
const canvas = await html2canvas(reportContainer, { scale: 2, useCORS: true, logging: false });
const imgData = canvas.toDataURL('image/png');
const pdf = new jsPDF({ orientation: 'portrait', unit: 'mm', format: 'a4' });
const pageHeight = pdf.internal.pageSize.getHeight();
const pageWidth = pdf.internal.pageSize.getWidth();
const margin = 15;
const contentWidth = pageWidth - (margin * 2);
const imgProps = pdf.getImageProperties(imgData);
const contentHeight = (imgProps.height * contentWidth) / imgProps.width;
let heightLeft = contentHeight;
let position = 0;
pdf.addImage(imgData, 'PNG', margin, margin, contentWidth, contentHeight);
heightLeft -= (pageHeight - (margin * 2));
while (heightLeft > 0) {
position -= (pageHeight - (margin * 2));
pdf.addPage();
pdf.addImage(imgData, 'PNG', margin, position + margin, contentWidth, contentHeight);
heightLeft -= (pageHeight - (margin * 2));
}
pdf.save('Personalized-Study-Plan.pdf');
} catch (error) {
console.error("Error generating PDF:", error);
alert("Sorry, there was an error creating the PDF report.");
} finally {
document.body.removeChild(reportContainer);
}
};
// --- INITIALIZATION ---
// Set a default date for the deadline input
const today = new Date();
const futureDate = new Date(today.setDate(today.getDate() + 30));
document.getElementById('deadline').value = futureDate.toISOString().split('T')[0];
switchTab(1);
populateConfig();
});