{"version":3,"file":"js/handle_tutorial_file_upload-0f950337f6001b0beb0b.js","mappings":"8EAAAA,EAAEC,UAAUC,GAAG,oBAAoB,WACjC,MAAMC,EAAYF,SAASG,eAAe,wBAEtCD,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,QAIjChB,SAASG,eAAe,iBAAiBc,MAAQJ,EAAKK,SAASC,MAAQ,GACvEnB,SAASG,eAAe,wBAAwBc,MAAQJ,EAAKK,SAASE,aAAe,GAGjFP,EAAKK,SAASG,aAChBrB,SAASG,eAAe,uBAAuBc,MAAQJ,EAAKK,SAASG,YAGnER,EAAKK,SAASI,UAChBtB,SAASG,eAAe,oBAAoBc,MAAQJ,EAAKK,SAASI,SAGhET,EAAKK,SAASK,oBAChBvB,SAASG,eAAe,8BAA8Bc,MAAQJ,EAAKK,SAASK,kBAGhF,EAEAd,EAAOe,WAAWlB,EACtB,CACF,GAEJ,G","sources":["webpack://app/./app/javascript/packs/handle_tutorial_file_upload.js"],"sourcesContent":["$(document).on('DOMContentLoaded', function() {\n const fileInput = document.getElementById(\"tutorial-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(\"tutorial_name\").value = data.tutorial.name || '';\n document.getElementById(\"tutorial_description\").value = data.tutorial.description || '';\n\n // Handling select fields for subjects, tiers and field_of_studies\n if (data.tutorial.subject_id) {\n document.getElementById(\"tutorial_subject_id\").value = data.tutorial.subject_id;\n }\n\n if (data.tutorial.tier_id) {\n document.getElementById(\"tutorial_tier_id\").value = data.tutorial.tier_id;\n }\n\n if (data.tutorial.field_of_study_id) {\n document.getElementById(\"tutorial_field_of_study_id\").value = data.tutorial.field_of_study_id;\n }\n\n };\n\n reader.readAsText(file);\n }\n });\n }\n});\n"],"names":["$","document","on","fileInput","getElementById","addEventListener","event","file","target","files","reader","FileReader","onload","e","data","JSON","parse","result","value","tutorial","name","description","subject_id","tier_id","field_of_study_id","readAsText"],"sourceRoot":""}