{"version":3,"file":"search-input.min.js","sources":["https:\/\/demo.tkita.net\/moodle\/lib\/amd\/src\/search-input.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 * Search box.\n *\n * @module core\/search-input\n * @class search-input\n * @package core\n * @copyright 2016 David Monllao {@link http:\/\/www.davidmonllao.com}\n * @license http:\/\/www.gnu.org\/copyleft\/gpl.html GNU GPL v3 or later\n * @since Moodle 3.1\n *\/\ndefine(['jquery'], function($) {\n\n \/**\n * This search box div node.\n *\n * @private\n *\/\n var wrapper = null;\n\n \/**\n * Toggles the form visibility.\n *\n * @param {Event} ev\n * @method toggleForm\n * @private\n *\/\n var toggleForm = function(ev) {\n\n if (wrapper.hasClass('expanded')) {\n hideForm();\n } else {\n showForm(ev);\n }\n };\n\n \/**\n * Shows the form or submits it depending on the window size.\n *\n * @param {Event} ev\n * @method showForm\n * @private\n *\/\n var showForm = function(ev) {\n\n var windowWidth = $(document).width();\n\n \/\/ We are only interested in enter and space keys (accessibility).\n if (ev.type === 'keydown' && ev.keyCode !== 13 && ev.keyCode !== 32) {\n return;\n }\n\n if (windowWidth <= 767 && (ev.type === 'click' || ev.type === 'keydown')) {\n \/\/ Move to the search page when using small window sizes as the input requires too much space.\n submitForm();\n return;\n } else if (windowWidth <= 767) {\n \/\/ Ignore mousedown events in while using small window sizes.\n return;\n }\n\n if (ev.type === 'keydown') {\n \/\/ We don't want to submit the form unless the user hits enter.\n ev.preventDefault();\n }\n\n wrapper.addClass('expanded');\n wrapper.find('form').addClass('expanded');\n wrapper.find('input').focus();\n };\n\n \/**\n * Hides the form.\n *\n * @method hideForm\n * @private\n *\/\n var hideForm = function() {\n wrapper.removeClass('expanded');\n wrapper.find('form').removeClass('expanded');\n };\n\n \/**\n * Submits the form.\n *\n * @param {Event} ev\n * @method submitForm\n * @private\n *\/\n var submitForm = function() {\n wrapper.find('form').submit();\n };\n\n return \/** @alias module:core\/search-input *\/ {\n \/\/ Public variables and functions.\n\n \/**\n * Assigns listeners to the requested select box.\n *\n * @method init\n * @param {Number} id The search wrapper div id\n *\/\n init: function(id) {\n wrapper = $('#' + id);\n wrapper.on('click mouseover keydown', 'div', toggleForm);\n }\n };\n});\n"],"names":["define","$","wrapper","toggleForm","ev","hasClass","hideForm","showForm","windowWidth","document","width","type","keyCode","submitForm","preventDefault","addClass","find","focus","removeClass","submit","init","id","on"],"mappings":";;;;;;;;;;AAyBAA,2BAAO,CAAC,WAAW,SAASC,OAOpBC,QAAU,KASVC,WAAa,SAASC,IAElBF,QAAQG,SAAS,YACjBC,WAEAC,SAASH,KAWbG,SAAW,SAASH,QAEhBI,YAAcP,EAAEQ,UAAUC,QAGd,YAAZN,GAAGO,MAAqC,KAAfP,GAAGQ,SAAiC,KAAfR,GAAGQ,UAIjDJ,aAAe,MAAoB,UAAZJ,GAAGO,MAAgC,YAAZP,GAAGO,MAEjDE,aAEOL,aAAe,MAKV,YAAZJ,GAAGO,MAEHP,GAAGU,iBAGPZ,QAAQa,SAAS,YACjBb,QAAQc,KAAK,QAAQD,SAAS,YAC9Bb,QAAQc,KAAK,SAASC,WAStBX,SAAW,WACXJ,QAAQgB,YAAY,YACpBhB,QAAQc,KAAK,QAAQE,YAAY,aAUjCL,WAAa,WACbX,QAAQc,KAAK,QAAQG,gBAGqB,CAS1CC,KAAM,SAASC,KACXnB,QAAUD,EAAE,IAAMoB,KACVC,GAAG,0BAA2B,MAAOnB"}