{"version":3,"file":"colourwidget.min.js","sources":["https:\/\/moodle.a2u.fr\/local\/accessibility\/amd\/src\/colourwidget.js"],"sourcesContent":["\/\/ This file is part of Moodle - https:\/\/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 * Default script for colourpicker widgets\n *\n * @module local\/accessibility\n * @copyright 2023 Ponlawat Weerapanpisit \n * @license https:\/\/www.gnu.org\/copyleft\/gpl.html GNU GPL v3 or later\n *\/\n\nimport {saveWidgetConfig} from '.\/common';\nimport $ from 'jquery';\n\n\/**\n * Function to initialise a colour-picker widget\n * @param {string} widget plugin full name\n * @param {string} savewidgetname widget name to be saved as user config\n * @param {string} stylename css attribute name to be applied the colour value\n * @param {string} bodyclassname class name of default value in body tag\n *\/\nexport const init = (widget, savewidgetname, stylename, bodyclassname = undefined) => {\n $(() => {\n const revokedefault = () => {\n if (bodyclassname) {\n $('body').removeClass(bodyclassname);\n }\n };\n\n const defaultattrname = `data-default-${stylename}`;\n const $container = $(`#${widget}-container`);\n if (!$container.length) {\n return;\n }\n\n const $picker = $container.find(`#${widget}-picker`);\n if (!$picker.length) {\n return;\n }\n $picker.on('change input propertychange', async() => {\n const colour = $picker.val();\n if (!colour) {\n return;\n }\n if (!\/#[0-9a-f]{6}\/gi.exec(colour)) {\n return;\n }\n revokedefault();\n for (const element of [...$('*')]) {\n const $element = $(element);\n if (!$element.attr(defaultattrname)) {\n $element.attr(defaultattrname, $element.css(stylename));\n }\n $element.css(stylename, colour);\n }\n await saveWidgetConfig(savewidgetname, colour);\n });\n\n const $img = $container.find('img.colourdialogue');\n if ($img.length) {\n $img.on('click', () => {\n $picker.trigger('change');\n });\n }\n\n const $resetbtn = $container.find(`.${widget}-resetbtn`);\n if ($resetbtn.length) {\n $resetbtn.on('click', async() => {\n $picker.val('');\n revokedefault();\n for (const element of [...$('*')]) {\n const $element = $(element);\n const defaultcolour = $element.attr(defaultattrname) ?? '';\n $element.css(stylename, defaultcolour);\n $element.removeAttr(defaultattrname);\n }\n await saveWidgetConfig(savewidgetname, null);\n });\n }\n });\n};\n"],"names":["widget","savewidgetname","stylename","bodyclassname","undefined","revokedefault","removeClass","defaultattrname","$container","length","$picker","find","on","async","colour","val","exec","element","$element","attr","css","$img","trigger","$resetbtn","defaultcolour","removeAttr"],"mappings":";;;;;;;wJAiCoB,SAACA,OAAQC,eAAgBC,eAAWC,0EAAgBC,uBAClE,WACQC,cAAgB,KACdF,mCACE,QAAQG,YAAYH,gBAIxBI,uCAAkCL,WAClCM,YAAa,8BAAMR,0BACpBQ,WAAWC,oBAIVC,QAAUF,WAAWG,gBAASX,uBAC\/BU,QAAQD,cAGbC,QAAQE,GAAG,+BAA+BC,gBAChCC,OAASJ,QAAQK,SAClBD,QAGA,iBAAiBE,KAAKF,SAG3BT,oBACK,MAAMY,UAAW,KAAI,mBAAE,MAAO,OACzBC,UAAW,mBAAED,SACdC,SAASC,KAAKZ,kBACfW,SAASC,KAAKZ,gBAAiBW,SAASE,IAAIlB,YAEhDgB,SAASE,IAAIlB,UAAWY,cAEtB,4BAAiBb,eAAgBa,kBAGrCO,KAAOb,WAAWG,KAAK,sBACzBU,KAAKZ,QACLY,KAAKT,GAAG,SAAS,KACbF,QAAQY,QAAQ,mBAIlBC,UAAYf,WAAWG,gBAASX,qBAClCuB,UAAUd,QACVc,UAAUX,GAAG,SAASC,UAClBH,QAAQK,IAAI,IACZV,oBACK,MAAMY,UAAW,KAAI,mBAAE,MAAO,0BACzBC,UAAW,mBAAED,SACbO,qCAAgBN,SAASC,KAAKZ,0DAAoB,GACxDW,SAASE,IAAIlB,UAAWsB,eACxBN,SAASO,WAAWlB,uBAElB,4BAAiBN,eAAgB"}