{"version":3,"file":"components/universities-by-state.8bca1b4b860a4edfe54a.js","mappings":"mHAwIA,IArIA,WACE,IAAIA,EACAC,EACAC,EACAC,EACAC,EAKJ,MA4CMC,EAAsB,KAC1BJ,EAAgBK,UAAY,GAC5BL,EAAgBM,YAAYC,KAC5BP,EAAgBQ,UAAW,EAC3BR,EAAgBS,iBAAiB,UAAWC,GAAMC,EAAcD,EAAEE,OAAOC,SACzEZ,EAAyBO,UAAW,CAAI,EAMpCD,EAA0B,KAC9B,MAAMO,EAASC,SAASC,cAAc,UAKtC,OAJAF,EAAOT,UAAY,iBACnBS,EAAON,UAAW,EAClBM,EAAOG,UAAW,EAEXH,CAAM,EAQTI,EAAsBC,IAC1B,MAAMC,EAAUrB,EAAiBsB,QAAQC,GAAeA,EAAWH,QAAUA,IAC7Ef,IACIgB,EAAQG,OAAS,GACnBC,EAAqC,uBACrCC,EAAkBL,GAClBpB,EAAgBQ,UAAW,EA9D7BL,EAAsBuB,UAAUC,IAAI,QACpC3B,EAAgB0B,UAAUE,OAAO,UAOjCzB,EAAsBuB,UAAUE,OAAO,QACvC5B,EAAgB0B,UAAUC,IAAI,QAyD9B,EAQIH,EAAwCK,IAC5C7B,EAAgB8B,WAAWzB,UAAYwB,CAAe,EAQlDJ,EAAqBM,IACzBA,EAAeC,SAASC,IACtB,MAAMnB,EAASC,SAASC,cAAc,UACtCF,EAAOD,MAAQoB,EAAcC,GAC7BpB,EAAOT,UAAY4B,EAAcE,KACjCnC,EAAgBM,YAAYQ,EAAO,GACnC,EAQEH,EAAiByB,IACrB,MAAMC,EAAUtC,EAAiBuC,MAAMhB,GAAeA,EAAWY,IAAME,IACnEC,GACFpC,EAAyBsC,aAAa,YAAaF,EAAQG,KAC3DvC,EAAyBO,UAAW,GAEpCP,EAAyBO,UAAW,CACtC,EAGFiC,GAxHa,KACXzC,EAAkBe,SAAS2B,cAAc,oBACzCzC,EAA2Bc,SAAS2B,cAAc,iCAClDvC,EAAwBY,SAAS2B,cAAc,4BA0B/C3C,EAAmB4C,KAAKC,MAAM7B,SAAS8B,eAAe,0BAA0BxC,WAOhFH,EAAgBa,SAAS2B,cAAc,kBACvCxC,EAAcI,YAAYC,KAC1BL,EAAcO,iBAAiB,UAAWC,GAAMQ,EAAmBR,EAAEE,OAAOC,SAhC5ET,GAAqB,GAmHzB,C","sources":["webpack://stdcheck-exposed-wp-theme/./themes/stdcheck-exposed/src/js/components/universities-by-state.js"],"sourcesContent":["/**\n * The Universities by state component\n */\nfunction UniversitiesByStateComponent() {\n let universitiesList;\n let collegeSelector;\n let universityContinueButton;\n let stateSelector;\n let noUniversitiesMessage;\n\n /**\n * Initializes the universities by state component\n */\n const init = () => {\n collegeSelector = document.querySelector('#select__college');\n universityContinueButton = document.querySelector('.university__continue__button');\n noUniversitiesMessage = document.querySelector('#no-universities-message');\n parseUniversities();\n initStateSelector();\n initCollegeSelector();\n };\n\n /**\n * Hides the no universities message\n */\n const hideNoUniversitiesMessage = () => {\n noUniversitiesMessage.classList.add('hide');\n collegeSelector.classList.remove('hide');\n };\n\n /**\n * Shows the no universities message\n */\n const showNoUniversitiesMessage = () => {\n noUniversitiesMessage.classList.remove('hide');\n collegeSelector.classList.add('hide');\n };\n\n /**\n * Parses the universities list from the JSON string\n */\n const parseUniversities = () => {\n universitiesList = JSON.parse(document.getElementById('universities-list-json').innerHTML);\n };\n\n /**\n * Initializes the state selector\n */\n const initStateSelector = () => {\n stateSelector = document.querySelector('#college-state');\n stateSelector.appendChild(buildSelectAStateOption());\n stateSelector.addEventListener('change', (e) => setCollegeSelector(e.target.value));\n };\n\n /**\n * Initializes the college selector\n */\n const initCollegeSelector = () => {\n collegeSelector.innerHTML = '';\n collegeSelector.appendChild(buildSelectAStateOption());\n collegeSelector.disabled = true;\n collegeSelector.addEventListener('change', (e) => selectCollege(e.target.value));\n universityContinueButton.disabled = true;\n };\n\n /**\n * Builds the select a state option\n */\n const buildSelectAStateOption = () => {\n const option = document.createElement('option');\n option.innerHTML = 'Select a state';\n option.disabled = true;\n option.selected = true;\n\n return option;\n };\n\n /**\n * Sets the college selector based on the state\n *\n * @param {string} state The state to filter the colleges by\n */\n const setCollegeSelector = (state) => {\n const options = universitiesList.filter((university) => university.state === state);\n initCollegeSelector();\n if (options.length > 0) {\n updateCollegeSelectorPlaceHolderText('Select your college');\n setCollegeOptions(options);\n collegeSelector.disabled = false;\n hideNoUniversitiesMessage();\n } else {\n showNoUniversitiesMessage();\n }\n };\n\n /**\n * Updates the placeholder text for the college selector\n *\n * @param {string} placeHolderText The text to set as the placeholder\n */\n const updateCollegeSelectorPlaceHolderText = (placeHolderText) => {\n collegeSelector.firstChild.innerHTML = placeHolderText;\n };\n\n /**\n * Sets the options for the college selector\n *\n * @param {array} collegeOptions The list of colleges to set as options\n */\n const setCollegeOptions = (collegeOptions) => {\n collegeOptions.forEach((collegeOption) => {\n const option = document.createElement('option');\n option.value = collegeOption.id;\n option.innerHTML = collegeOption.name;\n collegeSelector.appendChild(option);\n });\n };\n\n /**\n * Selects a college and enables the continue button\n *\n * @param {string} collegeId The id of the college to select\n */\n const selectCollege = (collegeId) => {\n const college = universitiesList.find((university) => university.id == collegeId);\n if (college) {\n universityContinueButton.setAttribute('data-href', college.url);\n universityContinueButton.disabled = false;\n } else {\n universityContinueButton.disabled = true;\n }\n };\n\n $(init);\n}\n\nnew UniversitiesByStateComponent();\n"],"names":["universitiesList","collegeSelector","universityContinueButton","stateSelector","noUniversitiesMessage","initCollegeSelector","innerHTML","appendChild","buildSelectAStateOption","disabled","addEventListener","e","selectCollege","target","value","option","document","createElement","selected","setCollegeSelector","state","options","filter","university","length","updateCollegeSelectorPlaceHolderText","setCollegeOptions","classList","add","remove","placeHolderText","firstChild","collegeOptions","forEach","collegeOption","id","name","collegeId","college","find","setAttribute","url","$","querySelector","JSON","parse","getElementById"],"sourceRoot":""}