| |
| document.addEventListener('DOMContentLoaded', function() { |
| initChallenges(); |
| initLeaderboard(); |
| initConnectModal(); |
| initProfileDrawer(); |
| initFilters(); |
| }); |
|
|
| function initChallenges() { |
| loadChallenges(); |
| } |
|
|
| function loadChallenges() { |
| const challengesGrid = document.getElementById('challengesGrid'); |
| const challenges = window.oncoConnect.data.challenges; |
| |
| |
| const enhancedChallenges = challenges.map(challenge => ({ |
| ...challenge, |
| ...getChallengeDetails(challenge.id) |
| })); |
| |
| challengesGrid.innerHTML = enhancedChallenges.map(challenge => ` |
| <div class="challenge-card ${challenge.enrolled ? 'enrolled' : ''}" data-id="${challenge.id}"> |
| <div class="challenge-header"> |
| <h3 class="challenge-title">${challenge.title}</h3> |
| <div class="challenge-meta"> |
| <span class="difficulty-badge ${challenge.difficulty.toLowerCase()}">${challenge.difficulty}</span> |
| <span class="solved-count">${challenge.solved} solved</span> |
| </div> |
| </div> |
| <div class="challenge-description">${challenge.description}</div> |
| <div class="challenge-actions"> |
| <button class="btn btn-primary ${challenge.enrolled ? 'enrolled' : ''}" |
| onclick="toggleEnrollment('${challenge.id}')"> |
| ${challenge.enrolled ? 'Enrolled ✓' : 'Enroll'} |
| </button> |
| <button class="btn btn-secondary" onclick="openConnectModal('${challenge.id}')"> |
| Connect |
| </button> |
| </div> |
| </div> |
| `).join(''); |
| } |
|
|
| |
| function getChallengeDetails(challengeId) { |
| const challengeDetails = { |
| 'rare-disease-drug': { |
| theme: 'AI-Powered Drug Response Prediction for Rare Diseases', |
| themeDescription: 'Develop machine learning models to predict patient response to candidate compounds for rare diseases using limited clinical data.', |
| category: 'Drug Discovery', |
| participants: 156, |
| daysLeft: 45, |
| prizeAmount: '₹75,000', |
| |
| |
| problemStatement: { |
| title: 'The Rare Disease Drug Development Challenge', |
| background: 'Rare diseases affect fewer than 200,000 people in the US, making traditional drug development economically unviable. With limited patient populations and sparse clinical trial data, pharmaceutical companies struggle to develop effective treatments. This challenge addresses the critical need for AI-powered solutions to predict drug response in rare disease patients.', |
| objectives: [ |
| 'Predict patient response to candidate drug compounds with high accuracy', |
| 'Develop models that work with limited clinical trial data', |
| 'Create interpretable AI systems for clinical decision support', |
| 'Build scalable solutions for multiple rare disease types', |
| 'Integrate multi-omics data for comprehensive analysis' |
| ], |
| impact: 'Successful solutions will accelerate rare disease drug development, reduce costs, and bring life-saving treatments to patients faster. The winning models could be integrated into clinical trial design and personalized medicine approaches.', |
| targetAudience: 'Data scientists, bioinformaticians, medical researchers, and AI engineers interested in healthcare applications.' |
| }, |
| |
| |
| technicalRequirements: { |
| dataScience: [ |
| 'Proficiency in Python/R for data analysis and modeling', |
| 'Experience with machine learning frameworks (TensorFlow, PyTorch, scikit-learn)', |
| 'Knowledge of bioinformatics tools and genomic data analysis', |
| 'Understanding of clinical trial design and medical data standards', |
| 'Experience with cloud computing platforms (AWS, GCP, Azure)' |
| ], |
| domainKnowledge: [ |
| 'Basic understanding of drug development process', |
| 'Knowledge of rare disease mechanisms and biomarkers', |
| 'Familiarity with multi-omics data integration', |
| 'Understanding of clinical endpoints and response criteria', |
| 'Knowledge of regulatory requirements for medical AI' |
| ], |
| deliverables: [ |
| 'Trained ML model with >80% accuracy on validation set', |
| 'Complete source code with comprehensive documentation', |
| 'Model performance metrics and validation results', |
| '5-minute presentation video explaining approach and results', |
| 'Technical report detailing methodology and findings', |
| 'Data preprocessing pipeline and feature engineering code', |
| 'Model interpretability analysis and clinical insights', |
| 'Deployment guide for production implementation' |
| ] |
| }, |
| |
| |
| datasets: [ |
| { |
| title: 'Genomic Variants Dataset (VCF Format)', |
| size: '1.2GB', |
| format: 'VCF 4.2', |
| description: 'Comprehensive variant calling format files containing single nucleotide variants (SNVs), insertions, deletions, and structural variants for 1,000 patients across 15 rare disease types. Includes quality scores, population frequencies, and functional annotations.', |
| columns: [ |
| 'CHROM: Chromosome identifier', |
| 'POS: Genomic position', |
| 'ID: Variant identifier', |
| 'REF: Reference allele', |
| 'ALT: Alternative allele', |
| 'QUAL: Quality score', |
| 'FILTER: Filter status', |
| 'INFO: Additional variant information', |
| 'FORMAT: Genotype format', |
| 'Sample columns: Individual patient genotypes' |
| ], |
| downloadUrl: '#', |
| sampleData: 'Available: 50 sample variants with annotations', |
| dataQuality: 'High-quality variants with >99% accuracy, filtered for common artifacts' |
| }, |
| { |
| title: 'Transcriptomic Expression Data (RNA-Seq)', |
| size: '800MB', |
| format: 'CSV/TSV', |
| description: 'RNA sequencing expression profiles for 1,000 patients before and after drug treatment. Includes raw counts, normalized expression values, and differential expression analysis results.', |
| columns: [ |
| 'Gene_ID: Ensembl gene identifier', |
| 'Gene_Symbol: Official gene symbol', |
| 'Pre_Treatment_Counts: Raw read counts before treatment', |
| 'Post_Treatment_Counts: Raw read counts after treatment', |
| 'Log2FC: Log2 fold change in expression', |
| 'P_Value: Statistical significance', |
| 'FDR: False discovery rate correction', |
| 'Pathway: KEGG pathway annotation' |
| ], |
| downloadUrl: '#', |
| sampleData: 'Available: Expression data for top 1000 differentially expressed genes', |
| dataQuality: 'High-depth sequencing (>50M reads per sample), quality filtered' |
| }, |
| { |
| title: 'Clinical Outcomes Dataset', |
| size: '50MB', |
| format: 'CSV', |
| description: 'Phase II clinical trial data with patient demographics, treatment responses, adverse events, and follow-up outcomes. Includes both structured and unstructured clinical notes.', |
| columns: [ |
| 'Patient_ID: Unique patient identifier', |
| 'Age: Patient age at enrollment', |
| 'Gender: Biological sex', |
| 'Disease_Type: Specific rare disease classification', |
| 'Treatment_Response: Primary endpoint (CR/PR/SD/PD)', |
| 'PFS: Progression-free survival (days)', |
| 'OS: Overall survival (days)', |
| 'Adverse_Events: Grade 1-5 toxicity events', |
| 'Biomarkers: Key molecular markers', |
| 'Prior_Treatments: Previous therapy history' |
| ], |
| downloadUrl: '#', |
| sampleData: 'Available: 100 anonymized patient records', |
| dataQuality: 'Curated by clinical experts, validated against source documents' |
| }, |
| { |
| title: 'Commercial Feasibility Dataset', |
| size: '25MB', |
| format: 'JSON/CSV', |
| description: 'Market analysis data including patient population estimates, pricing benchmarks, development costs, and regulatory pathway information for rare disease drug development.', |
| columns: [ |
| 'Disease_Prevalence: Global patient population estimates', |
| 'Market_Size: Addressable market value', |
| 'Development_Cost: Estimated R&D costs', |
| 'Pricing_Benchmarks: Similar drug pricing data', |
| 'Regulatory_Pathway: FDA/EMA approval requirements', |
| 'Competitive_Landscape: Existing treatments and competitors', |
| 'ROI_Projections: Return on investment estimates' |
| ], |
| downloadUrl: '#', |
| sampleData: 'Available: Market analysis for 5 rare diseases', |
| dataQuality: 'Sourced from industry reports and regulatory databases' |
| }, |
| { |
| title: 'Drug Compound Database', |
| size: '150MB', |
| format: 'SDF/CSV', |
| description: 'Chemical structure data for 500 candidate drug compounds including molecular properties, target information, and known mechanisms of action.', |
| columns: [ |
| 'Compound_ID: Unique compound identifier', |
| 'SMILES: Chemical structure notation', |
| 'Molecular_Weight: Compound molecular weight', |
| 'LogP: Lipophilicity measure', |
| 'Target_Proteins: Known protein targets', |
| 'Mechanism: Mechanism of action', |
| 'Toxicity_Profile: Known adverse effects', |
| 'Drug_Likeness: ADMET properties' |
| ], |
| downloadUrl: '#', |
| sampleData: 'Available: 50 compounds with full chemical data', |
| dataQuality: 'Curated from ChEMBL and PubChem databases' |
| } |
| ], |
| |
| |
| evaluationCriteria: { |
| primary: [ |
| 'Model Accuracy: >80% on validation set (40% weight)', |
| 'Clinical Relevance: Interpretable and actionable insights (25% weight)', |
| 'Innovation: Novel approaches and techniques (20% weight)', |
| 'Code Quality: Clean, documented, and reproducible (15% weight)' |
| ], |
| secondary: [ |
| 'Computational Efficiency: Model training and inference speed', |
| 'Scalability: Ability to handle larger datasets', |
| 'Robustness: Performance across different disease types', |
| 'Documentation: Clarity and completeness of technical report' |
| ], |
| bonus: [ |
| 'Integration of multiple data types (genomics + transcriptomics + clinical)', |
| 'Real-time prediction capabilities', |
| 'User-friendly interface or API', |
| 'Clinical validation with external dataset' |
| ] |
| }, |
| |
| |
| resources: { |
| documentation: [ |
| 'Comprehensive data dictionary and schema documentation', |
| 'API documentation for data access and submission', |
| 'Tutorial notebooks with example code and workflows', |
| 'Best practices guide for rare disease data analysis', |
| 'Clinical trial design and endpoint definitions' |
| ], |
| tools: [ |
| 'Jupyter notebooks with starter code templates', |
| 'Docker containers with pre-installed dependencies', |
| 'Cloud computing credits (AWS/GCP) for model training', |
| 'Access to high-performance computing clusters', |
| 'Version control and collaboration tools (GitHub)' |
| ], |
| mentorship: [ |
| 'Weekly office hours with domain experts', |
| '1-on-1 mentoring sessions with industry professionals', |
| 'Technical workshops on genomics and drug discovery', |
| 'Peer review and feedback sessions', |
| 'Career guidance and networking opportunities' |
| ] |
| }, |
| |
| |
| timeline: [ |
| { |
| date: 'Dec 20, 2024', |
| title: 'Challenge Launch & Data Release', |
| description: 'Official challenge launch, complete dataset release, technical workshop, and Q&A session with domain experts', |
| deliverables: 'Data access, initial exploration, team formation' |
| }, |
| { |
| date: 'Jan 5, 2025', |
| title: 'Mid-point Checkpoint 1', |
| description: 'Submit initial data exploration results, proposed methodology, and team progress report', |
| deliverables: 'Data analysis report, methodology outline, team updates' |
| }, |
| { |
| date: 'Jan 20, 2025', |
| title: 'Mid-point Checkpoint 2', |
| description: 'Submit preliminary model results, feature engineering approach, and validation strategy', |
| deliverables: 'Baseline model, feature analysis, validation plan' |
| }, |
| { |
| date: 'Feb 5, 2025', |
| title: 'Final Model Development', |
| description: 'Complete model training, hyperparameter optimization, and performance evaluation', |
| deliverables: 'Final model, performance metrics, optimization results' |
| }, |
| { |
| date: 'Feb 15, 2025', |
| title: 'Final Submission Deadline', |
| description: 'Submit complete solution including code, documentation, presentation video, and technical report', |
| deliverables: 'Complete submission package, final presentation' |
| }, |
| { |
| date: 'Feb 25, 2025', |
| title: 'Evaluation & Judging', |
| description: 'Expert panel evaluation, code review, and performance validation on test dataset', |
| deliverables: 'Judging results, feedback reports' |
| }, |
| { |
| date: 'Mar 1, 2025', |
| title: 'Results Announcement & Awards', |
| description: 'Winners announced, prize distribution, networking event, and future collaboration opportunities', |
| deliverables: 'Awards ceremony, networking, follow-up opportunities' |
| } |
| ], |
| |
| |
| prizes: [ |
| { |
| position: '1st Place', |
| amount: '₹10,00,000', |
| amountLabel: '₹ 10,00,000', |
| perks: [ |
| 'Research publication opportunity in top-tier journal', |
| '6-month mentorship with industry experts', |
| 'Invitation to present at international conference', |
| 'Potential collaboration with pharmaceutical company', |
| 'Certificate of excellence and recognition' |
| ], |
| additional: 'Opportunity to work on real-world rare disease drug development project', |
| perkBadge: 'Pre-Placement Interview' |
| }, |
| { |
| position: '2nd Place', |
| amount: '₹6,00,000', |
| amountLabel: '₹ 6,00,000', |
| perks: [ |
| 'Certificate of achievement', |
| '3-month mentorship program', |
| 'Industry recognition and networking opportunities', |
| 'Invitation to exclusive healthcare AI meetups', |
| 'Potential internship opportunities' |
| ], |
| additional: 'Access to premium datasets and research tools', |
| perkBadge: 'Pre-Placement Interview' |
| }, |
| { |
| position: '3rd Place', |
| amount: '₹3,00,000', |
| amountLabel: '₹ 3,00,000', |
| perks: [ |
| 'Certificate of participation', |
| '1-month mentorship with domain expert', |
| 'Networking opportunities with industry professionals', |
| 'Access to exclusive workshops and training', |
| 'Recognition in community showcase' |
| ], |
| additional: 'Opportunity to contribute to open-source healthcare projects', |
| perkBadge: null |
| }, |
| { |
| position: '4th Place', |
| amount: '₹1,00,000', |
| amountLabel: '₹ 1,00,000', |
| perks: [ |
| 'Certificate of participation', |
| 'Recognition in community showcase', |
| 'Access to exclusive workshops and training', |
| 'Networking opportunities with industry professionals' |
| ], |
| additional: 'Recognition for outstanding contributions', |
| perkBadge: null |
| } |
| ], |
| |
| |
| requirements: [ |
| 'Build ML model predicting drug response with >80% accuracy on validation set', |
| 'Submit complete source code with comprehensive documentation and comments', |
| 'Provide detailed model performance metrics and validation results with statistical significance', |
| 'Create 5-minute presentation video explaining approach, methodology, and key findings', |
| 'Include complete data preprocessing pipeline and feature engineering documentation', |
| 'Submit technical report (10-15 pages) detailing methodology, results, and clinical insights', |
| 'Provide model interpretability analysis and feature importance rankings', |
| 'Include deployment guide for production implementation and scalability considerations', |
| 'Submit code that is reproducible and runs on provided test environment', |
| 'Include unit tests and validation scripts for model reliability' |
| ] |
| }, |
| 'prostate-gleason-grading': { |
| theme: 'Automated Prostate Cancer Grading', |
| themeDescription: 'Create deep learning systems for accurate Gleason scoring of prostate cancer specimens using histopathology images.', |
| category: 'Computer Vision', |
| participants: 203, |
| daysLeft: 32, |
| prizeAmount: '₹60,000', |
| requirements: [ |
| 'Develop CNN model for Gleason grade classification', |
| 'Achieve >90% accuracy on validation dataset', |
| 'Submit trained model weights and inference code', |
| 'Provide detailed technical documentation', |
| 'Create visualization of model decision process' |
| ], |
| datasets: [ |
| { |
| title: 'Training Images', |
| size: '3.5GB', |
| description: 'High-resolution histopathology images with expert Gleason grade annotations', |
| downloadUrl: '#' |
| }, |
| { |
| title: 'Validation Set', |
| size: '1.2GB', |
| description: 'Test images for model evaluation and performance benchmarking', |
| downloadUrl: '#' |
| }, |
| { |
| title: 'Sample Annotations', |
| size: '100MB', |
| description: 'Expert annotations and grading guidelines for reference', |
| downloadUrl: '#' |
| } |
| ], |
| timeline: [ |
| { |
| date: 'Dec 15, 2024', |
| title: 'Challenge Start', |
| description: 'Dataset release, model development begins' |
| }, |
| { |
| date: 'Jan 20, 2025', |
| title: 'Progress Review', |
| description: 'Submit intermediate results and model architecture' |
| }, |
| { |
| date: 'Feb 10, 2025', |
| title: 'Final Submission', |
| description: 'Submit complete model and documentation' |
| }, |
| { |
| date: 'Feb 25, 2025', |
| title: 'Results Announcement', |
| description: 'Winners announced, certificates distributed' |
| } |
| ], |
| prizes: [ |
| { |
| position: '1st Place', |
| amount: '₹10,00,000', |
| amountLabel: '₹ 10,00,000', |
| perks: 'Research Collaboration + Certificate', |
| perkBadge: 'Pre-Placement Interview' |
| }, |
| { |
| position: '2nd Place', |
| amount: '₹6,00,000', |
| amountLabel: '₹ 6,00,000', |
| perks: 'Industry Mentorship + Certificate', |
| perkBadge: 'Pre-Placement Interview' |
| }, |
| { |
| position: '3rd Place', |
| amount: '₹3,00,000', |
| amountLabel: '₹ 3,00,000', |
| perks: 'Certificate + Recognition', |
| perkBadge: null |
| }, |
| { |
| position: '4th Place', |
| amount: '₹1,00,000', |
| amountLabel: '₹ 1,00,000', |
| perks: 'Certificate + Recognition', |
| perkBadge: null |
| } |
| ] |
| }, |
| 'breast-cancer-detection': { |
| theme: 'Multi-Modal Breast Cancer Detection', |
| themeDescription: 'Develop AI systems combining mammography and pathology data for early breast cancer detection and risk assessment.', |
| category: 'Medical Imaging', |
| participants: 189, |
| daysLeft: 28, |
| prizeAmount: '₹85,000', |
| requirements: [ |
| 'Build multi-modal AI model for breast cancer detection', |
| 'Integrate mammography and histopathology data', |
| 'Achieve >85% sensitivity and >90% specificity', |
| 'Submit complete pipeline with preprocessing steps', |
| 'Provide clinical validation and interpretability analysis' |
| ], |
| datasets: [ |
| { |
| title: 'Mammography Images', |
| size: '4.2GB', |
| description: 'Digital mammograms with BI-RADS classifications and cancer annotations', |
| downloadUrl: '#' |
| }, |
| { |
| title: 'Histopathology Slides', |
| size: '2.8GB', |
| description: 'H&E stained tissue slides with tumor grade and type annotations', |
| downloadUrl: '#' |
| }, |
| { |
| title: 'Clinical Metadata', |
| size: '15MB', |
| description: 'Patient demographics, risk factors, and follow-up outcomes', |
| downloadUrl: '#' |
| } |
| ], |
| timeline: [ |
| { |
| date: 'Dec 10, 2024', |
| title: 'Challenge Launch', |
| description: 'Multi-modal dataset release, technical workshop' |
| }, |
| { |
| date: 'Jan 15, 2025', |
| title: 'Mid-term Review', |
| description: 'Submit model architecture and initial results' |
| }, |
| { |
| date: 'Feb 5, 2025', |
| title: 'Final Submission', |
| description: 'Submit complete solution and clinical validation' |
| }, |
| { |
| date: 'Feb 20, 2025', |
| title: 'Awards Ceremony', |
| description: 'Results announcement and networking event' |
| } |
| ], |
| prizes: [ |
| { |
| position: '1st Place', |
| amount: '₹10,00,000', |
| amountLabel: '₹ 10,00,000', |
| perks: 'Clinical Collaboration + Publication', |
| perkBadge: 'Pre-Placement Interview' |
| }, |
| { |
| position: '2nd Place', |
| amount: '₹6,00,000', |
| amountLabel: '₹ 6,00,000', |
| perks: 'Research Mentorship + Certificate', |
| perkBadge: 'Pre-Placement Interview' |
| }, |
| { |
| position: '3rd Place', |
| amount: '₹3,00,000', |
| amountLabel: '₹ 3,00,000', |
| perks: 'Certificate + Industry Connect', |
| perkBadge: null |
| }, |
| { |
| position: '4th Place', |
| amount: '₹1,00,000', |
| amountLabel: '₹ 1,00,000', |
| perks: 'Certificate + Recognition', |
| perkBadge: null |
| } |
| ] |
| } |
| }; |
|
|
| return challengeDetails[challengeId] || { |
| theme: 'AI-Powered Medical Innovation', |
| themeDescription: 'Develop cutting-edge AI solutions for medical diagnosis and treatment.', |
| category: 'Machine Learning', |
| participants: Math.floor(Math.random() * 200) + 50, |
| daysLeft: Math.floor(Math.random() * 60) + 15, |
| prizeAmount: '₹50,000', |
| requirements: [ |
| 'Submit a working prototype or solution', |
| 'Provide detailed documentation', |
| 'Include performance metrics and evaluation', |
| 'Submit source code and datasets used', |
| 'Create a presentation video (max 5 minutes)' |
| ], |
| datasets: [ |
| { |
| title: 'Training Dataset', |
| size: '2.5GB', |
| description: 'High-quality medical data for model training and development', |
| downloadUrl: '#' |
| }, |
| { |
| title: 'Validation Dataset', |
| size: '500MB', |
| description: 'Test dataset for model validation and performance evaluation', |
| downloadUrl: '#' |
| } |
| ], |
| timeline: [ |
| { |
| date: 'Dec 20, 2024', |
| title: 'Challenge Launch', |
| description: 'Challenge officially begins, datasets available' |
| }, |
| { |
| date: 'Jan 15, 2025', |
| title: 'Mid-point Check', |
| description: 'Submit progress report and initial results' |
| }, |
| { |
| date: 'Feb 15, 2025', |
| title: 'Final Submission', |
| description: 'Submit final solution and documentation' |
| }, |
| { |
| date: 'Mar 1, 2025', |
| title: 'Results Announcement', |
| description: 'Winners announced and prizes distributed' |
| } |
| ], |
| prizes: [ |
| { |
| position: '1st Place', |
| amount: '₹10,00,000', |
| amountLabel: '₹ 10,00,000', |
| perks: 'Mentorship + Certificate', |
| perkBadge: 'Pre-Placement Interview' |
| }, |
| { |
| position: '2nd Place', |
| amount: '₹6,00,000', |
| amountLabel: '₹ 6,00,000', |
| perks: 'Certificate + Recognition', |
| perkBadge: 'Pre-Placement Interview' |
| }, |
| { |
| position: '3rd Place', |
| amount: '₹3,00,000', |
| amountLabel: '₹ 3,00,000', |
| perks: 'Certificate + Recognition', |
| perkBadge: null |
| }, |
| { |
| position: '4th Place', |
| amount: '₹1,00,000', |
| amountLabel: '₹ 1,00,000', |
| perks: 'Certificate', |
| perkBadge: null |
| } |
| ] |
| }; |
| } |
|
|
| function initLeaderboard() { |
| loadLeaderboard(); |
| } |
|
|
| function loadLeaderboard() { |
| const leaderboardBody = document.getElementById('leaderboardBody'); |
| const profiles = window.oncoConnect.getDefaultProfiles(); |
| |
| |
| profiles.sort((a, b) => b.solved - a.solved); |
| |
| leaderboardBody.innerHTML = profiles.map((profile, index) => { |
| const rank = index + 1; |
| let rankClass = ''; |
| if (rank === 1) rankClass = 'first'; |
| else if (rank === 2) rankClass = 'second'; |
| else if (rank === 3) rankClass = 'third'; |
| |
| return ` |
| <div class="leaderboard-entry" data-profile="${profile.id}" onclick="openProfile('${profile.id}')"> |
| <div class="rank ${rankClass}">${rank}</div> |
| <div class="name">${profile.name}</div> |
| <div class="expertise"> |
| ${profile.expertise.slice(0, 2).map(skill => `<span class="tag">${skill}</span>`).join('')} |
| </div> |
| <div class="solved">${profile.solved}</div> |
| </div> |
| `; |
| }).join(''); |
| } |
|
|
| function initFilters() { |
| const enrollmentFilter = document.getElementById('enrollmentFilter'); |
| |
| enrollmentFilter.addEventListener('click', () => { |
| const isActive = enrollmentFilter.classList.contains('active'); |
| |
| if (isActive) { |
| enrollmentFilter.classList.remove('active'); |
| enrollmentFilter.setAttribute('aria-pressed', 'false'); |
| enrollmentFilter.textContent = 'Show My Enrollments Only'; |
| } else { |
| enrollmentFilter.classList.add('active'); |
| enrollmentFilter.setAttribute('aria-pressed', 'true'); |
| enrollmentFilter.textContent = 'Show All Challenges'; |
| } |
| |
| filterChallenges(); |
| }); |
| } |
|
|
| function filterChallenges() { |
| const showEnrolledOnly = document.getElementById('enrollmentFilter').classList.contains('active'); |
| const challengeCards = document.querySelectorAll('.challenge-card'); |
| |
| challengeCards.forEach(card => { |
| const isEnrolled = card.classList.contains('enrolled'); |
| |
| if (showEnrolledOnly) { |
| card.style.display = isEnrolled ? 'block' : 'none'; |
| } else { |
| card.style.display = 'block'; |
| } |
| }); |
| } |
|
|
| function toggleEnrollment(challengeId) { |
| requireAuth(() => { |
| |
| updateParticipantCount(challengeId); |
| |
| |
| openChallengeDetailModal(challengeId); |
| }); |
| } |
|
|
| |
| function updateParticipantCount(challengeId) { |
| const challenges = window.oncoConnect.data.challenges; |
| const challenge = challenges.find(c => c.id === challengeId); |
| |
| if (challenge) { |
| |
| challenge.participants = (challenge.participants || 0) + 1; |
| |
| |
| window.oncoConnect.saveData('challenges', challenges); |
| |
| |
| if (document.getElementById('challengesGrid')) { |
| loadChallenges(); |
| } |
| } |
| } |
|
|
| |
| function openChallengeDetailModal(challengeId) { |
| const challenge = window.oncoConnect.data.challenges.find(c => c.id === challengeId); |
| if (!challenge) return; |
| |
| |
| const detailedChallenge = { |
| ...challenge, |
| ...getChallengeDetails(challengeId) |
| }; |
| |
| |
| populateChallengeModal(detailedChallenge); |
| |
| |
| const modal = document.getElementById('challengeDetailModal'); |
| modal.style.display = 'flex'; |
| document.body.style.overflow = 'hidden'; |
| |
| |
| const focusableElements = modal.querySelectorAll('button, [href], input, select, textarea, [tabindex]:not([tabindex="-1"])'); |
| const firstElement = focusableElements[0]; |
| const lastElement = focusableElements[focusableElements.length - 1]; |
| |
| modal.addEventListener('keydown', handleModalKeydown); |
| |
| function handleModalKeydown(e) { |
| if (e.key === 'Escape') { |
| closeChallengeDetailModal(); |
| } else if (e.key === 'Tab') { |
| if (e.shiftKey) { |
| if (document.activeElement === firstElement) { |
| lastElement.focus(); |
| e.preventDefault(); |
| } |
| } else { |
| if (document.activeElement === lastElement) { |
| firstElement.focus(); |
| e.preventDefault(); |
| } |
| } |
| } |
| } |
| |
| |
| if (firstElement) { |
| firstElement.focus(); |
| } |
| } |
|
|
| |
| function closeChallengeDetailModal() { |
| const modal = document.getElementById('challengeDetailModal'); |
| modal.style.display = 'none'; |
| document.body.style.overflow = 'auto'; |
| |
| |
| modal.removeEventListener('keydown', handleModalKeydown); |
| } |
|
|
| |
| function populateChallengeModal(challenge) { |
| |
| document.getElementById('modalChallengeTitle').textContent = challenge.title; |
| document.getElementById('modalChallengeOrganizer').textContent = challenge.organizer || 'Co-Lab'; |
| document.getElementById('modalChallengeLocation').textContent = challenge.location || 'Online'; |
| document.getElementById('modalChallengeUpdated').textContent = `Updated On: ${challenge.updatedOn || 'Sep 8, 2025'}`; |
| document.getElementById('modalHighlightBadge').textContent = challenge.highlightBadgeText || 'Grab Pre-Placement Interviews & Cash prizes worth ₹20,00,000'; |
| |
| |
| const tagsContainer = document.getElementById('modalChallengeTags'); |
| const tags = challenge.tags || ['Machine Learning', 'AI', 'Healthcare']; |
| tagsContainer.innerHTML = tags.map(tag => `<span class="challenge-tag">${tag}</span>`).join(''); |
| |
| |
| document.getElementById('modalPrice').textContent = challenge.priceLabel || 'Free'; |
| document.getElementById('modalRegistered').textContent = challenge.registeredCount ? challenge.registeredCount.toLocaleString() : '1,90,520'; |
| document.getElementById('modalDaysLeft').textContent = `${challenge.daysLeft || 12} days left`; |
| document.getElementById('modalDeadlineDate').textContent = challenge.deadlineDisplay || 'Aug 25, 2025'; |
| document.getElementById('modalImpressions').textContent = challenge.impressions ? challenge.impressions.toLocaleString() : '95,87,784'; |
| document.getElementById('modalParticipation').textContent = challenge.participationType || 'Individual'; |
| |
| |
| const eligibilityPills = challenge.eligibilityPills || ['Engineering Students', 'MBA Students', 'Undergraduate', 'Postgraduate']; |
| document.getElementById('modalEligibilityPills').innerHTML = eligibilityPills.map(pill => |
| `<span class="eligibility-pill">${pill}</span>` |
| ).join(''); |
| |
| |
| const eligibilityDetails = document.getElementById('modalEligibilityDetails'); |
| if (challenge.eligibleBullets && challenge.eligibleBullets.length > 0) { |
| eligibilityDetails.innerHTML = ` |
| <div class="eligibility-criteria"> |
| <h4>You're eligible if:</h4> |
| <ul> |
| ${challenge.eligibleBullets.map(bullet => `<li>${bullet}</li>`).join('')} |
| </ul> |
| <h4>You're not eligible if:</h4> |
| <ul> |
| ${challenge.notEligibleBullets ? challenge.notEligibleBullets.map(bullet => `<li>${bullet}</li>`).join('') : '<li>You don\'t meet the above criteria</li>'} |
| </ul> |
| </div> |
| `; |
| } |
| |
| |
| const timeline = challenge.stages || [ |
| { |
| dateLabel: '25 Aug 25', |
| title: 'Registration Opens', |
| description: 'Challenge registration begins. Submit your team details and get ready to compete.', |
| startIso: '2025-08-25T00:00:00Z', |
| endIso: '2025-08-25T23:59:59Z', |
| linkText: 'Click Here', |
| linkUrl: '#' |
| }, |
| { |
| dateLabel: '30 Aug 25', |
| title: 'Submission Deadline', |
| description: 'Last date to submit your solution. Make sure to upload all required files.', |
| startIso: '2025-08-30T00:00:00Z', |
| endIso: '2025-08-30T23:59:59Z', |
| linkText: 'Click Here', |
| linkUrl: '#' |
| } |
| ]; |
| |
| document.getElementById('modalTimeline').innerHTML = timeline.map(stage => ` |
| <div class="timeline-item"> |
| <div class="timeline-date">${stage.dateLabel}</div> |
| <div class="timeline-content"> |
| <div class="timeline-title">${stage.title}</div> |
| <div class="timeline-description">${stage.description}</div> |
| <div class="timeline-dates"> |
| Start: ${new Date(stage.startIso).toLocaleString()} | |
| End: ${new Date(stage.endIso).toLocaleString()} |
| </div> |
| ${stage.linkText ? `<a href="${stage.linkUrl || '#'}" class="timeline-link">${stage.linkText}</a>` : ''} |
| </div> |
| </div> |
| `).join(''); |
| |
| |
| const aboutContent = challenge.aboutParagraphs || [ |
| 'This challenge is designed to test your skills in machine learning and data science. Participants will work on real-world healthcare data to develop innovative solutions.', |
| 'The challenge focuses on developing AI models that can help in early detection and diagnosis of various medical conditions using advanced machine learning techniques.' |
| ]; |
| |
| document.getElementById('modalAboutContent').innerHTML = ` |
| ${aboutContent.map(paragraph => `<p>${paragraph}</p>`).join('')} |
| <div class="eligibility-criteria"> |
| <h4>Eligibility Criteria</h4> |
| <h4>You're eligible if:</h4> |
| <ul> |
| ${challenge.eligibleBullets ? challenge.eligibleBullets.map(bullet => `<li>${bullet}</li>`).join('') : '<li>You are a student or professional in relevant field</li>'} |
| </ul> |
| <h4>You're not eligible if:</h4> |
| <ul> |
| ${challenge.notEligibleBullets ? challenge.notEligibleBullets.map(bullet => `<li>${bullet}</li>`).join('') : '<li>You don\'t meet the above criteria</li>'} |
| </ul> |
| </div> |
| `; |
| |
| |
| const importantDates = challenge.importantDates || [ |
| { |
| label: 'Registration Deadline', |
| iso: challenge.deadlineIso || '2025-08-25T23:59:59Z' |
| } |
| ]; |
| |
| document.getElementById('modalImportantDates').innerHTML = importantDates.map(date => ` |
| <div class="date-item"> |
| <svg class="date-icon" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| <path d="M8 2V5M16 2V5M3.5 9.09H20.5M21 8.5V17.75C21 18.8546 20.1046 19.75 19 19.75H5C3.89543 19.75 3 18.8546 3 17.75V8.5C3 7.39543 3.89543 6.5 5 6.5H19C20.1046 6.5 21 7.39543 21 8.5Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/> |
| </svg> |
| <span class="date-label">${date.label}</span> |
| <span class="date-value">${new Date(date.iso).toLocaleString()}</span> |
| </div> |
| `).join(''); |
| |
| |
| const prizes = challenge.prizes || [ |
| { |
| title: '1st Place', |
| amountLabel: '₹ 10,00,000', |
| perkBadge: 'Pre-Placement Interview', |
| illustrationUrl: null |
| }, |
| { |
| title: '2nd Place', |
| amountLabel: '₹ 6,00,000', |
| perkBadge: 'Pre-Placement Interview', |
| illustrationUrl: null |
| }, |
| { |
| title: '3rd Place', |
| amountLabel: '₹ 3,00,000', |
| perkBadge: null, |
| illustrationUrl: null |
| }, |
| { |
| title: '4th Place', |
| amountLabel: '₹ 1,00,000', |
| perkBadge: null, |
| illustrationUrl: null |
| } |
| ]; |
| |
| document.getElementById('modalPrizes').innerHTML = prizes.map(prize => ` |
| <div class="prize-card"> |
| <div class="prize-info"> |
| <div class="prize-title">${prize.title}</div> |
| <div class="prize-description">Cash prize for outstanding performance</div> |
| <div class="prize-amount">${prize.amountLabel}</div> |
| ${prize.perkBadge ? `<span class="prize-perk">${prize.perkBadge}</span>` : ''} |
| </div> |
| <div class="prize-illustration"> |
| 🏆 |
| </div> |
| </div> |
| `).join(''); |
| |
| |
| const registerButton = document.getElementById('modalRegisterButton'); |
| const enrollButton = document.getElementById('modalEnrollButton'); |
| |
| if (challenge.enrolled) { |
| registerButton.textContent = 'Enrolled ✓'; |
| registerButton.disabled = true; |
| enrollButton.textContent = 'Enrolled ✓'; |
| enrollButton.disabled = true; |
| } else { |
| registerButton.textContent = 'Register'; |
| registerButton.disabled = false; |
| enrollButton.textContent = 'Register'; |
| enrollButton.disabled = false; |
| } |
| } |
|
|
| |
| function initConnectModal() { |
| const modal = document.getElementById('connectModal'); |
| const closeBtn = document.getElementById('closeConnectModal'); |
| const cancelBtn = document.getElementById('cancelConnect'); |
| const form = document.getElementById('connectForm'); |
| |
| closeBtn.addEventListener('click', () => { |
| window.oncoConnect.closeModal(modal); |
| }); |
| |
| cancelBtn.addEventListener('click', () => { |
| window.oncoConnect.closeModal(modal); |
| }); |
| |
| form.addEventListener('submit', (e) => { |
| e.preventDefault(); |
| sendConnectionRequest(); |
| }); |
| } |
|
|
| function openConnectModal(challengeId) { |
| requireAuth(() => { |
| const challenge = window.oncoConnect.data.challenges.find(c => c.id === challengeId); |
| if (!challenge) return; |
| |
| |
| let challengeDescription = challenge.description; |
| if (challenge.id === 'rare-disease-drug') { |
| challengeDescription = ` |
| <div style="margin-bottom: 16px;"> |
| <strong>Challenge:</strong><br> |
| Drug development for rare diseases is slowed by small patient populations and limited trial data. Students are tasked with building an ML model that predicts patient response to candidate compounds using pre-clinical and limited clinical datasets. |
| </div> |
| <div style="margin-bottom: 16px;"> |
| <strong>Datasets (Sample/Mock):</strong><br> |
| • Genomic Data: Variant profiles (VCF files) for 1,000 patients<br> |
| • Transcriptomic Data: RNA-Seq expression profiles pre- and post-treatment<br> |
| • Clinical Outcomes: Limited Phase II trial data with response vs. non-response labels<br> |
| • Commercial Layer: Cost of development, estimated patient pool size, and pricing benchmarks |
| </div> |
| <div> |
| <strong>Expected Deliverable:</strong><br> |
| A prototype ML pipeline that integrates omics and clinical data to predict drug response, with a secondary layer of cost-effectiveness analysis for commercialization feasibility. |
| </div> |
| `; |
| } |
| |
| |
| const challengeInfo = document.getElementById('selectedChallengeInfo'); |
| challengeInfo.innerHTML = ` |
| <h3>${challenge.title}</h3> |
| <div>${challengeDescription}</div> |
| `; |
| |
| |
| loadCollaborators(challengeId); |
| |
| |
| window.oncoConnect.openModal('connectModal'); |
| }); |
| } |
|
|
| function loadCollaborators(challengeId) { |
| const collaboratorsGrid = document.getElementById('collaboratorsGrid'); |
| const recipientSelect = document.getElementById('recipientSelect'); |
| const profiles = window.oncoConnect.getDefaultProfiles(); |
| |
| |
| const collaborators = profiles.sort(() => 0.5 - Math.random()).slice(0, 5); |
| |
| collaboratorsGrid.innerHTML = collaborators.map(profile => ` |
| <div class="collaborator-card" data-profile="${profile.id}" onclick="selectCollaborator('${profile.id}')"> |
| <div class="collaborator-avatar"></div> |
| <div class="collaborator-name">${profile.name}</div> |
| <div class="collaborator-stats">${profile.solved} solved</div> |
| <div class="collaborator-expertise"> |
| ${profile.expertise.slice(0, 2).map(skill => `<span class="tag">${skill}</span>`).join('')} |
| </div> |
| </div> |
| `).join(''); |
| |
| |
| recipientSelect.innerHTML = '<option value="">Select a collaborator</option>' + |
| collaborators.map(profile => `<option value="${profile.id}">${profile.name}</option>`).join(''); |
| |
| |
| const challenge = window.oncoConnect.data.challenges.find(c => c.id === challengeId); |
| document.getElementById('connectionMessage').value = |
| `Hi there! I'm enrolling in "${challenge.title}". Your expertise would be valuable for this challenge. Want to team up and collaborate?`; |
| } |
|
|
| function selectCollaborator(profileId) { |
| |
| document.querySelectorAll('.collaborator-card').forEach(card => { |
| card.classList.remove('selected'); |
| }); |
| |
| |
| const card = document.querySelector(`[data-profile="${profileId}"]`); |
| if (card) { |
| card.classList.add('selected'); |
| |
| |
| document.getElementById('recipientSelect').value = profileId; |
| |
| |
| const profile = window.oncoConnect.getDefaultProfiles().find(p => p.id === profileId); |
| const challenge = document.querySelector('#selectedChallengeInfo h3').textContent; |
| const expertiseText = profile.expertise[0]; |
| |
| document.getElementById('connectionMessage').value = |
| `Hi ${profile.name.split(' ')[1]}, I'm enrolling in ${challenge}. Your ${expertiseText} expertise would be great—want to team up?`; |
| } |
| } |
|
|
| function sendConnectionRequest() { |
| requireAuth(() => { |
| const recipientId = document.getElementById('recipientSelect').value; |
| const message = document.getElementById('connectionMessage').value; |
| |
| if (!recipientId) { |
| window.oncoConnect.showToast('Please select a collaborator', 'error'); |
| return; |
| } |
| |
| |
| const connections = window.oncoConnect.getSavedData('connections') || []; |
| connections.push({ |
| id: window.oncoConnect.generateId(), |
| recipientId: recipientId, |
| message: message, |
| sentAt: new Date().toISOString(), |
| status: 'pending' |
| }); |
| |
| window.oncoConnect.saveData('connections', connections); |
| |
| |
| window.oncoConnect.closeModal('connectModal'); |
| |
| |
| const recipient = window.oncoConnect.getDefaultProfiles().find(p => p.id === recipientId); |
| window.oncoConnect.showToast(`Connection request sent to ${recipient.name}!`); |
| |
| |
| document.getElementById('connectForm').reset(); |
| document.querySelectorAll('.collaborator-card').forEach(card => { |
| card.classList.remove('selected'); |
| }); |
| }); |
| } |
|
|
| |
| function initProfileDrawer() { |
| const drawer = document.getElementById('profileDrawer'); |
| const closeBtn = document.getElementById('closeDrawer'); |
| |
| closeBtn.addEventListener('click', () => { |
| window.oncoConnect.closeDrawer(drawer); |
| }); |
| |
| |
| drawer.addEventListener('click', (e) => { |
| if (e.target === drawer) { |
| window.oncoConnect.closeDrawer(drawer); |
| } |
| }); |
| } |
|
|
| function openProfile(profileId) { |
| const profile = window.oncoConnect.getDefaultProfiles().find(p => p.id === profileId); |
| if (!profile) return; |
| |
| const drawerBody = document.getElementById('drawerBody'); |
| drawerBody.innerHTML = ` |
| <div class="profile-content"> |
| <div class="profile-avatar"></div> |
| <div class="profile-name">${profile.name}</div> |
| <div class="profile-role">${profile.role}</div> |
| |
| <div class="profile-stats"> |
| <div class="stat-item"> |
| <div class="stat-value">${profile.solved}</div> |
| <div class="stat-label">Solved</div> |
| </div> |
| <div class="stat-item"> |
| <div class="stat-value">${profile.expertise.length}</div> |
| <div class="stat-label">Skills</div> |
| </div> |
| </div> |
| |
| <div class="profile-expertise"> |
| <h4>Expertise</h4> |
| <div class="expertise-tags"> |
| ${profile.expertise.map(skill => `<span class="tag">${skill}</span>`).join('')} |
| </div> |
| </div> |
| |
| <div class="profile-bio"> |
| <h4>About</h4> |
| <p>${profile.bio}</p> |
| </div> |
| |
| <button class="btn btn-primary" onclick="quickConnect('${profile.id}')"> |
| Connect |
| </button> |
| </div> |
| `; |
| |
| window.oncoConnect.openDrawer('profileDrawer'); |
| } |
|
|
| function quickConnect(profileId) { |
| requireAuth(() => { |
| |
| const profile = window.oncoConnect.getDefaultProfiles().find(p => p.id === profileId); |
| |
| |
| const connections = window.oncoConnect.getSavedData('connections') || []; |
| connections.push({ |
| id: window.oncoConnect.generateId(), |
| recipientId: profileId, |
| message: `Hi ${profile.name}, I'd like to connect and collaborate!`, |
| sentAt: new Date().toISOString(), |
| status: 'pending' |
| }); |
| |
| window.oncoConnect.saveData('connections', connections); |
| |
| |
| window.oncoConnect.closeDrawer('profileDrawer'); |
| |
| |
| window.oncoConnect.showToast(`Connection request sent to ${profile.name}!`); |
| }); |
| } |