[ Index ] |
PHP Cross Reference of Unnamed Project |
[Summary view] [Print] [Text view]
1 YUI.add('moodle-mod_quiz-quizquestionbank', function (Y, NAME) { 2 3 // This file is part of Moodle - http://moodle.org/ 4 // 5 // Moodle is free software: you can redistribute it and/or modify 6 // it under the terms of the GNU General Public License as published by 7 // the Free Software Foundation, either version 3 of the License, or 8 // (at your option) any later version. 9 // 10 // Moodle is distributed in the hope that it will be useful, 11 // but WITHOUT ANY WARRANTY; without even the implied warranty of 12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 // GNU General Public License for more details. 14 // 15 // You should have received a copy of the GNU General Public License 16 // along with Moodle. If not, see <http://www.gnu.org/licenses/>. 17 18 19 /** 20 * Add questions from question bank functionality for a popup in quiz editing page. 21 * 22 * @package mod_quiz 23 * @copyright 2014 The Open University 24 * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later 25 */ 26 27 var CSS = { 28 QBANKLOADING: 'div.questionbankloading', 29 ADDQUESTIONLINKS: 'ul.menu a.questionbank', 30 ADDTOQUIZCONTAINER: 'td.addtoquizaction', 31 PREVIEWCONTAINER: 'td.previewaction', 32 SEARCHOPTIONS: '#advancedsearch' 33 }; 34 35 var PARAMS = { 36 PAGE: 'addonpage', 37 HEADER: 'header' 38 }; 39 40 var POPUP = function() { 41 POPUP.superclass.constructor.apply(this, arguments); 42 }; 43 44 Y.extend(POPUP, Y.Base, { 45 loadingDiv: '', 46 dialogue: null, 47 addonpage: 0, 48 searchRegionInitialised: false, 49 50 create_dialogue: function() { 51 // Create a dialogue on the page and hide it. 52 var config = { 53 headerContent: '', 54 bodyContent: Y.one(CSS.QBANKLOADING), 55 draggable: true, 56 modal: true, 57 centered: true, 58 width: null, 59 visible: false, 60 postmethod: 'form', 61 footerContent: null, 62 extraClasses: ['mod_quiz_qbank_dialogue'] 63 }; 64 this.dialogue = new M.core.dialogue(config); 65 this.dialogue.bodyNode.delegate('click', this.link_clicked, 'a[href]', this); 66 this.dialogue.hide(); 67 68 this.loadingDiv = this.dialogue.bodyNode.getHTML(); 69 70 Y.later(100, this, function() { 71 this.load_content(window.location.search); 72 }); 73 }, 74 75 initializer: function() { 76 if (!Y.one(CSS.QBANKLOADING)) { 77 return; 78 } 79 this.create_dialogue(); 80 Y.one('body').delegate('click', this.display_dialogue, CSS.ADDQUESTIONLINKS, this); 81 }, 82 83 display_dialogue: function(e) { 84 e.preventDefault(); 85 this.dialogue.set('headerContent', e.currentTarget.getData(PARAMS.HEADER)); 86 87 this.addonpage = e.currentTarget.getData(PARAMS.PAGE); 88 var controlsDiv = this.dialogue.bodyNode.one('.modulespecificbuttonscontainer'); 89 if (controlsDiv) { 90 var hidden = controlsDiv.one('input[name=addonpage]'); 91 if (!hidden) { 92 hidden = controlsDiv.appendChild('<input type="hidden" name="addonpage">'); 93 } 94 hidden.set('value', this.addonpage); 95 } 96 97 this.initialiseSearchRegion(); 98 this.dialogue.show(); 99 }, 100 101 load_content: function(queryString) { 102 this.dialogue.bodyNode.append(this.loadingDiv); 103 104 // If to support old IE. 105 if (window.history.replaceState) { 106 window.history.replaceState(null, '', M.cfg.wwwroot + '/mod/quiz/edit.php' + queryString); 107 } 108 109 Y.io(M.cfg.wwwroot + '/mod/quiz/questionbank.ajax.php' + queryString, { 110 method: 'GET', 111 on: { 112 success: this.load_done, 113 failure: this.load_failed 114 }, 115 context: this 116 }); 117 118 }, 119 120 load_done: function(transactionid, response) { 121 var result = JSON.parse(response.responseText); 122 if (!result.status || result.status !== 'OK') { 123 // Because IIS is useless, Moodle can't send proper HTTP response 124 // codes, so we have to detect failures manually. 125 this.load_failed(transactionid, response); 126 return; 127 } 128 129 130 this.dialogue.bodyNode.setHTML(result.contents); 131 Y.use('moodle-question-chooser', function() { 132 M.question.init_chooser({}); 133 }); 134 this.dialogue.bodyNode.one('form').delegate('change', this.options_changed, '.searchoptions', this); 135 136 if (this.dialogue.visible) { 137 Y.later(0, this.dialogue, this.dialogue.centerDialogue); 138 } 139 M.question.qbankmanager.init(); 140 141 this.searchRegionInitialised = false; 142 if (this.dialogue.get('visible')) { 143 this.initialiseSearchRegion(); 144 } 145 146 this.dialogue.fire('widget:contentUpdate'); 147 // TODO MDL-47602 really, the base class should listen for the even fired 148 // on the previous line, and fix things like makeResponsive. 149 // However, it does not. So the next two lines are a hack to fix up 150 // display issues (e.g. overall scrollbars on the page). Once the base class 151 // is fixed, this comment and the following four lines should be deleted. 152 if (this.dialogue.get('visible')) { 153 this.dialogue.hide(); 154 this.dialogue.show(); 155 } 156 }, 157 158 load_failed: function() { 159 }, 160 161 link_clicked: function(e) { 162 // Add question to quiz. mofify the URL, then let it work as normal. 163 if (e.currentTarget.ancestor(CSS.ADDTOQUIZCONTAINER)) { 164 e.currentTarget.set('href', e.currentTarget.get('href') + '&addonpage=' + this.addonpage); 165 return; 166 } 167 168 // Question preview. Needs to open in a pop-up. 169 if (e.currentTarget.ancestor(CSS.PREVIEWCONTAINER)) { 170 window.openpopup(e, { 171 url: e.currentTarget.get('href'), 172 name: 'questionpreview', 173 options: 'height=600,width=800,top=0,left=0,menubar=0,location=0,scrollbars,' + 174 'resizable,toolbar,status,directories=0,fullscreen=0,dependent' 175 }); 176 return; 177 } 178 179 // Click on expand/collaspse search-options. Has its own handler. 180 // We should not interfere. 181 if (e.currentTarget.ancestor(CSS.SEARCHOPTIONS)) { 182 return; 183 } 184 185 // Anything else means reload the pop-up contents. 186 e.preventDefault(); 187 this.load_content(e.currentTarget.get('search')); 188 }, 189 190 options_changed: function(e) { 191 e.preventDefault(); 192 this.load_content('?' + Y.IO.stringify(e.currentTarget.get('form'))); 193 }, 194 195 initialiseSearchRegion: function() { 196 if (this.searchRegionInitialised === true) { 197 return; 198 } 199 if (!Y.one(CSS.SEARCHOPTIONS)) { 200 return; 201 } 202 203 M.util.init_collapsible_region(Y, "advancedsearch", "question_bank_advanced_search", 204 M.util.get_string('clicktohideshow', 'moodle')); 205 this.searchRegionInitialised = true; 206 } 207 }); 208 209 M.mod_quiz = M.mod_quiz || {}; 210 M.mod_quiz.quizquestionbank = M.mod_quiz.quizquestionbank || {}; 211 M.mod_quiz.quizquestionbank.init = function() { 212 return new POPUP(); 213 }; 214 215 216 }, '@VERSION@', { 217 "requires": [ 218 "base", 219 "event", 220 "node", 221 "io", 222 "io-form", 223 "yui-later", 224 "moodle-question-qbankmanager", 225 "moodle-core-notification-dialogue" 226 ] 227 });
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Thu Aug 11 10:00:09 2016 | Cross-referenced by PHPXref 0.7.1 |