{"version":3,"file":"uppsala.filedownloader.min.js","names":["define","$","init","initiatorClass","spinnerShowClass","endpointUrl","attr","modifiedEndpointUrl","includes","responseRecieved","response","removeClass","document","location","href","fileurl","errorOccured","request","status","errorThrown","after","click","event","preventDefault","addClass","remove","ajax","url","type","dataType","success","error"],"sources":["components/uppsala.filedownloader.js"],"mappings":"AASAA,OAAO,CAAC,WAAW,SAAUC,GA4CzB,MA3CqB,CACjBC,KAAM,SAAUC,EAAgBC,GAG5B,IAAIC,EAAcJ,EAAEE,GAAgBG,KAAK,QACrCC,EAAsBF,EAAYG,SAAS,KAAOH,EAAc,YAAcA,EAAc,YAqBhG,SAASI,EAAiBC,GAEtBT,EAAEE,GAAgBQ,YAAYP,GAG9BQ,SAASC,SAASC,KAAOJ,EAASK,OACtC,CAEA,SAASC,EAAaC,EAASC,EAAQC,GACnClB,EAAEE,GAAgBQ,YAAYP,GAC9BH,EAAEE,GAAgBiB,MAAM,yDAC5B,CA/BAnB,EAAEE,GAAgBkB,OAElB,SAA8BC,GAC1BA,EAAMC,iBAENtB,EAAEE,GAAgBqB,SAASpB,GAG3BH,EAAE,oBAAoBwB,SAGtBxB,EAAEyB,KAAK,CACHC,IAAKpB,EACLqB,KAAM,MACNC,SAAU,OACVC,QAASrB,EACTsB,MAAOf,GAEf,GAeJ,EAKR","ignoreList":[],"sourcesContent":["/*\n This module will add a class to the given container element, when a initiator element (such as a link) is clicked.\n Uppon server response recieved, class will be removed from the container element and the user redirected to the url contained in the server response.\n If server error occurs, the serverError class will be applied to the spinner container element and spinnerShowClass removed.\n\n Initial intended use for this module is to display a spinner symbol next to a link when clicked, untill the server has created a zip file that is then downloaded.\n\n The module must be initiated once per initiator (such as a link).\n */\ndefine(['jquery'], function ($) {\n var filedownloader = {\n init: function (initiatorClass, spinnerShowClass) {\n\n // use link url as ajax call endpoint\n var endpointUrl = $(initiatorClass).attr(\"href\");\n var modifiedEndpointUrl = endpointUrl.includes(\"?\") ? endpointUrl + \"&isajax=1\" : endpointUrl + \"?isajax=1\";\n $(initiatorClass).click(startWaitForResponse);\n\n function startWaitForResponse(event) {\n event.preventDefault();\n\n $(initiatorClass).addClass(spinnerShowClass);\n\n // remove all spinner error texts\n $(\".js-spinnererror\").remove();\n\n // execure ajax request \n $.ajax({\n url: modifiedEndpointUrl,\n type: \"GET\",\n dataType: \"json\",\n success: responseRecieved,\n error: errorOccured\n });\n }\n\n function responseRecieved(response) {\n // hide spinner\n $(initiatorClass).removeClass(spinnerShowClass);\n\n // goto document\n document.location.href = response.fileurl;\n }\n\n function errorOccured(request, status, errorThrown) {\n $(initiatorClass).removeClass(spinnerShowClass);\n $(initiatorClass).after(\"