{"version":3,"file":"js/handle_file_upload-4b422862ff7a6a0bd616.js","mappings":"8EAAAA,EAAEC,UAAUC,GAAG,oBAAoB,WACjC,MAAMC,EAAYF,SAASG,eAAe,oBAEtCD,GACFA,EAAUE,iBAAiB,UAAU,SAASC,GAC5C,MAAMC,EAAOD,EAAME,OAAOC,MAAM,GAEhC,GAAIF,EAAM,CACN,MAAMG,EAAS,IAAIC,WAEnBD,EAAOE,OAAS,SAASC,GACvB,MAAMC,EAAOC,KAAKC,MAAMH,EAAEL,OAAOS,QAkBjC,GAdAhB,SAASG,eAAe,cAAcc,MAAQJ,EAAKK,KAAKC,OAAS,GACjEnB,SAASG,eAAe,oBAAoBc,MAAQJ,EAAKK,KAAKE,aAAe,GAC7EpB,SAASG,eAAe,kBAAkBc,MAAQJ,EAAKK,KAAKG,WAAa,GACzErB,SAASG,eAAe,wBAAwBc,MAAQJ,EAAKK,KAAKI,iBAAmB,GAGjFT,EAAKK,KAAKK,aACZvB,SAASG,eAAe,mBAAmBc,MAAQJ,EAAKK,KAAKK,YAG3DV,EAAKK,KAAKM,UACZxB,SAASG,eAAe,gBAAgBc,MAAQJ,EAAKK,KAAKM,SAGxDX,EAAKK,KAAKO,UAAW,CACrB,MAAMC,EAAoBb,EAAKK,KAAKO,UAAUE,cAAcC,QAAQ,OAAQ,KAC5E5B,SAASG,eAAe,kBAAkBc,MAAQS,CACtD,CACF,EAEAjB,EAAOoB,WAAWvB,EACtB,CACF,GAEJ,G","sources":["webpack://app/./app/javascript/packs/handle_file_upload.js"],"sourcesContent":["$(document).on('DOMContentLoaded', function() {\n const fileInput = document.getElementById(\"quiz-file-upload\");\n\n if (fileInput) {\n fileInput.addEventListener('change', function(event) {\n const file = event.target.files[0];\n\n if (file) {\n const reader = new FileReader();\n\n reader.onload = function(e) {\n const data = JSON.parse(e.target.result);\n // console.log(\"data\", data);\n\n // Populate form fields with the parsed JSON data\n document.getElementById(\"quiz_title\").value = data.quiz.title || '';\n document.getElementById(\"quiz_description\").value = data.quiz.description || '';\n document.getElementById(\"quiz_entry_fee\").value = data.quiz.entry_fee || '';\n document.getElementById(\"quiz_base_prize_pool\").value = data.quiz.base_prize_pool || '';\n\n // Handling select fields for subjects and tiers\n if (data.quiz.subject_id) {\n document.getElementById(\"quiz_subject_id\").value = data.quiz.subject_id;\n }\n\n if (data.quiz.tier_id) {\n document.getElementById(\"quiz_tier_id\").value = data.quiz.tier_id;\n }\n\n if (data.quiz.quiz_type) {\n const formattedQuizType = data.quiz.quiz_type.toLowerCase().replace(/\\s+/g, '_');\n document.getElementById(\"quiz_quiz_type\").value = formattedQuizType;\n }\n };\n\n reader.readAsText(file);\n }\n });\n }\n});\n\n"],"names":["$","document","on","fileInput","getElementById","addEventListener","event","file","target","files","reader","FileReader","onload","e","data","JSON","parse","result","value","quiz","title","description","entry_fee","base_prize_pool","subject_id","tier_id","quiz_type","formattedQuizType","toLowerCase","replace","readAsText"],"sourceRoot":""}