{"version":3,"file":"tabsmutations.min.js","sources":["https:\/\/2023.qmplus.qmul.ac.uk\/local\/tabableformathelpers\/amd\/src\/tabsmutations.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 * Format Qmultopics mutations.\n *\n * An instance of this class will be used to add custom mutations to the course editor.\n * To make sure the addMutations method find the proper functions, all functions must\n * be declared as class attributes, not a simple methods. The reason is because many\n * plugins can add extra mutations to the course editor.\n *\n * @module format_Qmultopics\/courseformat\/courseeditor\/mutations\n * @copyright 2022 onwards James Calder and Otago Polytechnic\n * @copyright based on work by 2021 onwards Ferran Recio \n * @license http:\/\/www.gnu.org\/copyleft\/gpl.html GNU GPL v3 or later\n *\/\n\nimport {getCurrentCourseEditor} from 'core_courseformat\/courseeditor';\nimport DefaultMutations from 'core_courseformat\/local\/courseeditor\/mutations';\nimport Ajax from 'core\/ajax';\n\nclass tabsmutations extends DefaultMutations {\n RefreshTabs = async function(stateManager) {\n const updates = await this._callEditWebservice('refresh_tabs', stateManager.get('course').id);\n stateManager.processUpdates(updates);\n };\n SetSectionTab = async function(stateManager, sectionid, tabnumber) {\n const mutations = this;\n Ajax.call([{\n methodname: 'core_course_edit_section',\n args: {id: sectionid, action: 'movetotab', sectionreturn: tabnumber}\n }], true)[0].then(function(){\n mutations.RefreshTabs(stateManager);\n });\n };\n UpdateTabOrder = async function(stateManager, taborder) {\n const updates = await this._callEditWebservice('update_taborder', stateManager.get('course').id, taborder);\n stateManager.processUpdates(updates);\n };\n SetActiveTab = async function(stateManager, tabnumber) {\n stateManager.processUpdates([{name: 'tabs', action: 'update', fields: {activetab: tabnumber}}]);\n\n Ajax.call([{\n methodname: 'core_user_update_user_preferences',\n args: {\n preferences: [{\n type: 'activetab_course_' + stateManager.get('course').id,\n value: tabnumber\n }]\n }\n }]);\n };\n}\n\nexport const init = () => {\n const courseEditor = getCurrentCourseEditor();\n courseEditor.addMutations(new tabsmutations());\n};\n"],"names":["tabsmutations","DefaultMutations","async","stateManager","updates","this","_callEditWebservice","get","id","processUpdates","sectionid","tabnumber","mutations","call","methodname","args","action","sectionreturn","then","RefreshTabs","taborder","name","fields","activetab","preferences","type","value","addMutations"],"mappings":"0mBAiCMA,sBAAsBC,yFACVC,eAAeC,oBACnBC,cAAgBC,KAAKC,oBAAoB,eAAgBH,aAAaI,IAAI,UAAUC,IAC1FL,aAAaM,eAAeL,kDAEhBF,eAAeC,aAAcO,UAAWC,iBAC9CC,UAAYP,mBACbQ,KAAK,CAAC,CACPC,WAAY,2BACZC,KAAM,CAACP,GAAIE,UAAWM,OAAQ,YAAaC,cAAeN,cAC1D,GAAM,GAAGO,MAAK,WACdN,UAAUO,YAAYhB,2DAGbD,eAAeC,aAAciB,gBACpChB,cAAgBC,KAAKC,oBAAoB,kBAAmBH,aAAaI,IAAI,UAAUC,GAAIY,UACjGjB,aAAaM,eAAeL,iDAEjBF,eAAeC,aAAcQ,WACxCR,aAAaM,eAAe,CAAC,CAACY,KAAM,OAAQL,OAAQ,SAAUM,OAAQ,CAACC,UAAWZ,4BAE7EE,KAAK,CAAC,CACPC,WAAY,oCACZC,KAAM,CACFS,YAAa,CAAC,CACVC,KAAM,oBAAsBtB,aAAaI,IAAI,UAAUC,GACvDkB,MAAOf,kCAOP,MACK,0CACRgB,aAAa,IAAI3B"}