Sindbad~EG File Manager

Current Path : /var/www/html/ceade.tocsa.com.py/question/type/ddimageortext/amd/build/
Upload File :
Current File : /var/www/html/ceade.tocsa.com.py/question/type/ddimageortext/amd/build/question.min.js.map

{"version":3,"file":"question.min.js","sources":["../src/question.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 <http://www.gnu.org/licenses/>.\n\n/*\n * JavaScript to allow dragging options to slots (using mouse down or touch) or tab through slots using keyboard.\n *\n * @module     qtype_ddimageortext/question\n * @copyright  2018 The Open University\n * @license    http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later\n */\ndefine(['jquery', 'core/dragdrop', 'core/key_codes'], function($, dragDrop, keys) {\n\n    \"use strict\";\n\n    /**\n     * Initialise one drag-drop onto image question.\n     *\n     * @param {String} containerId id of the outer div for this question.\n     * @param {boolean} readOnly whether the question is being displayed read-only.\n     * @param {Array} places Information about the drop places.\n     * @constructor\n     */\n    function DragDropOntoImageQuestion(containerId, readOnly, places) {\n        this.containerId = containerId;\n        this.questionAnswer = {};\n        M.util.js_pending('qtype_ddimageortext-init-' + this.containerId);\n        this.places = places;\n        this.allImagesLoaded = false;\n        this.imageLoadingTimeoutId = null;\n        this.isPrinting = false;\n        if (readOnly) {\n            this.getRoot().addClass('qtype_ddimageortext-readonly');\n        }\n\n        var thisQ = this;\n        this.getNotYetLoadedImages().one('load', function() {\n            thisQ.waitForAllImagesToBeLoaded();\n        });\n        this.waitForAllImagesToBeLoaded();\n    }\n\n    /**\n     * Waits until all images are loaded before calling setupQuestion().\n     *\n     * This function is called from the onLoad of each image, and also polls with\n     * a time-out, because image on-loads are allegedly unreliable.\n     */\n    DragDropOntoImageQuestion.prototype.waitForAllImagesToBeLoaded = function() {\n        var thisQ = this;\n\n        // This method may get called multiple times (via image on-loads or timeouts.\n        // If we are already done, don't do it again.\n        if (this.allImagesLoaded) {\n            return;\n        }\n\n        // Clear any current timeout, if set.\n        if (this.imageLoadingTimeoutId !== null) {\n            clearTimeout(this.imageLoadingTimeoutId);\n        }\n\n        // If we have not yet loaded all images, set a timeout to\n        // call ourselves again, since apparently images on-load\n        // events are flakey.\n        if (this.getNotYetLoadedImages().length > 0) {\n            this.imageLoadingTimeoutId = setTimeout(function() {\n                thisQ.waitForAllImagesToBeLoaded();\n            }, 100);\n            return;\n        }\n\n        // We now have all images. Carry on, but only after giving the layout a chance to settle down.\n        this.allImagesLoaded = true;\n        thisQ.setupQuestion();\n    };\n\n    /**\n     * Get any of the images in the drag-drop area that are not yet fully loaded.\n     *\n     * @returns {jQuery} those images.\n     */\n    DragDropOntoImageQuestion.prototype.getNotYetLoadedImages = function() {\n        var thisQ = this;\n        return this.getRoot().find('.ddarea img').not(function(i, imgNode) {\n            return thisQ.imageIsLoaded(imgNode);\n        });\n    };\n\n    /**\n     * Check if an image has loaded without errors.\n     *\n     * @param {HTMLImageElement} imgElement an image.\n     * @returns {boolean} true if this image has loaded without errors.\n     */\n    DragDropOntoImageQuestion.prototype.imageIsLoaded = function(imgElement) {\n        return imgElement.complete && imgElement.naturalHeight !== 0;\n    };\n\n    /**\n     * Set up the question, once all images have been loaded.\n     */\n    DragDropOntoImageQuestion.prototype.setupQuestion = function() {\n        this.resizeAllDragsAndDrops();\n        this.cloneDrags();\n        this.positionDragsAndDrops();\n        M.util.js_complete('qtype_ddimageortext-init-' + this.containerId);\n    };\n\n    /**\n     * In each group, resize all the items to be the same size.\n     */\n    DragDropOntoImageQuestion.prototype.resizeAllDragsAndDrops = function() {\n        var thisQ = this;\n        this.getRoot().find('.draghomes > div').each(function(i, node) {\n            thisQ.resizeAllDragsAndDropsInGroup(\n                    thisQ.getClassnameNumericSuffix($(node), 'dragitemgroup'));\n        });\n    };\n\n    /**\n     * In a given group, set all the drags and drops to be the same size.\n     *\n     * @param {int} group the group number.\n     */\n    DragDropOntoImageQuestion.prototype.resizeAllDragsAndDropsInGroup = function(group) {\n        var root = this.getRoot(),\n            dragHomes = root.find('.dragitemgroup' + group + ' .draghome'),\n            maxWidth = 0,\n            maxHeight = 0;\n\n        // Find the maximum size of any drag in this groups.\n        dragHomes.each(function(i, drag) {\n            maxWidth = Math.max(maxWidth, Math.ceil(drag.offsetWidth));\n            maxHeight = Math.max(maxHeight, Math.ceil(drag.offsetHeight));\n        });\n\n        // The size we will want to set is a bit bigger than this.\n        maxWidth += 10;\n        maxHeight += 10;\n\n        // Set each drag home to that size.\n        dragHomes.each(function(i, drag) {\n            var left = Math.round((maxWidth - drag.offsetWidth) / 2),\n                top = Math.floor((maxHeight - drag.offsetHeight) / 2);\n            // Set top and left padding so the item is centred.\n            $(drag).css({\n                'padding-left': left + 'px',\n                'padding-right': (maxWidth - drag.offsetWidth - left) + 'px',\n                'padding-top': top + 'px',\n                'padding-bottom': (maxHeight - drag.offsetHeight - top) + 'px'\n            });\n        });\n\n        // Create the drops and make them the right size.\n        for (var i in this.places) {\n            if (!this.places.hasOwnProperty((i))) {\n                continue;\n            }\n            var place = this.places[i],\n                label = place.text;\n            if (parseInt(place.group) !== group) {\n                continue;\n            }\n            if (label === '') {\n                label = M.util.get_string('blank', 'qtype_ddimageortext');\n            }\n            root.find('.dropzones').append('<div class=\"dropzone active group' + place.group +\n                            ' place' + i + '\" tabindex=\"0\">' +\n                    '<span class=\"accesshide\">' + label + '</span>&nbsp;</div>');\n            root.find('.dropzone.place' + i).width(maxWidth - 2).height(maxHeight - 2);\n        }\n    };\n\n    /**\n     * Invisible 'drag homes' are output by the renderer. These have the same properties\n     * as the drag items but are invisible. We clone these invisible elements to make the\n     * actual drag items.\n     */\n    DragDropOntoImageQuestion.prototype.cloneDrags = function() {\n        var thisQ = this;\n        thisQ.getRoot().find('.draghome').each(function(index, dragHome) {\n            var drag = $(dragHome);\n            var placeHolder = drag.clone();\n            placeHolder.removeClass();\n            placeHolder.addClass('draghome choice' +\n                thisQ.getChoice(drag) + ' group' +\n                thisQ.getGroup(drag) + ' dragplaceholder');\n            drag.before(placeHolder);\n        });\n    };\n\n    /**\n     * Clone drag item for one choice.\n     *\n     * @param {jQuery} dragHome the drag home to clone.\n     */\n    DragDropOntoImageQuestion.prototype.cloneDragsForOneChoice = function(dragHome) {\n        if (dragHome.hasClass('infinite')) {\n            var noOfDrags = this.noOfDropsInGroup(this.getGroup(dragHome));\n            for (var i = 0; i < noOfDrags; i++) {\n                this.cloneDrag(dragHome);\n            }\n        } else {\n            this.cloneDrag(dragHome);\n        }\n    };\n\n    /**\n     * Clone drag item.\n     *\n     * @param {jQuery} dragHome\n     */\n    DragDropOntoImageQuestion.prototype.cloneDrag = function(dragHome) {\n        var drag = dragHome.clone();\n        drag.removeClass('draghome')\n            .addClass('drag unplaced moodle-has-zindex')\n            .offset(dragHome.offset());\n        this.getRoot().find('.dragitems').append(drag);\n    };\n\n    /**\n     * Update the position of drags.\n     */\n    DragDropOntoImageQuestion.prototype.positionDragsAndDrops = function() {\n        var thisQ = this,\n            root = this.getRoot(),\n            bgRatio = this.bgRatio();\n\n        // Move the drops into position.\n        root.find('.ddarea .dropzone').each(function(i, dropNode) {\n            var drop = $(dropNode),\n                place = thisQ.places[thisQ.getPlace(drop)];\n            // The xy values come from PHP as strings, so we need parseInt to stop JS doing string concatenation.\n            drop.css('left', parseInt(place.xy[0]) * bgRatio)\n                .css('top', parseInt(place.xy[1]) * bgRatio);\n            drop.data('originX', parseInt(place.xy[0]))\n                .data('originY', parseInt(place.xy[1]));\n            thisQ.handleElementScale(drop, 'left top');\n        });\n\n        // First move all items back home.\n        root.find('.draghome').not('.dragplaceholder').each(function(i, dragNode) {\n            var drag = $(dragNode),\n                currentPlace = thisQ.getClassnameNumericSuffix(drag, 'inplace');\n            drag.addClass('unplaced')\n                .removeClass('placed');\n            drag.removeAttr('tabindex');\n            if (currentPlace !== null) {\n                drag.removeClass('inplace' + currentPlace);\n            }\n        });\n\n        // Then place the ones that should be placed.\n        root.find('input.placeinput').each(function(i, inputNode) {\n            var input = $(inputNode),\n                choice = input.val();\n            if (choice.length === 0 || (choice.length > 0 && choice === '0')) {\n                // No item in this place.\n                return;\n            }\n\n            var place = thisQ.getPlace(input);\n            // Get the unplaced drag.\n            var unplacedDrag = thisQ.getUnplacedChoice(thisQ.getGroup(input), choice);\n            // Get the clone of the drag.\n            var hiddenDrag = thisQ.getDragClone(unplacedDrag);\n            if (hiddenDrag.length) {\n                if (unplacedDrag.hasClass('infinite')) {\n                    var noOfDrags = thisQ.noOfDropsInGroup(thisQ.getGroup(unplacedDrag));\n                    var cloneDrags = thisQ.getInfiniteDragClones(unplacedDrag, false);\n                    if (cloneDrags.length < noOfDrags) {\n                        var cloneDrag = unplacedDrag.clone();\n                        cloneDrag.removeClass('beingdragged');\n                        cloneDrag.removeAttr('tabindex');\n                        hiddenDrag.after(cloneDrag);\n                        // Sometimes, for the question that has a lot of input groups and unlimited draggable items,\n                        // this 'clone' process takes longer than usual, so the questionManager.init() method\n                        // will not add the eventHandler for this cloned drag.\n                        // We need to make sure to add the eventHandler for the cloned drag too.\n                        questionManager.addEventHandlersToDrag(cloneDrag);\n                    } else {\n                        hiddenDrag.addClass('active');\n                    }\n                } else {\n                    hiddenDrag.addClass('active');\n                }\n            }\n\n            // Send the drag to drop.\n            var drop = root.find('.dropzone.place' + place);\n            thisQ.sendDragToDrop(unplacedDrag, drop);\n        });\n\n        // Save the question answer.\n        thisQ.questionAnswer = thisQ.getQuestionAnsweredValues();\n    };\n\n    /**\n     * Get the question answered values.\n     *\n     * @return {Object} Contain key-value with key is the input id and value is the input value.\n     */\n    DragDropOntoImageQuestion.prototype.getQuestionAnsweredValues = function() {\n        let result = {};\n        this.getRoot().find('input.placeinput').each((i, inputNode) => {\n            result[inputNode.id] = inputNode.value;\n        });\n\n        return result;\n    };\n\n    /**\n     * Check if the question is being interacted or not.\n     *\n     * @return {boolean} Return true if the user has changed the question-answer.\n     */\n    DragDropOntoImageQuestion.prototype.isQuestionInteracted = function() {\n        const oldAnswer = this.questionAnswer;\n        const newAnswer = this.getQuestionAnsweredValues();\n        let isInteracted = false;\n\n        // First, check both answers have the same structure or not.\n        if (JSON.stringify(newAnswer) !== JSON.stringify(oldAnswer)) {\n            isInteracted = true;\n            return isInteracted;\n        }\n        // Check the values.\n        Object.keys(newAnswer).forEach(key => {\n            if (newAnswer[key] !== oldAnswer[key]) {\n                isInteracted = true;\n            }\n        });\n\n        return isInteracted;\n    };\n\n    /**\n     * Handles the start of dragging an item.\n     *\n     * @param {Event} e the touch start or mouse down event.\n     */\n    DragDropOntoImageQuestion.prototype.handleDragStart = function(e) {\n        var thisQ = this,\n            drag = $(e.target).closest('.draghome'),\n            currentIndex = this.calculateZIndex(),\n            newIndex = currentIndex + 2;\n\n        var info = dragDrop.prepare(e);\n        if (!info.start || drag.hasClass('beingdragged')) {\n            return;\n        }\n\n        drag.addClass('beingdragged').css('transform', '').css('z-index', newIndex);\n        var currentPlace = this.getClassnameNumericSuffix(drag, 'inplace');\n        if (currentPlace !== null) {\n            this.setInputValue(currentPlace, 0);\n            drag.removeClass('inplace' + currentPlace);\n            var hiddenDrop = thisQ.getDrop(drag, currentPlace);\n            if (hiddenDrop.length) {\n                hiddenDrop.addClass('active');\n                drag.offset(hiddenDrop.offset());\n            }\n        } else {\n            var hiddenDrag = thisQ.getDragClone(drag);\n            if (hiddenDrag.length) {\n                if (drag.hasClass('infinite')) {\n                    var noOfDrags = this.noOfDropsInGroup(thisQ.getGroup(drag));\n                    var cloneDrags = this.getInfiniteDragClones(drag, false);\n                    if (cloneDrags.length < noOfDrags) {\n                        var cloneDrag = drag.clone();\n                        cloneDrag.removeClass('beingdragged');\n                        cloneDrag.removeAttr('tabindex');\n                        hiddenDrag.after(cloneDrag);\n                        questionManager.addEventHandlersToDrag(cloneDrag);\n                        drag.offset(cloneDrag.offset());\n                    } else {\n                        hiddenDrag.addClass('active');\n                        drag.offset(hiddenDrag.offset());\n                    }\n                } else {\n                    hiddenDrag.addClass('active');\n                    drag.offset(hiddenDrag.offset());\n                }\n            }\n        }\n\n        dragDrop.start(e, drag, function(x, y, drag) {\n            thisQ.dragMove(x, y, drag);\n        }, function(x, y, drag) {\n            thisQ.dragEnd(x, y, drag);\n        });\n    };\n\n    /**\n     * Called whenever the currently dragged items moves.\n     *\n     * @param {Number} pageX the x position.\n     * @param {Number} pageY the y position.\n     * @param {jQuery} drag the item being moved.\n     */\n    DragDropOntoImageQuestion.prototype.dragMove = function(pageX, pageY, drag) {\n        var thisQ = this,\n            highlighted = false;\n        this.getRoot().find('.dropzone.group' + this.getGroup(drag)).each(function(i, dropNode) {\n            var drop = $(dropNode);\n            if (thisQ.isPointInDrop(pageX, pageY, drop) && !highlighted) {\n                highlighted = true;\n                drop.addClass('valid-drag-over-drop');\n            } else {\n                drop.removeClass('valid-drag-over-drop');\n            }\n        });\n        this.getRoot().find('.draghome.placed.group' + this.getGroup(drag)).not('.beingdragged').each(function(i, dropNode) {\n            var drop = $(dropNode);\n            if (thisQ.isPointInDrop(pageX, pageY, drop) && !highlighted && !thisQ.isDragSameAsDrop(drag, drop)) {\n                highlighted = true;\n                drop.addClass('valid-drag-over-drop');\n            } else {\n                drop.removeClass('valid-drag-over-drop');\n            }\n        });\n    };\n\n    /**\n     * Called when user drops a drag item.\n     *\n     * @param {Number} pageX the x position.\n     * @param {Number} pageY the y position.\n     * @param {jQuery} drag the item being moved.\n     */\n    DragDropOntoImageQuestion.prototype.dragEnd = function(pageX, pageY, drag) {\n        var thisQ = this,\n            root = this.getRoot(),\n            placed = false;\n\n        // Looking for drag that was dropped on a dropzone.\n        root.find('.dropzone.group' + this.getGroup(drag)).each(function(i, dropNode) {\n            var drop = $(dropNode);\n            if (!thisQ.isPointInDrop(pageX, pageY, drop)) {\n                // Not this drop.\n                return true;\n            }\n\n            // Now put this drag into the drop.\n            drop.removeClass('valid-drag-over-drop');\n            thisQ.sendDragToDrop(drag, drop);\n            placed = true;\n            return false; // Stop the each() here.\n        });\n\n        if (!placed) {\n            // Looking for drag that was dropped on a placed drag.\n            root.find('.draghome.placed.group' + this.getGroup(drag)).not('.beingdragged').each(function(i, placedNode) {\n                var placedDrag = $(placedNode);\n                if (!thisQ.isPointInDrop(pageX, pageY, placedDrag) || thisQ.isDragSameAsDrop(drag, placedDrag)) {\n                    // Not this placed drag.\n                    return true;\n                }\n\n                // Now put this drag into the drop.\n                placedDrag.removeClass('valid-drag-over-drop');\n                var currentPlace = thisQ.getClassnameNumericSuffix(placedDrag, 'inplace');\n                var drop = thisQ.getDrop(drag, currentPlace);\n                thisQ.sendDragToDrop(drag, drop);\n                placed = true;\n                return false; // Stop the each() here.\n            });\n        }\n\n        if (!placed) {\n            this.sendDragHome(drag);\n        }\n    };\n\n    /**\n     * Animate a drag item into a given place (or back home).\n     *\n     * @param {jQuery|null} drag the item to place. If null, clear the place.\n     * @param {jQuery} drop the place to put it.\n     */\n    DragDropOntoImageQuestion.prototype.sendDragToDrop = function(drag, drop) {\n        // Is there already a drag in this drop? if so, evict it.\n        var oldDrag = this.getCurrentDragInPlace(this.getPlace(drop));\n        if (oldDrag.length !== 0) {\n            oldDrag.addClass('beingdragged');\n            oldDrag.offset(oldDrag.offset());\n            var currentPlace = this.getClassnameNumericSuffix(oldDrag, 'inplace');\n            var hiddenDrop = this.getDrop(oldDrag, currentPlace);\n            hiddenDrop.addClass('active');\n            this.sendDragHome(oldDrag);\n        }\n\n        if (drag.length === 0) {\n            this.setInputValue(this.getPlace(drop), 0);\n            if (drop.data('isfocus')) {\n                drop.focus();\n            }\n        } else {\n            this.setInputValue(this.getPlace(drop), this.getChoice(drag));\n            drag.removeClass('unplaced')\n                .addClass('placed inplace' + this.getPlace(drop));\n            drag.attr('tabindex', 0);\n            this.animateTo(drag, drop);\n        }\n    };\n\n    /**\n     * Animate a drag back to its home.\n     *\n     * @param {jQuery} drag the item being moved.\n     */\n    DragDropOntoImageQuestion.prototype.sendDragHome = function(drag) {\n        var currentPlace = this.getClassnameNumericSuffix(drag, 'inplace');\n        if (currentPlace !== null) {\n            drag.removeClass('inplace' + currentPlace);\n        }\n        drag.data('unplaced', true);\n\n        this.animateTo(drag, this.getDragHome(this.getGroup(drag), this.getChoice(drag)));\n    };\n\n    /**\n     * Handles keyboard events on drops.\n     *\n     * Drops are focusable. Once focused, right/down/space switches to the next choice, and\n     * left/up switches to the previous. Escape clear.\n     *\n     * @param {KeyboardEvent} e\n     */\n    DragDropOntoImageQuestion.prototype.handleKeyPress = function(e) {\n        var drop = $(e.target).closest('.dropzone');\n        if (drop.length === 0) {\n            var placedDrag = $(e.target);\n            var currentPlace = this.getClassnameNumericSuffix(placedDrag, 'inplace');\n            if (currentPlace !== null) {\n                drop = this.getDrop(placedDrag, currentPlace);\n            }\n        }\n        var currentDrag = this.getCurrentDragInPlace(this.getPlace(drop)),\n            nextDrag = $();\n\n        switch (e.keyCode) {\n            case keys.space:\n            case keys.arrowRight:\n            case keys.arrowDown:\n                nextDrag = this.getNextDrag(this.getGroup(drop), currentDrag);\n                break;\n\n            case keys.arrowLeft:\n            case keys.arrowUp:\n                nextDrag = this.getPreviousDrag(this.getGroup(drop), currentDrag);\n                break;\n\n            case keys.escape:\n                questionManager.isKeyboardNavigation = false;\n                break;\n\n            default:\n                questionManager.isKeyboardNavigation = false;\n                return; // To avoid the preventDefault below.\n        }\n\n        if (nextDrag.length) {\n            nextDrag.data('isfocus', true);\n            nextDrag.addClass('beingdragged');\n            var hiddenDrag = this.getDragClone(nextDrag);\n            if (hiddenDrag.length) {\n                if (nextDrag.hasClass('infinite')) {\n                    var noOfDrags = this.noOfDropsInGroup(this.getGroup(nextDrag));\n                    var cloneDrags = this.getInfiniteDragClones(nextDrag, false);\n                    if (cloneDrags.length < noOfDrags) {\n                        var cloneDrag = nextDrag.clone();\n                        cloneDrag.removeClass('beingdragged');\n                        cloneDrag.removeAttr('tabindex');\n                        hiddenDrag.after(cloneDrag);\n                        questionManager.addEventHandlersToDrag(cloneDrag);\n                        nextDrag.offset(cloneDrag.offset());\n                    } else {\n                        hiddenDrag.addClass('active');\n                        nextDrag.offset(hiddenDrag.offset());\n                    }\n                } else {\n                    hiddenDrag.addClass('active');\n                    nextDrag.offset(hiddenDrag.offset());\n                }\n            }\n        } else {\n            drop.data('isfocus', true);\n        }\n\n        e.preventDefault();\n        this.sendDragToDrop(nextDrag, drop);\n    };\n\n    /**\n     * Choose the next drag in a group.\n     *\n     * @param {int} group which group.\n     * @param {jQuery} drag current choice (empty jQuery if there isn't one).\n     * @return {jQuery} the next drag in that group, or null if there wasn't one.\n     */\n    DragDropOntoImageQuestion.prototype.getNextDrag = function(group, drag) {\n        var choice,\n            numChoices = this.noOfChoicesInGroup(group);\n\n        if (drag.length === 0) {\n            choice = 1; // Was empty, so we want to select the first choice.\n        } else {\n            choice = this.getChoice(drag) + 1;\n        }\n\n        var next = this.getUnplacedChoice(group, choice);\n        while (next.length === 0 && choice < numChoices) {\n            choice++;\n            next = this.getUnplacedChoice(group, choice);\n        }\n\n        return next;\n    };\n\n    /**\n     * Choose the previous drag in a group.\n     *\n     * @param {int} group which group.\n     * @param {jQuery} drag current choice (empty jQuery if there isn't one).\n     * @return {jQuery} the next drag in that group, or null if there wasn't one.\n     */\n    DragDropOntoImageQuestion.prototype.getPreviousDrag = function(group, drag) {\n        var choice;\n\n        if (drag.length === 0) {\n            choice = this.noOfChoicesInGroup(group);\n        } else {\n            choice = this.getChoice(drag) - 1;\n        }\n\n        var previous = this.getUnplacedChoice(group, choice);\n        while (previous.length === 0 && choice > 1) {\n            choice--;\n            previous = this.getUnplacedChoice(group, choice);\n        }\n\n        // Does this choice exist?\n        return previous;\n    };\n\n    /**\n     * Animate an object to the given destination.\n     *\n     * @param {jQuery} drag the element to be animated.\n     * @param {jQuery} target element marking the place to move it to.\n     */\n    DragDropOntoImageQuestion.prototype.animateTo = function(drag, target) {\n        var currentPos = drag.offset(),\n            targetPos = target.offset(),\n            thisQ = this;\n\n        M.util.js_pending('qtype_ddimageortext-animate-' + thisQ.containerId);\n        // Animate works in terms of CSS position, whereas locating an object\n        // on the page works best with jQuery offset() function. So, to get\n        // the right target position, we work out the required change in\n        // offset() and then add that to the current CSS position.\n        drag.animate(\n            {\n                left: parseInt(drag.css('left')) + targetPos.left - currentPos.left,\n                top: parseInt(drag.css('top')) + targetPos.top - currentPos.top\n            },\n            {\n                duration: 'fast',\n                done: function() {\n                    $('body').trigger('qtype_ddimageortext-dragmoved', [drag, target, thisQ]);\n                    M.util.js_complete('qtype_ddimageortext-animate-' + thisQ.containerId);\n                }\n            }\n        );\n    };\n\n    /**\n     * Detect if a point is inside a given DOM node.\n     *\n     * @param {Number} pageX the x position.\n     * @param {Number} pageY the y position.\n     * @param {jQuery} drop the node to check (typically a drop).\n     * @return {boolean} whether the point is inside the node.\n     */\n    DragDropOntoImageQuestion.prototype.isPointInDrop = function(pageX, pageY, drop) {\n        var position = drop.offset();\n        if (drop.hasClass('draghome')) {\n            return pageX >= position.left && pageX < position.left + drop.outerWidth()\n                && pageY >= position.top && pageY < position.top + drop.outerHeight();\n        }\n        return pageX >= position.left && pageX < position.left + drop.width()\n            && pageY >= position.top && pageY < position.top + drop.height();\n    };\n\n    /**\n     * Set the value of the hidden input for a place, to record what is currently there.\n     *\n     * @param {int} place which place to set the input value for.\n     * @param {int} choice the value to set.\n     */\n    DragDropOntoImageQuestion.prototype.setInputValue = function(place, choice) {\n        this.getRoot().find('input.placeinput.place' + place).val(choice);\n    };\n\n    /**\n     * Get the outer div for this question.\n     *\n     * @returns {jQuery} containing that div.\n     */\n    DragDropOntoImageQuestion.prototype.getRoot = function() {\n        return $(document.getElementById(this.containerId));\n    };\n\n    /**\n     * Get the img that is the background image.\n     * @returns {jQuery} containing that img.\n     */\n    DragDropOntoImageQuestion.prototype.bgImage = function() {\n        return this.getRoot().find('img.dropbackground');\n    };\n\n    /**\n     * Get drag home for a given choice.\n     *\n     * @param {int} group the group.\n     * @param {int} choice the choice number.\n     * @returns {jQuery} containing that div.\n     */\n    DragDropOntoImageQuestion.prototype.getDragHome = function(group, choice) {\n        if (!this.getRoot().find('.draghome.dragplaceholder.group' + group + '.choice' + choice).is(':visible')) {\n            return this.getRoot().find('.dragitemgroup' + group +\n                ' .draghome.infinite' +\n                '.choice' + choice +\n                '.group' + group);\n        }\n        return this.getRoot().find('.draghome.dragplaceholder.group' + group + '.choice' + choice);\n    };\n\n    /**\n     * Get an unplaced choice for a particular group.\n     *\n     * @param {int} group the group.\n     * @param {int} choice the choice number.\n     * @returns {jQuery} jQuery wrapping the unplaced choice. If there isn't one, the jQuery will be empty.\n     */\n    DragDropOntoImageQuestion.prototype.getUnplacedChoice = function(group, choice) {\n        return this.getRoot().find('.ddarea .draghome.group' + group + '.choice' + choice + '.unplaced').slice(0, 1);\n    };\n\n    /**\n     * Get the drag that is currently in a given place.\n     *\n     * @param {int} place the place number.\n     * @return {jQuery} the current drag (or an empty jQuery if none).\n     */\n    DragDropOntoImageQuestion.prototype.getCurrentDragInPlace = function(place) {\n        return this.getRoot().find('.ddarea .draghome.inplace' + place);\n    };\n\n    /**\n     * Return the number of blanks in a given group.\n     *\n     * @param {int} group the group number.\n     * @returns {int} the number of drops.\n     */\n    DragDropOntoImageQuestion.prototype.noOfDropsInGroup = function(group) {\n        return this.getRoot().find('.dropzone.group' + group).length;\n    };\n\n    /**\n     * Return the number of choices in a given group.\n     *\n     * @param {int} group the group number.\n     * @returns {int} the number of choices.\n     */\n    DragDropOntoImageQuestion.prototype.noOfChoicesInGroup = function(group) {\n        return this.getRoot().find('.dragitemgroup' + group + ' .draghome').length;\n    };\n\n    /**\n     * Return the number at the end of the CSS class name with the given prefix.\n     *\n     * @param {jQuery} node\n     * @param {String} prefix name prefix\n     * @returns {Number|null} the suffix if found, else null.\n     */\n    DragDropOntoImageQuestion.prototype.getClassnameNumericSuffix = function(node, prefix) {\n        var classes = node.attr('class');\n        if (classes !== '') {\n            var classesArr = classes.split(' ');\n            for (var index = 0; index < classesArr.length; index++) {\n                var patt1 = new RegExp('^' + prefix + '([0-9])+$');\n                if (patt1.test(classesArr[index])) {\n                    var patt2 = new RegExp('([0-9])+$');\n                    var match = patt2.exec(classesArr[index]);\n                    return Number(match[0]);\n                }\n            }\n        }\n        return null;\n    };\n\n    /**\n     * Get the choice number of a drag.\n     *\n     * @param {jQuery} drag the drag.\n     * @returns {Number} the choice number.\n     */\n    DragDropOntoImageQuestion.prototype.getChoice = function(drag) {\n        return this.getClassnameNumericSuffix(drag, 'choice');\n    };\n\n    /**\n     * Given a DOM node that is significant to this question\n     * (drag, drop, ...) get the group it belongs to.\n     *\n     * @param {jQuery} node a DOM node.\n     * @returns {Number} the group it belongs to.\n     */\n    DragDropOntoImageQuestion.prototype.getGroup = function(node) {\n        return this.getClassnameNumericSuffix(node, 'group');\n    };\n\n    /**\n     * Get the place number of a drop, or its corresponding hidden input.\n     *\n     * @param {jQuery} node the DOM node.\n     * @returns {Number} the place number.\n     */\n    DragDropOntoImageQuestion.prototype.getPlace = function(node) {\n        return this.getClassnameNumericSuffix(node, 'place');\n    };\n\n    /**\n     * Get drag clone for a given drag.\n     *\n     * @param {jQuery} drag the drag.\n     * @returns {jQuery} the drag's clone.\n     */\n    DragDropOntoImageQuestion.prototype.getDragClone = function(drag) {\n        return this.getRoot().find('.dragitemgroup' +\n            this.getGroup(drag) +\n            ' .draghome' +\n            '.choice' + this.getChoice(drag) +\n            '.group' + this.getGroup(drag) +\n            '.dragplaceholder');\n    };\n\n    /**\n     * Get infinite drag clones for given drag.\n     *\n     * @param {jQuery} drag the drag.\n     * @param {Boolean} inHome in the home area or not.\n     * @returns {jQuery} the drag's clones.\n     */\n    DragDropOntoImageQuestion.prototype.getInfiniteDragClones = function(drag, inHome) {\n        if (inHome) {\n            return this.getRoot().find('.dragitemgroup' +\n                this.getGroup(drag) +\n                ' .draghome' +\n                '.choice' + this.getChoice(drag) +\n                '.group' + this.getGroup(drag) +\n                '.infinite').not('.dragplaceholder');\n        }\n        return this.getRoot().find('.draghome' +\n            '.choice' + this.getChoice(drag) +\n            '.group' + this.getGroup(drag) +\n            '.infinite').not('.dragplaceholder');\n    };\n\n    /**\n     * Get drop for a given drag and place.\n     *\n     * @param {jQuery} drag the drag.\n     * @param {Integer} currentPlace the current place of drag.\n     * @returns {jQuery} the drop's clone.\n     */\n    DragDropOntoImageQuestion.prototype.getDrop = function(drag, currentPlace) {\n        return this.getRoot().find('.dropzone.group' + this.getGroup(drag) + '.place' + currentPlace);\n    };\n\n    /**\n     * Handle when the window is resized.\n     */\n    DragDropOntoImageQuestion.prototype.handleResize = function() {\n        var thisQ = this,\n            bgRatio = this.bgRatio();\n        if (this.isPrinting) {\n            bgRatio = 1;\n        }\n\n        this.getRoot().find('.ddarea .dropzone').each(function(i, dropNode) {\n            $(dropNode)\n                .css('left', parseInt($(dropNode).data('originX')) * parseFloat(bgRatio))\n                .css('top', parseInt($(dropNode).data('originY')) * parseFloat(bgRatio));\n            thisQ.handleElementScale(dropNode, 'left top');\n        });\n\n        this.getRoot().find('div.droparea .draghome').not('.beingdragged').each(function(key, drag) {\n            $(drag)\n                .css('left', parseFloat($(drag).data('originX')) * parseFloat(bgRatio))\n                .css('top', parseFloat($(drag).data('originY')) * parseFloat(bgRatio));\n            thisQ.handleElementScale(drag, 'left top');\n        });\n    };\n\n    /**\n     * Return the background ratio.\n     *\n     * @returns {number} Background ratio.\n     */\n    DragDropOntoImageQuestion.prototype.bgRatio = function() {\n        var bgImg = this.bgImage();\n        var bgImgNaturalWidth = bgImg.get(0).naturalWidth;\n        var bgImgClientWidth = bgImg.width();\n\n        return bgImgClientWidth / bgImgNaturalWidth;\n    };\n\n    /**\n     * Scale the drag if needed.\n     *\n     * @param {jQuery} element the item to place.\n     * @param {String} type scaling type\n     */\n    DragDropOntoImageQuestion.prototype.handleElementScale = function(element, type) {\n        var bgRatio = parseFloat(this.bgRatio());\n        if (this.isPrinting) {\n            bgRatio = 1;\n        }\n        $(element).css({\n            '-webkit-transform': 'scale(' + bgRatio + ')',\n            '-moz-transform': 'scale(' + bgRatio + ')',\n            '-ms-transform': 'scale(' + bgRatio + ')',\n            '-o-transform': 'scale(' + bgRatio + ')',\n            'transform': 'scale(' + bgRatio + ')',\n            'transform-origin': type\n        });\n    };\n\n    /**\n     * Calculate z-index value.\n     *\n     * @returns {number} z-index value\n     */\n    DragDropOntoImageQuestion.prototype.calculateZIndex = function() {\n        var zIndex = 0;\n        this.getRoot().find('.ddarea .dropzone, div.droparea .draghome').each(function(i, dropNode) {\n            dropNode = $(dropNode);\n            // Note that webkit browsers won't return the z-index value from the CSS stylesheet\n            // if the element doesn't have a position specified. Instead it'll return \"auto\".\n            var itemZIndex = dropNode.css('z-index') ? parseInt(dropNode.css('z-index')) : 0;\n\n            if (itemZIndex > zIndex) {\n                zIndex = itemZIndex;\n            }\n        });\n\n        return zIndex;\n    };\n\n    /**\n     * Check that the drag is drop to it's clone.\n     *\n     * @param {jQuery} drag The drag.\n     * @param {jQuery} drop The drop.\n     * @returns {boolean}\n     */\n    DragDropOntoImageQuestion.prototype.isDragSameAsDrop = function(drag, drop) {\n        return this.getChoice(drag) === this.getChoice(drop) && this.getGroup(drag) === this.getGroup(drop);\n    };\n\n    /**\n     * Singleton object that handles all the DragDropOntoImageQuestions\n     * on the page, and deals with event dispatching.\n     * @type {Object}\n     */\n    var questionManager = {\n\n        /**\n         * {boolean} ensures that the event handlers are only initialised once per page.\n         */\n        eventHandlersInitialised: false,\n\n        /**\n         * {Object} ensures that the drag event handlers are only initialised once per question,\n         * indexed by containerId (id on the .que div).\n         */\n        dragEventHandlersInitialised: {},\n\n        /**\n         * {boolean} is printing or not.\n         */\n        isPrinting: false,\n\n        /**\n         * {boolean} is keyboard navigation or not.\n         */\n        isKeyboardNavigation: false,\n\n        /**\n         * {Object} all the questions on this page, indexed by containerId (id on the .que div).\n         */\n        questions: {}, // An object containing all the information about each question on the page.\n\n        /**\n         * Initialise one question.\n         *\n         * @method\n         * @param {String} containerId the id of the div.que that contains this question.\n         * @param {boolean} readOnly whether the question is read-only.\n         * @param {Array} places data.\n         */\n        init: function(containerId, readOnly, places) {\n            questionManager.questions[containerId] =\n                new DragDropOntoImageQuestion(containerId, readOnly, places);\n            if (!questionManager.eventHandlersInitialised) {\n                questionManager.setupEventHandlers();\n                questionManager.eventHandlersInitialised = true;\n            }\n            if (!questionManager.dragEventHandlersInitialised.hasOwnProperty(containerId)) {\n                questionManager.dragEventHandlersInitialised[containerId] = true;\n                // We do not use the body event here to prevent the other event on Mobile device, such as scroll event.\n                var questionContainer = document.getElementById(containerId);\n                if (questionContainer.classList.contains('ddimageortext') &&\n                    !questionContainer.classList.contains('qtype_ddimageortext-readonly')) {\n                    // TODO: Convert all the jQuery selectors and events to native Javascript.\n                    questionManager.addEventHandlersToDrag($(questionContainer).find('.draghome'));\n                }\n            }\n        },\n\n        /**\n         * Set up the event handlers that make this question type work. (Done once per page.)\n         */\n        setupEventHandlers: function() {\n            $('body')\n                .on('keydown',\n                    '.que.ddimageortext:not(.qtype_ddimageortext-readonly) .dropzones .dropzone',\n                    questionManager.handleKeyPress)\n                .on('keydown',\n                    '.que.ddimageortext:not(.qtype_ddimageortext-readonly) .draghome.placed:not(.beingdragged)',\n                    questionManager.handleKeyPress)\n                .on('qtype_ddimageortext-dragmoved', questionManager.handleDragMoved);\n            $(window).on('resize', function() {\n                questionManager.handleWindowResize(false);\n            });\n            window.addEventListener('beforeprint', function() {\n                questionManager.isPrinting = true;\n                questionManager.handleWindowResize(questionManager.isPrinting);\n            });\n            window.addEventListener('afterprint', function() {\n                questionManager.isPrinting = false;\n                questionManager.handleWindowResize(questionManager.isPrinting);\n            });\n            setTimeout(function() {\n                questionManager.fixLayoutIfThingsMoved();\n            }, 100);\n        },\n\n        /**\n         * Binding the drag/touch event again for newly created element.\n         *\n         * @param {jQuery} element Element to bind the event\n         */\n        addEventHandlersToDrag: function(element) {\n            // Unbind all the mousedown and touchstart events to prevent double binding.\n            element.unbind('mousedown touchstart');\n            element.on('mousedown touchstart', questionManager.handleDragStart);\n        },\n\n        /**\n         * Handle mouse down / touch start events on drags.\n         * @param {Event} e the DOM event.\n         */\n        handleDragStart: function(e) {\n            e.preventDefault();\n            var question = questionManager.getQuestionForEvent(e);\n            if (question) {\n                question.handleDragStart(e);\n            }\n        },\n\n        /**\n         * Handle key down / press events on drags.\n         * @param {KeyboardEvent} e\n         */\n        handleKeyPress: function(e) {\n            if (questionManager.isKeyboardNavigation) {\n                return;\n            }\n            questionManager.isKeyboardNavigation = true;\n            var question = questionManager.getQuestionForEvent(e);\n            if (question) {\n                question.handleKeyPress(e);\n            }\n        },\n\n        /**\n         * Handle when the window is resized.\n         * @param {boolean} isPrinting\n         */\n        handleWindowResize: function(isPrinting) {\n            for (var containerId in questionManager.questions) {\n                if (questionManager.questions.hasOwnProperty(containerId)) {\n                    questionManager.questions[containerId].isPrinting = isPrinting;\n                    questionManager.questions[containerId].handleResize();\n                }\n            }\n        },\n\n        /**\n         * Sometimes, despite our best efforts, things change in a way that cannot\n         * be specifically caught (e.g. dock expanding or collapsing in Boost).\n         * Therefore, we need to periodically check everything is in the right position.\n         */\n        fixLayoutIfThingsMoved: function() {\n            this.handleWindowResize(questionManager.isPrinting);\n            // We use setTimeout after finishing work, rather than setInterval,\n            // in case positioning things is slow. We want 100 ms gap\n            // between executions, not what setInterval does.\n            setTimeout(function() {\n                questionManager.fixLayoutIfThingsMoved(questionManager.isPrinting);\n            }, 100);\n        },\n\n        /**\n         * Handle when drag moved.\n         *\n         * @param {Event} e the event.\n         * @param {jQuery} drag the drag\n         * @param {jQuery} target the target\n         * @param {DragDropOntoImageQuestion} thisQ the question.\n         */\n        handleDragMoved: function(e, drag, target, thisQ) {\n            drag.removeClass('beingdragged').css('z-index', '');\n            drag.css('top', target.position().top).css('left', target.position().left);\n            target.after(drag);\n            target.removeClass('active');\n            if (typeof drag.data('unplaced') !== 'undefined' && drag.data('unplaced') === true) {\n                drag.removeClass('placed').addClass('unplaced');\n                drag.removeAttr('tabindex');\n                drag.removeData('unplaced');\n                drag.css('top', '')\n                    .css('left', '')\n                    .css('transform', '');\n                if (drag.hasClass('infinite') && thisQ.getInfiniteDragClones(drag, true).length > 1) {\n                    thisQ.getInfiniteDragClones(drag, true).first().remove();\n                }\n            } else {\n                drag.data('originX', target.data('originX')).data('originY', target.data('originY'));\n                thisQ.handleElementScale(drag, 'left top');\n            }\n            if (typeof drag.data('isfocus') !== 'undefined' && drag.data('isfocus') === true) {\n                drag.focus();\n                drag.removeData('isfocus');\n            }\n            if (typeof target.data('isfocus') !== 'undefined' && target.data('isfocus') === true) {\n                target.removeData('isfocus');\n            }\n            if (questionManager.isKeyboardNavigation) {\n                questionManager.isKeyboardNavigation = false;\n            }\n            if (thisQ.isQuestionInteracted()) {\n                // The user has interacted with the draggable items. We need to mark the form as dirty.\n                questionManager.handleFormDirty();\n                // Save the new answered value.\n                thisQ.questionAnswer = thisQ.getQuestionAnsweredValues();\n            }\n        },\n\n        /**\n         * Given an event, work out which question it effects.\n         * @param {Event} e the event.\n         * @returns {DragDropOntoImageQuestion|undefined} The question, or undefined.\n         */\n        getQuestionForEvent: function(e) {\n            var containerId = $(e.currentTarget).closest('.que.ddimageortext').attr('id');\n            return questionManager.questions[containerId];\n        },\n\n        /**\n         * Handle when the form is dirty.\n         */\n        handleFormDirty: function() {\n            if (typeof M.core_formchangechecker !== 'undefined') {\n                M.core_formchangechecker.set_form_changed();\n            }\n        }\n    };\n\n    /**\n     * @alias module:qtype_ddimageortext/question\n     */\n    return {\n        init: questionManager.init\n    };\n});\n"],"names":["define","$","dragDrop","keys","DragDropOntoImageQuestion","containerId","readOnly","places","questionAnswer","M","util","js_pending","this","allImagesLoaded","imageLoadingTimeoutId","isPrinting","getRoot","addClass","thisQ","getNotYetLoadedImages","one","waitForAllImagesToBeLoaded","prototype","clearTimeout","length","setTimeout","setupQuestion","find","not","i","imgNode","imageIsLoaded","imgElement","complete","naturalHeight","resizeAllDragsAndDrops","cloneDrags","positionDragsAndDrops","js_complete","each","node","resizeAllDragsAndDropsInGroup","getClassnameNumericSuffix","group","root","dragHomes","maxWidth","maxHeight","drag","Math","max","ceil","offsetWidth","offsetHeight","left","round","top","floor","css","hasOwnProperty","place","label","text","parseInt","get_string","append","width","height","index","dragHome","placeHolder","clone","removeClass","getChoice","getGroup","before","cloneDragsForOneChoice","hasClass","noOfDrags","noOfDropsInGroup","cloneDrag","offset","bgRatio","dropNode","drop","getPlace","xy","data","handleElementScale","dragNode","currentPlace","removeAttr","inputNode","input","choice","val","unplacedDrag","getUnplacedChoice","hiddenDrag","getDragClone","getInfiniteDragClones","after","questionManager","addEventHandlersToDrag","sendDragToDrop","getQuestionAnsweredValues","result","id","value","isQuestionInteracted","oldAnswer","newAnswer","isInteracted","JSON","stringify","Object","forEach","key","handleDragStart","e","target","closest","newIndex","calculateZIndex","prepare","start","setInputValue","hiddenDrop","getDrop","x","y","dragMove","dragEnd","pageX","pageY","highlighted","isPointInDrop","isDragSameAsDrop","placed","placedNode","placedDrag","sendDragHome","oldDrag","getCurrentDragInPlace","focus","attr","animateTo","getDragHome","handleKeyPress","currentDrag","nextDrag","keyCode","space","arrowRight","arrowDown","getNextDrag","arrowLeft","arrowUp","getPreviousDrag","escape","isKeyboardNavigation","preventDefault","numChoices","noOfChoicesInGroup","next","previous","currentPos","targetPos","animate","duration","done","trigger","position","outerWidth","outerHeight","document","getElementById","bgImage","is","slice","prefix","classes","classesArr","split","RegExp","test","match","exec","Number","inHome","handleResize","parseFloat","bgImg","bgImgNaturalWidth","get","naturalWidth","element","type","zIndex","itemZIndex","eventHandlersInitialised","dragEventHandlersInitialised","questions","init","setupEventHandlers","questionContainer","classList","contains","on","handleDragMoved","window","handleWindowResize","addEventListener","fixLayoutIfThingsMoved","unbind","question","getQuestionForEvent","removeData","first","remove","handleFormDirty","currentTarget","core_formchangechecker","set_form_changed"],"mappings":"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"}

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists