moodle_local_treestudyplan/amd/build/page-edit-plan.min.js.map
2024-04-19 16:46:30 +02:00

1 line
16 KiB
Plaintext

{"version":3,"file":"page-edit-plan.min.js","sources":["../src/page-edit-plan.js"],"sourcesContent":["/*eslint no-var: \"error\" */\n/*eslint no-unused-vars: \"off\" */\n/*eslint linebreak-style: \"off\" */\n/*eslint no-trailing-spaces: \"off\" */\n/*eslint-env es6*/\n// Put this file in path/to/plugin/amd/src\n// You can call it anything you like\n\nimport {get_string,get_strings} from 'core/str';\nimport {call} from 'core/ajax';\nimport notification from 'core/notification';\n\n//import {resetAllFormDirtyStates} from 'core_form/changechecker'; // Moodle 4.00+ only\n\nimport Vue from './vue/vue';\n\nimport EditorComponents from './studyplan-editor-components';\nVue.use(EditorComponents);\n\nimport TSComponents from './treestudyplan-components';\nVue.use(TSComponents);\n\nimport ModalComponents from './modedit-modal';\nVue.use(ModalComponents);\nimport Debugger from './util/debugger';\n\nimport {load_strings} from './util/string-helper';\nimport {ProcessStudyplan} from './studyplan-processor';\nimport {download,upload} from './downloader';\nimport {studyplanTiming} from './util/date-helper';\nimport { premiumenabled, premiumstatus } from \"./util/premium\";\nimport mFormComponents from \"./util/mform-helper\";\nVue.use(mFormComponents);\n\nimport PortalVue from './portal-vue/portal-vue.esm';\nVue.use(PortalVue);\nimport BootstrapVue from './bootstrap-vue/bootstrap-vue';\nVue.use(BootstrapVue);\n\n\nconst debug = new Debugger(\"treestudyplan\");\n\nlet resetAllFormDirtyStates = () => {};\nimport('core_form/changechecker').then((ns) => {\n debug.info(ns);\n if(ns.resetAllFormDirtyStates) {\n resetAllFormDirtyStates = ns.resetAllFormDirtyStates;\n }\n}).catch(()=>{});\n\n\n\nlet strings = load_strings({\n studyplan: {\n studyplan_select_placeholder: 'studyplan_select_placeholder',\n advanced_import_from_file: 'advanced_import_from_file',\n advanced_create_from_template: 'advanced_create_from_template',\n studyplan_add: \"studyplan_add\",\n },\n});\n\n/**\n * Initialize the Page\n * @param {int} contextid The context we should attempt to work in (1:1 related to the category)\n * @param {int} categoryid The category we shoud attempt to work in (1:1 related to the context)\n * @param {object} options Options to be passed to this script\n */\nexport function init(contextid,categoryid,options) {\n // Make sure the id's are numeric and integer\n if(undefined === contextid || !Number.isInteger(Number(contextid)) || contextid < 1 ){ contextid = 1;}\n else { contextid = Number(contextid);} // ensure a numeric value instead of string\n if(undefined === categoryid || !Number.isInteger(Number(categoryid))){ categoryid = 0;}\n else { categoryid = Number(categoryid);} // ensure a numeric value instead of string\n\n debug.info(\"options\",options);\n if ( options !== null && typeof options === 'object' && !Array.isArray(options) ) {\n if ( !options.defaultAggregation ) {\n options.defaultAggregation = \"core\";\n }\n \n } else {\n options = { defaultAggregation: \"core\"};\n }\n\n // Setup the initial Vue app for this page\n let app = new Vue({\n el: '#root',\n data: {\n create: {\n studyplan: {\n name: '',\n shortname: '',\n description: '',\n idnumber: '',\n slots : 4,\n startdate: '2020-08-01',\n enddate: '',\n context: contextid,\n aggregation: options.defaultAggregation,\n aggregation_config: '',\n }\n },\n\n activestudyplan: null,\n activepage: null,\n loadingstudyplan: false,\n studyplans: [],\n templatecount: 0,\n\n text: strings.studyplan,\n usedcontexts: [],\n },\n created() {\n this.$root.$on('studyplanRemoved',(studyplan)=>{\n\n if(app.activestudyplan == studyplan){\n app.activestudyplan = null;\n }\n\n // remove studyplan from index list\n let index = null;\n for(let idx in app.studyplans){\n if(app.studyplans[idx].id == studyplan.id){\n index = idx;\n break;\n }\n }\n if(index){\n app.studyplans.splice(index, 1);\n }\n\n });\n },\n mounted() {\n this.initialize();\n },\n computed: {\n premiumenabled,\n dropdown_title(){\n if(this.activestudyplan && this.activestudyplan.name){\n return this.activestudyplan.name;\n }\n else{\n return this.text.studyplan_select_placeholder;\n }\n },\n contextid(){\n return contextid;\n },\n\n },\n methods: {\n initialize() {\n call([{\n methodname: 'local_treestudyplan_list_studyplans',\n args: { context_id: contextid}\n }])[0].then(function(response){\n const timingval = { future: 0, present: 1, past: 2, };\n response.sort((a,b) => {\n const timinga = studyplanTiming(a);\n const timingb = studyplanTiming(b);\n \n let t = timingval[timinga] - timingval[timingb];\n if(t == 0){\n // sort by start date if timing is equal\n t = new Date(b.startdate).getTime() - new Date(a.startdate).getTime();\n \n if (t == 0) {\n // sort by name if timing is equal\n t = a.name.localeCompare(b.name);\n }\n }\n return t;\n });\n app.studyplans = response;\n \n // load studyplan from hash if applicable\n const hash = location.hash.replace('#','');\n if(hash){\n const id = hash;\n for(const p of app.studyplans) {\n if (p.id == id) {\n app.selectStudyplan(id);\n break;\n }\n }\n }\n }).catch(notification.exception);\n\n call([{\n methodname: 'local_treestudyplan_list_available_categories',\n args: { operation: 'edit', refcontext_id: contextid}\n }])[0].then(function(response){\n app.usedcontexts = response;\n }).catch(notification.exception);\n\n this.refreshTemplateCount();\n },\n refreshTemplateCount(){\n call([{\n methodname: 'local_treestudyplan_count_templates',\n args: { }\n }])[0].then(function(response){\n app.templatecount = response;\n }).catch(notification.exception);\n },\n closeStudyplan() {\n app.activestudyplan = null;\n window.location.hash = '';\n },\n movedStudyplan(plan,from,to) {\n // reload the page in the new context (needed, since a number of links are not reactive in the page)\n const params = new URLSearchParams(location.search);\n params.delete('categoryid');\n params.set(\"contextid\", to);\n setTimeout(() => {\n // Reload page in a timeout to give other form javasccript the change to remove the beforeunload handler.\n window.location.search = params.toString();\n },50);\n },\n onStudyPlanCreated(newstudyplan){\n if (newstudyplan.context_id != contextid) {\n // Study plan has changed context id - reload page into new context id and show the plan\n const params = new URLSearchParams(location.search);\n params.delete('categoryid');\n params.set(\"contextid\", newstudyplan.context_id);\n // Make sure the form is no longer dirty before reloading the page - avoid beforeunload handler triggering.\n resetAllFormDirtyStates();\n window.location = window.location.pathname + \"?\" + params.toString() + \"#\" + newstudyplan.id;\n } else {\n app.studyplans.push(newstudyplan);\n app.selectStudyplan(newstudyplan.id);\n }\n },\n switchContext(ctxid){\n const params = new URLSearchParams(location.search);\n params.delete('categoryid');\n params.set('contextid', ctxid);\n setTimeout(() => {\n // Reload page in a timeout to give other form javasccript the change to remove the beforeunload handler.\n window.location.href = window.location.pathname + \"?\" + params.toString();\n },50);\n },\n selectStudyplan(studyplanid){\n // fetch studyplan\n app.loadingstudyplan = true;\n app.activestudyplan = null;\n call([{\n methodname: 'local_treestudyplan_get_studyplan_map',\n args: { id: studyplanid}\n }])[0].then(function(response){\n app.activestudyplan = ProcessStudyplan(response);\n debug.info('studyplan processed');\n app.loadingstudyplan = false;\n window.location.hash = app.activestudyplan.id;\n }).catch(function(error){\n notification.exception(error);\n app.loadingstudyplan = false;\n });\n },\n import_studyplan(){\n const self = this;\n upload((filename,content)=>{\n call([{\n methodname: 'local_treestudyplan_import_plan',\n args: {\n content: content,\n format: \"application/json\",\n context_id: contextid,\n },\n }])[0].then(function(response){\n if(response.success){\n self.initialize();\n } else {\n debug.error(\"Import failed: \",response.msg);\n }\n\n }).catch(notification.exception);\n }, \"application/json\");\n },\n export_plan(plan,format){\n let self = this;\n if(format == undefined || ![\"json\",\"csv\"].includes(format)){\n format = \"json\";\n }\n call([{\n methodname: 'local_treestudyplan_export_plan',\n args: {\n studyplan_id: plan.id,\n format: format\n },\n }])[0].then(function(response){\n\n download(plan.shortname+\".json\",response.content,response.format);\n }).catch(notification.exception);\n },\n \n },\n });\n}\n\n"],"names":["contextid","categoryid","options","undefined","Number","isInteger","debug","info","Array","isArray","defaultAggregation","app","Vue","el","data","create","studyplan","name","shortname","description","idnumber","slots","startdate","enddate","context","aggregation","aggregation_config","activestudyplan","activepage","loadingstudyplan","studyplans","templatecount","text","strings","usedcontexts","created","$root","$on","index","idx","id","splice","mounted","initialize","computed","premiumenabled","dropdown_title","this","studyplan_select_placeholder","methods","methodname","args","context_id","then","response","timingval","future","present","past","sort","a","b","timinga","timingb","t","Date","getTime","localeCompare","hash","location","replace","p","selectStudyplan","catch","notification","exception","operation","refcontext_id","refreshTemplateCount","closeStudyplan","window","movedStudyplan","plan","from","to","params","URLSearchParams","search","delete","set","setTimeout","toString","onStudyPlanCreated","newstudyplan","resetAllFormDirtyStates","pathname","push","switchContext","ctxid","href","studyplanid","error","import_studyplan","self","filename","content","format","success","msg","export_plan","includes","studyplan_id","use","EditorComponents","TSComponents","ModalComponents","mFormComponents","PortalVue","BootstrapVue","Debugger","ns","advanced_import_from_file","advanced_create_from_template","studyplan_add"],"mappings":"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"}