moodle_local_treestudyplan/amd/build/page-view-plan.min.js.map
2024-06-02 17:21:30 +02:00

1 line
16 KiB
Plaintext

{"version":3,"file":"page-view-plan.min.js","sources":["../src/page-view-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 {call} from 'core/ajax';\nimport notification from 'core/notification';\n\nimport Vue from './vue/vue';\n\nimport Debugger from './util/debugger';\nimport {load_strings} from './util/string-helper';\nimport {ProcessStudyplan} from './studyplan-processor';\nimport {studyplanTiming} from './util/date-helper';\nimport {addBrowserButtonEvent} from './util/browserbuttonevents';\n\nimport RVComponents from './report-viewer-components';\nVue.use(RVComponents);\nimport TSComponents from './treestudyplan-components';\nimport ModalComponents from './modedit-modal';\nVue.use(ModalComponents);\n\nimport PortalVue from './portal-vue/portal-vue.esm';\nVue.use(PortalVue);\nimport BootstrapVue from './bootstrap-vue/bootstrap-vue';\nVue.use(BootstrapVue);\n\n\nlet debug = new Debugger(\"treestudyplanviewer\");\n\nlet strings = load_strings({\n studyplan: {\n studyplan_select_placeholder: 'studyplan_select_placeholder',\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 */\nexport function init(contextid,categoryid) {\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 const in_systemcontext = (contextid <= 1);\n\n let app = new Vue({\n el: '#root',\n data: {\n selected: {\n planid: 0,\n studentid: 0,\n },\n displayedstudyplan: null,\n activestudyplan: null,\n associatedstudents: [],\n selectedstudent: null,\n studentstudyplan: null,\n loadingstudyplan: false,\n studyplans: [],\n text: strings.studyplan,\n toolbox: {\n right: true,\n },\n usedcontexts: [],\n },\n async mounted() {\n call([{\n methodname: 'local_treestudyplan_list_studyplans',\n args: {context_id: contextid}\n }])[0].then(function(response){\n const timingval = { present: 0, past: 1, future: 2};\n response.sort((a,b) => {\n const timinga = studyplanTiming(a);\n const timingb = studyplanTiming(b);\n\n const t = timingval[timinga] - timingval[timingb];\n if(t == 0){\n // sort by name if timing is equal\n return a.name.localeCompare(b.name);\n }\n else {\n return t;\n }\n });\n app.studyplans = response;\n // load studyplan from hash if applicable\n const hash = window.location.hash.replace('#','');\n const parts = hash.split(\"-\");\n\n if(!!parts && parts.length > 0 && parts[0] != ''){\n for(let idx in app.studyplans){\n if(app.studyplans[idx].id == parts[0]){\n app.selectStudyplan(app.studyplans[idx],parts[1]);\n break;\n }\n }\n }\n }).catch(notification.exception);\n call([{\n methodname: 'local_treestudyplan_list_available_categories',\n args: { operation: 'view', refcontext_id: contextid}\n }])[0].then(function(response){\n const contexts = [];\n for(const ix in response){\n const cat = response[ix];\n if(cat.studyplancount > 0 || cat.context_id == contextid){\n contexts.push(cat);\n }\n }\n app.usedcontexts = contexts;\n }).catch(notification.exception);\n addBrowserButtonEvent(this.navChanged, this.navChanged);\n },\n computed: {\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 methods: {\n navChanged() {\n const hash = window.location.hash.replace('#','');\n const parts = hash.split(\"-\");\n debug.log(\"Navigation changed\",hash,parts);\n\n if(!!parts && parts.length > 0){\n const planid = Number(parts[0]);\n const studentid = (parts.length > 1)?Number(parts[1]):0;\n\n debug.log(\"Selected ids\",planid,studentid,this.selected.planid,this.selected.studentid);\n if ( planid == 0) {\n if (planid != this.selected.planid) {\n this.closeStudyplan(false);\n }\n } else if ( this.selected.planid != planid || (studentid == 0 && this.selected.studentid != 0) ) {\n debug.info (\"Requested plan changed - loading studyplan\");\n for(let idx in app.studyplans){\n const plan = this.studyplans[idx];\n if(Number(plan.id) == planid){\n this.selectStudyplan(plan,studentid,false);\n break;\n }\n }\n } else if (this.selected.studentid != studentid) {\n for(const group of app.associatedstudents) {\n for(const student of group.users){\n if(Number(student.id) == studentid){\n app.showStudentView(student,false);\n break;\n }\n }\n }\n }\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 closeStudyplan(updatehash=true) {\n app.selected.planid = 0;\n app.selected.studentid = 0;\n app.activestudyplan = null;\n app.associatedstudents = [];\n app.studentstudyplan = [];\n app.displayedstudyplan = null;\n if (updatehash) {\n window.location.hash = '';\n }\n },\n\n selectStudyplan(studyplan,studentid,updatehash=true){\n app.selected.planid = Number(studyplan.id);\n app.selected.studentid = studentid?Number(studentid):0;\n // fetch studyplan\n app.loadingstudyplan = true;\n app.associatedstudents = [];\n app.selectedstudent = null;\n app.studentstudyplan = null;\n call([{\n methodname: 'local_treestudyplan_get_studyplan_map',\n args: { id: studyplan.id}\n }])[0].then(function(response){\n app.activestudyplan = ProcessStudyplan(response,true);\n \n call([{\n methodname: 'local_treestudyplan_all_associated_grouped',\n args: { studyplan_id: studyplan.id}\n }])[0].then(function(response){\n app.associatedstudents = response;\n let foundstudent = false;\n if(studentid){\n for(const group of app.associatedstudents) {\n for(const student of group.users){\n if(student.id == studentid){\n foundstudent = true;\n app.showStudentView(student,updatehash);\n break;\n }\n }\n }\n }\n if (!foundstudent) {\n app.selected.studentid = 0;\n if (updatehash) {\n window.location.hash = app.activestudyplan.id;\n }\n app.displayedstudyplan = app.activestudyplan;\n app.loadingstudyplan = false;\n }\n }).catch(notification.exception);\n\n }).catch(function(error){\n notification.exception(error);\n app.loadingstudyplan = false;\n });\n },\n showStudentView(student,updatehash=true){\n app.selected.studentid = student?Number(student.id):0;\n if (student) {\n app.selectedstudent = student;\n app.studentstudyplan = null;\n app.loadingstudyplan = true;\n call([{\n methodname: 'local_treestudyplan_get_user_studyplan',\n args: { userid: student.id, studyplanid: app.selected.planid}\n }])[0].then(function(response){\n app.studentstudyplan = ProcessStudyplan(response,false);\n app.displayedstudyplan = app.studentstudyplan;\n app.loadingstudyplan = false;\n if (updatehash) {\n window.location.hash = app.activestudyplan.id + \"-\" + student.id;\n }\n }).catch(function(error){\n notification.exception(error);\n app.loadingstudyplan = false;\n });\n } else {\n this.showOverview(updatehash);\n }\n },\n showOverview(updatehash=true){\n app.selected.studentid = 0;\n app.selectedstudent = null;\n app.studentstudyplan = null;\n app.displayedstudyplan = app.activestudyplan;\n if (updatehash) {\n window.location.hash = app.activestudyplan.id;\n }\n }\n\n },\n });\n}\n"],"names":["contextid","categoryid","undefined","Number","isInteger","app","Vue","el","data","selected","planid","studentid","displayedstudyplan","activestudyplan","associatedstudents","selectedstudent","studentstudyplan","loadingstudyplan","studyplans","text","strings","studyplan","toolbox","right","usedcontexts","methodname","args","context_id","then","response","timingval","present","past","future","sort","a","b","timinga","timingb","t","name","localeCompare","parts","window","location","hash","replace","split","length","idx","id","selectStudyplan","catch","notification","exception","operation","refcontext_id","contexts","ix","cat","studyplancount","push","this","navChanged","computed","dropdown_title","studyplan_select_placeholder","methods","debug","log","closeStudyplan","info","plan","group","student","users","showStudentView","switchContext","ctxid","params","URLSearchParams","search","delete","set","setTimeout","href","pathname","toString","updatehash","studyplan_id","foundstudent","error","userid","studyplanid","showOverview","use","RVComponents","ModalComponents","PortalVue","BootstrapVue","Debugger"],"mappings":"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"}