X7ROOT File Manager
Current Path:
/home/cbholdings/pasukulu/course/format/amd/src/local/courseeditor
home
/
cbholdings
/
pasukulu
/
course
/
format
/
amd
/
src
/
local
/
courseeditor
/
📁
..
📄
contenttree.js
(6.4 KB)
📄
courseeditor.js
(12.27 KB)
📄
dndcmitem.js
(4.07 KB)
📄
dndsection.js
(6.18 KB)
📄
dndsectionitem.js
(4.58 KB)
📄
exporter.js
(7.42 KB)
📄
fileuploader.js
(18.14 KB)
📄
mutations.js
(25.12 KB)
Editing: exporter.js
// This file is part of Moodle - http://moodle.org/ // // Moodle is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // Moodle is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with Moodle. If not, see <http://www.gnu.org/licenses/>. /** * Module to export parts of the state and transform them to be used in templates * and as draggable data. * * @module core_courseformat/local/courseeditor/exporter * @class core_courseformat/local/courseeditor/exporter * @copyright 2021 Ferran Recio <ferran@moodle.com> * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ export default class { /** * Class constructor. * * @param {CourseEditor} reactive the course editor object */ constructor(reactive) { this.reactive = reactive; // Completions states are defined in lib/completionlib.php. There are 4 different completion // state values, however, the course index uses the same state for complete and complete_pass. // This is the reason why completed appears twice in the array. this.COMPLETIONS = ['incomplete', 'complete', 'complete', 'fail']; } /** * Generate the course export data from the state. * * @param {Object} state the current state. * @returns {Object} */ course(state) { // Collect section information from the state. const data = { sections: [], editmode: this.reactive.isEditing, highlighted: state.course.highlighted ?? '', }; const sectionlist = state.course.sectionlist ?? []; sectionlist.forEach(sectionid => { const sectioninfo = state.section.get(sectionid) ?? {}; const section = this.section(state, sectioninfo); data.sections.push(section); }); data.hassections = (data.sections.length != 0); return data; } /** * Generate a section export data from the state. * * @param {Object} state the current state. * @param {Object} sectioninfo the section state data. * @returns {Object} */ section(state, sectioninfo) { const section = { ...sectioninfo, highlighted: state.course.highlighted ?? '', cms: [], }; const cmlist = sectioninfo.cmlist ?? []; cmlist.forEach(cmid => { const cminfo = state.cm.get(cmid); const cm = this.cm(state, cminfo); section.cms.push(cm); }); section.hascms = (section.cms.length != 0); return section; } /** * Generate a cm export data from the state. * * @param {Object} state the current state. * @param {Object} cminfo the course module state data. * @returns {Object} */ cm(state, cminfo) { const cm = { ...cminfo, isactive: false, }; return cm; } /** * Generate a dragable cm data structure. * * This method is used by any draggable course module element to generate drop data * for its reactive/dragdrop instance. * * @param {*} state the state object * @param {*} cmid the cours emodule id * @returns {Object|null} */ cmDraggableData(state, cmid) { const cminfo = state.cm.get(cmid); if (!cminfo) { return null; } // Drop an activity over the next activity is the same as doing anything. let nextcmid; const section = state.section.get(cminfo.sectionid); const currentindex = section?.cmlist.indexOf(cminfo.id); if (currentindex !== undefined) { nextcmid = section?.cmlist[currentindex + 1]; } return { type: 'cm', id: cminfo.id, name: cminfo.name, sectionid: cminfo.sectionid, nextcmid, }; } /** * Generate a dragable cm data structure. * * This method is used by any draggable section element to generate drop data * for its reactive/dragdrop instance. * * @param {*} state the state object * @param {*} sectionid the cours section id * @returns {Object|null} */ sectionDraggableData(state, sectionid) { const sectioninfo = state.section.get(sectionid); if (!sectioninfo) { return null; } return { type: 'section', id: sectioninfo.id, name: sectioninfo.name, number: sectioninfo.number, }; } /** * Generate a file draggable structure. * * This method is used when files are dragged on the browser. * * @param {*} state the state object * @param {*} dataTransfer the current data tranfer data * @returns {Object|null} */ fileDraggableData(state, dataTransfer) { const files = []; // Browsers do not provide the file list until the drop event. if (dataTransfer.files?.length > 0) { dataTransfer.files.forEach(file => { files.push(file); }); } return { type: 'files', files, }; } /** * Generate a completion export data from the cm element. * * @param {Object} state the current state. * @param {Object} cminfo the course module state data. * @returns {Object} */ cmCompletion(state, cminfo) { const data = { statename: '', state: 'NaN', }; if (cminfo.completionstate !== undefined) { data.state = cminfo.completionstate; data.hasstate = true; const statename = this.COMPLETIONS[cminfo.completionstate] ?? 'NaN'; data[`is${statename}`] = true; } return data; } /** * Return a sorted list of all sections and cms items in the state. * * @param {Object} state the current state. * @returns {Array} all sections and cms items in the state. */ allItemsArray(state) { const items = []; const sectionlist = state.course.sectionlist ?? []; // Add sections. sectionlist.forEach(sectionid => { const sectioninfo = state.section.get(sectionid); items.push({type: 'section', id: sectioninfo.id, url: sectioninfo.sectionurl}); // Add cms. const cmlist = sectioninfo.cmlist ?? []; cmlist.forEach(cmid => { const cminfo = state.cm.get(cmid); items.push({type: 'cm', id: cminfo.id, url: cminfo.url}); }); }); return items; } /** * Check is some activities of a list can be stealth. * * @param {Object} state the current state. * @param {Number[]} cmIds the module ids to check * @returns {Boolean} if any of the activities can be stealth. */ canUseStealth(state, cmIds) { return cmIds.some(cmId => { const cminfo = state.cm.get(cmId); return cminfo?.allowstealth ?? false; }); } }
Upload File
Create Folder