{"version":3,"file":"main.min.js","sources":["https:\/\/udearroba.udea.edu.co\/externos\/course\/format\/menutopic\/amd\/src\/main.js"],"sourcesContent":["\/\/ This file is part of Moodle - http:\/\/moodle.org\/\n\/\/\n\/\/ Moodle is free software: you can redistribute it and\/or modify\n\/\/ it under the terms of the GNU General Public License as published by\n\/\/ the Free Software Foundation, either version 3 of the License, or\n\/\/ (at your option) any later version.\n\/\/\n\/\/ Moodle is distributed in the hope that it will be useful,\n\/\/ but WITHOUT ANY WARRANTY; without even the implied warranty of\n\/\/ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n\/\/ GNU General Public License for more details.\n\/\/\n\/\/ You should have received a copy of the GNU General Public License\n\/\/ along with Moodle. If not, see .\n\n\/**\n * General actions for the menutopic course format.\n *\n * @copyright 2018 David Herney Bernal - cirano\n * @license http:\/\/www.gnu.org\/copyleft\/gpl.html GNU GPL v3 or later\n *\/\nimport $ from 'jquery';\nimport ModalFactory from 'core\/modal_factory';\nimport {get_strings as getStrings} from 'core\/str';\nimport Log from 'core\/log';\n\n\/\/ Load strings.\nvar strings = [\n {key: 'aboutresource', component: 'format_menutopic'},\n {key: 'aboutsection', component: 'format_menutopic'}\n];\nvar s = [];\n\n\/**\n * Load strings from server.\n *\/\nfunction loadStrings() {\n\n strings.forEach(one => {\n s[one.key] = one.key;\n });\n\n getStrings(strings).then(function(results) {\n var pos = 0;\n strings.forEach(one => {\n s[one.key] = results[pos];\n pos++;\n });\n return true;\n }).fail(function(e) {\n Log.debug('Error loading strings');\n Log.debug(e);\n });\n}\n\/\/ End of Load strings.\n\n\/**\n * Component initialization.\n *\n * @method init\n *\/\nexport const init = () => {\n\n loadStrings();\n\n $('.format-menutopic .menutopic .iconwithhelp').each(function() {\n var $node = $(this);\n $node.on('click', function(e) {\n e.preventDefault();\n var $content = $node.find('.iconwithhelp-content');\n\n if ($content.data('modal')) {\n $content.data('modal').show();\n return;\n }\n\n var title = $content.data('title');\n\n if (!title) {\n title = s.aboutresource;\n }\n\n \/\/ Show the content in a modal window.\n ModalFactory.create({\n 'title': title,\n 'body': ''\n }).done(function(modal) {\n\n var contenthtml = $content.html();\n\n \/\/ Uncomment html in contenthtml. The comment is used in order to load content with tags not inline.\n contenthtml = contenthtml.replace(\/\/g, function(match, p1) {\n return p1;\n }\n );\n\n var $modalBody = modal.getBody();\n $modalBody.append(contenthtml);\n modal.show();\n $content.data('modal', modal);\n });\n });\n });\n\n $('.format-menutopic .menuitem [data-infoid]').each(function() {\n var $node = $(this);\n $node.on('click', function(e) {\n e.preventDefault();\n var $content = $($node.data('infoid'));\n\n if ($content.data('modal')) {\n $content.data('modal').show();\n return;\n }\n\n var title = $content.data('title');\n\n if (!title) {\n title = s.aboutsection;\n }\n\n \/\/ Show the content in a modal window.\n ModalFactory.create({\n 'title': title,\n 'body': $content.html()\n }).done(function(modal) {\n modal.show();\n $content.data('modal', modal);\n });\n });\n });\n};"],"names":["strings","key","component","s","forEach","one","then","results","pos","fail","e","debug","each","$node","this","on","preventDefault","$content","find","data","show","title","aboutresource","create","done","modal","contenthtml","html","replace","match","p1","getBody","append","aboutsection"],"mappings":";;;;;;sNA2BIA,QAAU,CACV,CAACC,IAAK,gBAAiBC,UAAW,oBAClC,CAACD,IAAK,eAAgBC,UAAW,qBAEjCC,EAAI,iBA8BY,KAvBhBH,QAAQI,SAAQC,MACZF,EAAEE,IAAIJ,KAAOI,IAAIJ,4BAGVD,SAASM,MAAK,SAASC,aAC1BC,IAAM,SACVR,QAAQI,SAAQC,MACZF,EAAEE,IAAIJ,KAAOM,QAAQC,KACrBA,UAEG,KACRC,MAAK,SAASC,gBACTC,MAAM,sCACNA,MAAMD,0BAcZ,8CAA8CE,MAAK,eAC7CC,OAAQ,mBAAEC,MACdD,MAAME,GAAG,SAAS,SAASL,GACvBA,EAAEM,qBACEC,SAAWJ,MAAMK,KAAK,4BAEtBD,SAASE,KAAK,SACdF,SAASE,KAAK,SAASC,gBAIvBC,MAAQJ,SAASE,KAAK,SAErBE,QACDA,MAAQlB,EAAEmB,sCAIDC,OAAO,OACPF,WACD,KACTG,MAAK,SAASC,WAETC,YAAcT,SAASU,OAG3BD,YAAcA,YAAYE,QAAQ,sBAAsB,SAASC,MAAOC,WAC7DA,MAIML,MAAMM,UACZC,OAAON,aAClBD,MAAML,OACNH,SAASE,KAAK,QAASM,qCAKjC,6CAA6Cb,MAAK,eAC5CC,OAAQ,mBAAEC,MACdD,MAAME,GAAG,SAAS,SAASL,GACvBA,EAAEM,qBACEC,UAAW,mBAAEJ,MAAMM,KAAK,cAExBF,SAASE,KAAK,SACdF,SAASE,KAAK,SAASC,gBAIvBC,MAAQJ,SAASE,KAAK,SAErBE,QACDA,MAAQlB,EAAE8B,qCAIDV,OAAO,OACPF,WACDJ,SAASU,SAClBH,MAAK,SAASC,OACbA,MAAML,OACNH,SAASE,KAAK,QAASM"}