From e6307a93083dee6947f417cd0d4c2fb49f3c44fc Mon Sep 17 00:00:00 2001 From: PMKuipers Date: Wed, 12 Jun 2024 21:19:26 +0200 Subject: [PATCH] Minor ui fix --- amd/build/studyplan-report-components.min.js | 2 +- amd/build/studyplan-report-components.min.js.map | 2 +- amd/src/studyplan-report-components.js | 2 +- coach.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/amd/build/studyplan-report-components.min.js b/amd/build/studyplan-report-components.min.js index 16c2a20..e4353f1 100644 --- a/amd/build/studyplan-report-components.min.js +++ b/amd/build/studyplan-report-components.min.js @@ -1,3 +1,3 @@ -define("local_treestudyplan/studyplan-report-components",["exports","./util/string-helper","core/ajax","core/notification","./treestudyplan-components","./util/fittext-vue","./util/date-helper"],(function(_exports,_stringHelper,_ajax,_notification,_treestudyplanComponents,_fittextVue,_dateHelper){function _interopRequireDefault(obj){return obj&&obj.__esModule?obj:{default:obj}}function striptags(html){const tmp=document.createElement("DIV");tmp.innerHTML=html;const text=tmp.textContent||tmp.innerText;return tmp.remove(),text}function conditions(item){const course=item.course,list=[];if(course.competency)for(const cmp of course.competency.competencies)list.push(cmp);else if(course.completion)for(const cnd of course.completion.conditions)for(const itm of cnd.items)list.push(itm);else if(course.grades)for(const g of course.grades)g.selected&&list.push(g);return list}Object.defineProperty(_exports,"__esModule",{value:!0}),_exports.default=void 0,_notification=_interopRequireDefault(_notification),_treestudyplanComponents=_interopRequireDefault(_treestudyplanComponents),_fittextVue=_interopRequireDefault(_fittextVue);var _default={install(Vue){Vue.use(_treestudyplanComponents.default),Vue.use(_fittextVue.default);let strings=(0,_stringHelper.loadStrings)({report:{loading:"loadinghelp@core",studyplan_past:"studyplan_past",studyplan_present:"studyplan_present",studyplan_future:"studyplan_future",back:"back"},invalid:{error:"error"},header:{overall:"overall",students:"students@core",firstname:"firstname@core",lastname:"lastname@core",email:"email@core",lastaccess:"lastaccess@core"},studentresults:{completion_incomplete:"completion_incomplete",completion_failed:"completion_failed",completion_pending:"completion_pending",completion_progress:"completion_progress",completion_completed:"completion_completed",completion_good:"completion_good",completion_excellent:"completion_excellent",student_not_tracked:"student_not_tracked",never:"never@core"}});Vue.component("q-studyplanreport",{props:{structure:{type:Object}},data:()=>({students:[],studentresults:{},studentsloading:!0,expansioninfo:{periods:{},lines:{},items:{}},groupinfo:{},sorting:{header:"lastname",asc:!0}}),watch:{structure:{immediate:!0,handler(structure){this.loadStudents();let firstperiod=!0;for(const period of structure.periods){const pid=period.period.id;this.expansioninfo.periods[pid]||(this.$set(this.expansioninfo.periods,pid,{expanded:!!(firstperiod&&period.lines.length>0)}),this.$set(this.expansioninfo.lines,period.period.id,{}));for(const line of period.lines){const lid=line.line.id;this.expansioninfo.lines[lid]||this.$set(this.expansioninfo.lines[pid],lid,{expanded:!0});for(const item of line.items)this.expansioninfo.items[item.id]||this.$set(this.expansioninfo.items,item.id,{expanded:!1})}firstperiod=!1}}}},computed:{sortedstudents(){const students=this.students;for(const group of this.students)group.users.sort(((a,b)=>{let d=a,e=b;if(this.sorting.asc||(d=b,e=a),"lastaccess"==this.sorting.header){return(d[this.sorting.header]?d[this.sorting.header]:0)-(e[this.sorting.header]?e[this.sorting.header]:0)}return String(d[this.sorting.header]).localeCompare(String(e[this.sorting.header]))}));return students},resultColCount(){let count=0;for(const period of this.structure.periods){const pid=period.period.id;if(this.expansioninfo.periods[pid].expanded)for(const line of period.lines){const lid=line.line.id;if(this.expansioninfo.lines[pid][lid].expanded)for(const item of line.items)this.expansioninfo.items[item.id].expanded?count+=1+conditions(item).length:count+=1;else count+=1}else count+=2}return count}},methods:{loadStudents(){const self=this;self.studentsloading=!0,(0,_ajax.call)([{methodname:"local_treestudyplan_all_associated_grouped",args:{studyplan_id:this.structure.studyplan.id}}])[0].then((response=>{self.students=response;for(const group of self.students){self.$set(self.groupinfo,group.id,{expanded:!0});for(const student of group.users)self.$set(self.studentresults,student.id,{loading:!0,results:[]}),(0,_ajax.call)([{methodname:"local_treestudyplan_get_report_data",args:{pageid:self.structure.page.id,userid:student.id,firstperiod:self.structure.firstperiod,lastperiod:self.structure.lastperiod}}])[0].then((response=>{self.studentresults[student.id].loading=!1,self.studentresults[student.id].results=response})).catch(_notification.default.exception)}self.studentsloading=!1})).catch(_notification.default.exception)},expansionChanged(parm,id,val){"lines"==(parm="p"==parm[0]?"periods":"l"==parm[0]?"lines":"items")?this.expansioninfo[parm][id[0]][id[1]].expanded=val:this.expansioninfo[parm][id].expanded=val},groupExpansionChanged(group){this.groupinfo[group.id].expanded=!this.groupinfo[group.id].expanded},toggleSort(header){this.sorting.header==header?this.sorting.asc=!this.sorting.asc:(this.sorting.header=header,this.sorting.asc=!0)}},template:'\n \n \n \n \n \n \n \n \n \n \n
\n
\n '}),Vue.component("q-header",{props:{structure:{type:Object},sorting:{type:Object},expansion:{type:Object}},data:()=>({text:strings.header}),computed:{},methods:{conditions:item=>function(item){const course=item.course,list=[];if(course.competency)for(const cmp of course.competency.competencies)list.push({name:cmp.details?`${cmp.title} - ${cmp.details}`:cmp.title,tooltip:cmp.description});else if(course.completion)for(const cnd of course.completion.conditions)for(const itm of cnd.items)list.push({name:itm.title,tooltip:`${itm.details.type}: ${itm.details.requirement}`});else if(course.grades)for(const g of course.grades)g.selected&&list.push({name:g.name,tooltip:`${g.typename}: ${striptags(g.name)}`});return list}(item),colspanPeriod(period){const pid=period.period.id;if(this.expansion.periods[pid].expanded){let sum=0;for(const l of period.lines)sum+=this.colspanLine(period,l);return sum}return 2},colspanLine(period,line){const pid=period.period.id,lid=line.line.id;if(this.expansion.lines[pid][lid].expanded){let sum=0;for(const i of line.items)sum+=this.colspanItem(i);return sum}return 1},colspanItem(item){if(this.expansion.items[item.id].expanded){return 1+this.conditions(item).length}return 1},togglePeriod(period,val){void 0===val&&(val=!this.expansion.periods[period.id].expanded),this.$emit("expansion","periods",period.id,val)},toggleLine(period,line,val){void 0===val&&(val=!this.expansion.lines[period.id][line.id].expanded),this.$emit("expansion","lines",[period.id,line.id],val)},toggleItem(item,val){void 0===val&&(val=!this.expansion.items[item.id].expanded),this.$emit("expansion","items",item.id,val)},toggleSort(heading){this.$emit("togglesort",heading)}},template:'\n \n \x3c!-- period heading --\x3e\n {{text.students}}\n 0)?1:5\'\n > 0)\' href=\'#\' @click.prevent="togglePeriod(p.period)"\n > {{ p.period.fullname}}{{ p.period.fullname}}\n \n \x3c!-- line heading --\x3e\n \n \n \x3c!-- item heading --\x3e\n \n \n \x3c!-- condition heading --\x3e\n \n \n \x3c!-- student info heading --\x3e\n \n {{text.firstname}}\n / {{text.lastname}}\n \n \n {{text.lastaccess}}\n \n \n \n '}),Vue.component("q-groupheading",{props:{group:{type:Object},resultcolumns:{type:Number,default:1},studentinfocolumns:{type:Number,default:1},expanded:{type:Boolean}},data:()=>({}),computed:{},methods:{toggleGroup(){this.$emit("togglegroup",this.group)}},template:'\n \n  {{group.label}}\n \n \n '}),Vue.component("q-inforow",{props:{resultcolumns:{type:Number,default:1},studentinfocolumns:{type:Number,default:1}},data:()=>({}),computed:{},methods:{},template:'\n \n \n \n \n '}),Vue.component("q-studentresults",{props:{student:{type:Object},structure:{type:Object},results:{type:Array},loading:{type:Boolean,default:!1},expansion:{type:Object},even:{type:Boolean,default:!1}},data:()=>({text:strings.studentresults}),computed:{lastaccess(){return this.student.lastaccess?(0,_dateHelper.formatDatetime)(this.student.lastaccess):this.text.never}},methods:{useritems(line){const list=[];for(const item of line.items){let newitm=item;for(const itm of this.results)if(item.id==itm.id){newitm=itm;break}list.push(newitm)}return list},conditions:item=>conditions(item)},template:'\n \n {{student.firstname}} {{student.lastname}}\n {{lastaccess}}\n \n \n '}),Vue.component("q-courseresult",{props:{student:{type:Object},item:{type:Object},loading:{type:Boolean,default:!1}},data:()=>({text:strings.studentresults}),computed:{hasprogressinfo(){const course=this.item.course;return!!course.enrolled&&!!(course.completion||course.competency||course.grades)},completion_icon(){switch(this.item.completion){default:return"circle-o";case"pending":return"question-circle";case"failed":return"times-circle";case"progress":return"exclamation-circle";case"completed":case"good":case"excellent":return"check-circle"}}},methods:{},template:'\n \n \n \n \n \n '}),Vue.component("q-conditionresult",{props:{student:{type:Object},item:{type:Object},loading:{type:Boolean,default:!1},conditionidx:{type:Number}},data:()=>({text:strings.studentresults}),computed:{conditions(){return conditions(this.item)},condition(){return this.conditionidx>=0&&this.conditionidx`},condition_completion(){const course=this.item.course;if(course.competency){const competency=this.condition;return competency.proficient&&competency.courseproficient||competency.proficient?"completed":!1===competency.proficient?"failed":competency.progress?"progress":"incomplete"}return course.completion?this.condition.status:course.grades?this.condition.completion:"incomplete"}},methods:{},template:'\n \n \n \n \n \n \n \n '})}};return _exports.default=_default,_exports.default})); +define("local_treestudyplan/studyplan-report-components",["exports","./util/string-helper","core/ajax","core/notification","./treestudyplan-components","./util/fittext-vue","./util/date-helper"],(function(_exports,_stringHelper,_ajax,_notification,_treestudyplanComponents,_fittextVue,_dateHelper){function _interopRequireDefault(obj){return obj&&obj.__esModule?obj:{default:obj}}function striptags(html){const tmp=document.createElement("DIV");tmp.innerHTML=html;const text=tmp.textContent||tmp.innerText;return tmp.remove(),text}function conditions(item){const course=item.course,list=[];if(course.competency)for(const cmp of course.competency.competencies)list.push(cmp);else if(course.completion)for(const cnd of course.completion.conditions)for(const itm of cnd.items)list.push(itm);else if(course.grades)for(const g of course.grades)g.selected&&list.push(g);return list}Object.defineProperty(_exports,"__esModule",{value:!0}),_exports.default=void 0,_notification=_interopRequireDefault(_notification),_treestudyplanComponents=_interopRequireDefault(_treestudyplanComponents),_fittextVue=_interopRequireDefault(_fittextVue);var _default={install(Vue){Vue.use(_treestudyplanComponents.default),Vue.use(_fittextVue.default);let strings=(0,_stringHelper.loadStrings)({report:{loading:"loadinghelp@core",studyplan_past:"studyplan_past",studyplan_present:"studyplan_present",studyplan_future:"studyplan_future",back:"back"},invalid:{error:"error"},header:{overall:"overall",students:"students@core",firstname:"firstname@core",lastname:"lastname@core",email:"email@core",lastaccess:"lastaccess@core"},studentresults:{completion_incomplete:"completion_incomplete",completion_failed:"completion_failed",completion_pending:"completion_pending",completion_progress:"completion_progress",completion_completed:"completion_completed",completion_good:"completion_good",completion_excellent:"completion_excellent",student_not_tracked:"student_not_tracked",never:"never@core"}});Vue.component("q-studyplanreport",{props:{structure:{type:Object}},data:()=>({students:[],studentresults:{},studentsloading:!0,expansioninfo:{periods:{},lines:{},items:{}},groupinfo:{},sorting:{header:"lastname",asc:!0}}),watch:{structure:{immediate:!0,handler(structure){this.loadStudents();let firstperiod=!0;for(const period of structure.periods){const pid=period.period.id;this.expansioninfo.periods[pid]||(this.$set(this.expansioninfo.periods,pid,{expanded:!!(firstperiod&&period.lines.length>0)}),this.$set(this.expansioninfo.lines,period.period.id,{}));for(const line of period.lines){const lid=line.line.id;this.expansioninfo.lines[lid]||this.$set(this.expansioninfo.lines[pid],lid,{expanded:!0});for(const item of line.items)this.expansioninfo.items[item.id]||this.$set(this.expansioninfo.items,item.id,{expanded:!1})}firstperiod=!1}}}},computed:{sortedstudents(){const students=this.students;for(const group of this.students)group.users.sort(((a,b)=>{let d=a,e=b;if(this.sorting.asc||(d=b,e=a),"lastaccess"==this.sorting.header){return(d[this.sorting.header]?d[this.sorting.header]:0)-(e[this.sorting.header]?e[this.sorting.header]:0)}return String(d[this.sorting.header]).localeCompare(String(e[this.sorting.header]))}));return students},resultColCount(){let count=0;for(const period of this.structure.periods){const pid=period.period.id;if(this.expansioninfo.periods[pid].expanded)for(const line of period.lines){const lid=line.line.id;if(this.expansioninfo.lines[pid][lid].expanded)for(const item of line.items)this.expansioninfo.items[item.id].expanded?count+=1+conditions(item).length:count+=1;else count+=1}else count+=2}return count}},methods:{loadStudents(){const self=this;self.studentsloading=!0,(0,_ajax.call)([{methodname:"local_treestudyplan_all_associated_grouped",args:{studyplan_id:this.structure.studyplan.id}}])[0].then((response=>{self.students=response;for(const group of self.students){self.$set(self.groupinfo,group.id,{expanded:!0});for(const student of group.users)self.$set(self.studentresults,student.id,{loading:!0,results:[]}),(0,_ajax.call)([{methodname:"local_treestudyplan_get_report_data",args:{pageid:self.structure.page.id,userid:student.id,firstperiod:self.structure.firstperiod,lastperiod:self.structure.lastperiod}}])[0].then((response=>{self.studentresults[student.id].loading=!1,self.studentresults[student.id].results=response})).catch(_notification.default.exception)}self.studentsloading=!1})).catch(_notification.default.exception)},expansionChanged(parm,id,val){"lines"==(parm="p"==parm[0]?"periods":"l"==parm[0]?"lines":"items")?this.expansioninfo[parm][id[0]][id[1]].expanded=val:this.expansioninfo[parm][id].expanded=val},groupExpansionChanged(group){this.groupinfo[group.id].expanded=!this.groupinfo[group.id].expanded},toggleSort(header){this.sorting.header==header?this.sorting.asc=!this.sorting.asc:(this.sorting.header=header,this.sorting.asc=!0)}},template:'\n \n \n \n \n \n \n \n \n \n \n
\n
\n '}),Vue.component("q-header",{props:{structure:{type:Object},sorting:{type:Object},expansion:{type:Object}},data:()=>({text:strings.header}),computed:{},methods:{conditions:item=>function(item){const course=item.course,list=[];if(course.competency)for(const cmp of course.competency.competencies)list.push({name:cmp.details?`${cmp.title} - ${cmp.details}`:cmp.title,tooltip:cmp.description});else if(course.completion)for(const cnd of course.completion.conditions)for(const itm of cnd.items)list.push({name:itm.title,tooltip:`${itm.details.type}: ${itm.details.requirement}`});else if(course.grades)for(const g of course.grades)g.selected&&list.push({name:g.name,tooltip:`${g.typename}: ${striptags(g.name)}`});return list}(item),colspanPeriod(period){const pid=period.period.id;if(this.expansion.periods[pid].expanded){let sum=0;for(const l of period.lines)sum+=this.colspanLine(period,l);return sum}return 2},colspanLine(period,line){const pid=period.period.id,lid=line.line.id;if(this.expansion.lines[pid][lid].expanded){let sum=0;for(const i of line.items)sum+=this.colspanItem(i);return sum}return 1},colspanItem(item){if(this.expansion.items[item.id].expanded){return 1+this.conditions(item).length}return 1},togglePeriod(period,val){void 0===val&&(val=!this.expansion.periods[period.id].expanded),this.$emit("expansion","periods",period.id,val)},toggleLine(period,line,val){void 0===val&&(val=!this.expansion.lines[period.id][line.id].expanded),this.$emit("expansion","lines",[period.id,line.id],val)},toggleItem(item,val){void 0===val&&(val=!this.expansion.items[item.id].expanded),this.$emit("expansion","items",item.id,val)},toggleSort(heading){this.$emit("togglesort",heading)}},template:'\n \n \x3c!-- period heading --\x3e\n {{text.students}}\n 0)?1:5\'\n > 0)\' href=\'#\' @click.prevent="togglePeriod(p.period)"\n > {{ p.period.fullname}}{{ p.period.fullname}}\n \n \x3c!-- line heading --\x3e\n \n \n \x3c!-- item heading --\x3e\n \n \n \x3c!-- condition heading --\x3e\n \n \n \x3c!-- student info heading --\x3e\n \n {{text.firstname}}\n / {{text.lastname}}\n \n \n {{text.lastaccess}}\n \n \n \n '}),Vue.component("q-groupheading",{props:{group:{type:Object},resultcolumns:{type:Number,default:1},studentinfocolumns:{type:Number,default:1},expanded:{type:Boolean}},data:()=>({}),computed:{},methods:{toggleGroup(){this.$emit("togglegroup",this.group)}},template:'\n \n  {{group.label}}\n \n \n '}),Vue.component("q-inforow",{props:{resultcolumns:{type:Number,default:1},studentinfocolumns:{type:Number,default:1}},data:()=>({}),computed:{},methods:{},template:'\n \n \n \n \n '}),Vue.component("q-studentresults",{props:{student:{type:Object},structure:{type:Object},results:{type:Array},loading:{type:Boolean,default:!1},expansion:{type:Object},even:{type:Boolean,default:!1}},data:()=>({text:strings.studentresults}),computed:{lastaccess(){return this.student.lastaccess?(0,_dateHelper.formatDatetime)(this.student.lastaccess):this.text.never}},methods:{useritems(line){const list=[];for(const item of line.items){let newitm=item;for(const itm of this.results)if(item.id==itm.id){newitm=itm;break}list.push(newitm)}return list},conditions:item=>conditions(item)},template:'\n \n {{student.firstname}} {{student.lastname}}\n {{lastaccess}}\n \n \n '}),Vue.component("q-courseresult",{props:{student:{type:Object},item:{type:Object},loading:{type:Boolean,default:!1}},data:()=>({text:strings.studentresults}),computed:{hasprogressinfo(){const course=this.item.course;return!!course.enrolled&&!!(course.completion||course.competency||course.grades)},completion_icon(){switch(this.item.completion){default:return"circle-o";case"pending":return"question-circle";case"failed":return"times-circle";case"progress":return"exclamation-circle";case"completed":case"good":case"excellent":return"check-circle"}}},methods:{},template:'\n \n \n \n \n \n '}),Vue.component("q-conditionresult",{props:{student:{type:Object},item:{type:Object},loading:{type:Boolean,default:!1},conditionidx:{type:Number}},data:()=>({text:strings.studentresults}),computed:{conditions(){return conditions(this.item)},condition(){return this.conditionidx>=0&&this.conditionidx`},condition_completion(){const course=this.item.course;if(course.competency){const competency=this.condition;return competency.proficient&&competency.courseproficient||competency.proficient?"completed":!1===competency.proficient?"failed":competency.progress?"progress":"incomplete"}return course.completion?this.condition.status:course.grades?this.condition.completion:"incomplete"}},methods:{},template:'\n \n \n \n \n \n \n \n '})}};return _exports.default=_default,_exports.default})); //# sourceMappingURL=studyplan-report-components.min.js.map \ No newline at end of file diff --git a/amd/build/studyplan-report-components.min.js.map b/amd/build/studyplan-report-components.min.js.map index d49b41a..ce9d849 100644 --- a/amd/build/studyplan-report-components.min.js.map +++ b/amd/build/studyplan-report-components.min.js.map @@ -1 +1 @@ -{"version":3,"file":"studyplan-report-components.min.js","sources":["../src/studyplan-report-components.js"],"sourcesContent":["/* eslint no-var: \"error\"*/\n/* eslint no-unused-vars: warn */\n/* eslint max-depth: [\"error\", 6] */\n/* eslint camelcase: \"off\" */\n/* eslint-env es6*/\n// Put this file in path/to/plugin/amd/src\n\nimport {loadStrings} from './util/string-helper';\nimport {call} from 'core/ajax';\nimport notification from 'core/notification';\nimport TSComponents from './treestudyplan-components';\nimport FitTextVue from './util/fittext-vue';\nimport {formatDatetime} from \"./util/date-helper\";\n\n\n/**\n * Strip tags from html\n * @param {*} html\n * @returns {string}\n */\nfunction striptags(html) {\n const tmp = document.createElement(\"DIV\");\n tmp.innerHTML = html;\n const text = tmp.textContent || tmp.innerText;\n tmp.remove();\n return text;\n}\n\n/**\n * Retrieve condition headers\n * @param {Object} item\n * @returns {Array}\n */\nfunction conditionHeaders(item) {\n const course = item.course;\n const list = [];\n if (course.competency) {\n for (const cmp of course.competency.competencies) {\n list.push({\n name: (cmp.details ? (`${cmp.title} - ${cmp.details}`) : cmp.title),\n tooltip: cmp.description,\n });\n }\n } else if (course.completion) {\n for (const cnd of course.completion.conditions) {\n for (const itm of cnd.items) {\n list.push({\n name: itm.title,\n tooltip: `${itm.details.type}: ${itm.details.requirement}`,\n });\n }\n }\n } else if (course.grades) {\n for (const g of course.grades) {\n if (g.selected) {\n list.push({\n name: g.name,\n tooltip: `${g.typename}: ${striptags(g.name)}`,\n });\n }\n }\n }\n return list;\n}\n\n/**\n * Retrieve conditions\n * @param {Object} item\n * @returns {Array}\n */\nfunction conditions(item) {\n const course = item.course;\n const list = [];\n if (course.competency) {\n for (const cmp of course.competency.competencies) {\n list.push(cmp);\n }\n } else if (course.completion) {\n for (const cnd of course.completion.conditions) {\n for (const itm of cnd.items) {\n list.push(itm);\n }\n }\n } else if (course.grades) {\n for (const g of course.grades) {\n if (g.selected) {\n list.push(g);\n }\n }\n }\n return list;\n}\n\n\nexport default {\n install(Vue /* ,options */) {\n Vue.use(TSComponents);\n Vue.use(FitTextVue);\n\n let strings = loadStrings({\n report: {\n loading: \"loadinghelp@core\",\n studyplan_past: \"studyplan_past\",\n studyplan_present: \"studyplan_present\",\n studyplan_future: \"studyplan_future\",\n back: \"back\",\n },\n\n invalid: {\n error: 'error',\n },\n header: {\n overall: 'overall',\n students: 'students@core',\n firstname: 'firstname@core',\n lastname: 'lastname@core',\n email: 'email@core',\n lastaccess: 'lastaccess@core',\n },\n studentresults: {\n completion_incomplete: \"completion_incomplete\",\n completion_failed: \"completion_failed\",\n completion_pending: \"completion_pending\",\n completion_progress: \"completion_progress\",\n completion_completed: \"completion_completed\",\n completion_good: \"completion_good\",\n completion_excellent: \"completion_excellent\",\n student_not_tracked: \"student_not_tracked\",\n never: \"never@core\",\n }\n });\n\n /* **********************************\n * *\n * Treestudyplan Viewer components *\n * *\n * **********************************/\n\n Vue.component('q-studyplanreport', {\n props: {\n structure: {\n type: Object,\n },\n },\n data() {\n return {\n students: [],\n studentresults: {},\n studentsloading: true,\n expansioninfo: {\n periods: {},\n lines: {},\n items: {},\n },\n groupinfo: {},\n\n sorting: {\n header: 'lastname',\n asc: true,\n }\n };\n },\n watch: {\n structure: {\n immediate: true,\n handler(structure) {\n this.loadStudents(); // Reload the student list\n // (Re)build expansion info structure\n let firstperiod = true;\n for (const period of structure.periods) {\n const pid = period.period.id;\n if (!this.expansioninfo.periods[pid]) {\n // Use this.$set to make sure the properties are reactive.\n this.$set(\n this.expansioninfo.periods,\n pid,\n {\n expanded: ((firstperiod && period.lines.length > 0) ? true : false),\n }\n );\n this.$set(\n this.expansioninfo.lines,\n period.period.id,\n {}\n );\n }\n for (const line of period.lines) {\n const lid = line.line.id;\n if (!this.expansioninfo.lines[lid]) {\n // Use this.$set to make sure the properties are reactive.\n this.$set(\n this.expansioninfo.lines[pid],\n lid,\n {\n expanded: true,\n }\n );\n }\n for (const item of line.items) {\n if (!this.expansioninfo.items[item.id]) {\n // Use this.$set to make sure the properties are reactive.\n this.$set(\n this.expansioninfo.items,\n item.id,\n {\n expanded: false,\n }\n );\n }\n }\n }\n firstperiod = false;\n }\n }\n }\n },\n computed: {\n sortedstudents() {\n // Probably could make a deep copy for purity's sake, but this works just as well.\n const students = this.students;\n for (const group of this.students) {\n group.users.sort((a, b) => {\n let d = a;\n let e = b;\n if (!this.sorting.asc) {\n d = b;\n e = a;\n }\n if (this.sorting.header == \"lastaccess\") {\n const dvalue = (d[this.sorting.header] ? d[this.sorting.header] : 0);\n const evalue = (e[this.sorting.header] ? e[this.sorting.header] : 0);\n return dvalue - evalue;\n } else {\n return String(d[this.sorting.header]).localeCompare(String(e[this.sorting.header]));\n }\n });\n }\n return students;\n },\n resultColCount() {\n let count = 0;\n for (const period of this.structure.periods) {\n const pid = period.period.id;\n if (!this.expansioninfo.periods[pid].expanded) {\n // This period is not expanded. Make it 3 units wide\n count += 2;\n } else {\n for (const line of period.lines) {\n const lid = line.line.id;\n if (!this.expansioninfo.lines[pid][lid].expanded) {\n count += 1;\n } else {\n for (const item of line.items) {\n if (!this.expansioninfo.items[item.id].expanded) {\n count += 1;\n } else {\n count += 1 + conditions(item).length;\n }\n }\n }\n }\n }\n }\n return count;\n }\n },\n methods: {\n loadStudents() {\n const self = this;\n self.studentsloading = true;\n call([{\n methodname: 'local_treestudyplan_all_associated_grouped',\n args: {'studyplan_id': this.structure.studyplan.id}\n }])[0].then((response) => {\n self.students = response;\n for (const group of self.students) {\n self.$set(\n self.groupinfo,\n group.id,\n {\n expanded: true,\n }\n );\n\n for (const student of group.users) {\n self.$set(\n self.studentresults,\n student.id,\n {\n loading: true,\n results: [],\n }\n );\n call([{\n methodname: 'local_treestudyplan_get_report_data',\n args: {\n pageid: self.structure.page.id,\n userid: student.id,\n firstperiod: self.structure.firstperiod,\n lastperiod: self.structure.lastperiod,\n }\n }])[0].then((response) => {\n self.studentresults[student.id].loading = false;\n self.studentresults[student.id].results = response;\n return;\n }).catch(notification.exception);\n }\n }\n self.studentsloading = false;\n return;\n }).catch(notification.exception);\n },\n expansionChanged(parm, id, val) {\n if (parm[0] == 'p') {\n parm = 'periods';\n } else if (parm[0] == 'l') {\n parm = 'lines';\n } else {\n parm = 'items';\n }\n\n if (parm == 'lines') {\n this.expansioninfo[parm][id[0]][id[1]].expanded = val;\n } else {\n this.expansioninfo[parm][id].expanded = val;\n }\n },\n groupExpansionChanged(group) {\n this.groupinfo[group.id].expanded = !this.groupinfo[group.id].expanded;\n },\n toggleSort(header) {\n if (this.sorting.header == header) {\n this.sorting.asc = !this.sorting.asc;\n } else {\n this.sorting.header = header;\n this.sorting.asc = true;\n }\n }\n },\n template: `\n \n \n \n \n \n \n \n \n \n \n
\n
\n `,\n });\n\n Vue.component('q-header', {\n props: {\n structure: {\n type: Object,\n },\n sorting: {\n type: Object,\n },\n expansion: {\n type: Object\n },\n },\n data() {\n return {\n text: strings.header,\n };\n },\n computed: {\n },\n methods: {\n conditions(item) {\n return conditionHeaders(item);\n },\n colspanPeriod(period) {\n const pid = period.period.id;\n if (this.expansion.periods[pid].expanded) {\n let sum = 0;\n for (const l of period.lines) {\n sum += this.colspanLine(period, l);\n }\n return sum;\n } else {\n return 2;\n }\n },\n colspanLine(period, line) {\n const pid = period.period.id;\n const lid = line.line.id;\n\n if (this.expansion.lines[pid][lid].expanded) {\n let sum = 0;\n for (const i of line.items) {\n sum += this.colspanItem(i);\n }\n return sum;\n } else {\n return 1;\n }\n },\n colspanItem(item) {\n if (this.expansion.items[item.id].expanded) {\n const cs = this.conditions(item);\n return 1 + cs.length;\n } else {\n return 1;\n }\n },\n togglePeriod(period, val) {\n if (val === undefined) {\n val = !(this.expansion.periods[period.id].expanded);\n }\n this.$emit('expansion', 'periods', period.id, val);\n },\n toggleLine(period, line, val) {\n if (val === undefined) {\n val = !(this.expansion.lines[period.id][line.id].expanded);\n }\n this.$emit('expansion', 'lines', [period.id, line.id], val);\n },\n toggleItem(item, val) {\n if (val === undefined) {\n val = !(this.expansion.items[item.id].expanded);\n }\n this.$emit('expansion', 'items', item.id, val);\n },\n toggleSort(heading) {\n this.$emit('togglesort', heading);\n }\n },\n /* TODO: https://css-tricks.com/position-sticky-and-table-headers/ */\n template: `\n \n \n {{text.students}}\n  {{ p.period.fullname}}{{ p.period.fullname}}\n \n \n \n \n \n \n \n \n \n \n \n \n {{text.firstname}}\n / {{text.lastname}}\n \n \n {{text.lastaccess}}\n \n \n \n `,\n });\n\n Vue.component('q-groupheading', {\n props: {\n group: {\n type: Object,\n },\n resultcolumns: {\n type: Number,\n 'default': 1\n },\n studentinfocolumns: {\n type: Number,\n 'default': 1\n },\n expanded: {\n type: Boolean,\n }\n },\n data() {\n return {\n\n };\n },\n computed: {\n },\n methods: {\n toggleGroup() {\n this.$emit('togglegroup', this.group);\n }\n },\n template: `\n \n  {{group.label}}\n \n \n `,\n });\n\n Vue.component('q-inforow', {\n props: {\n resultcolumns: {\n type: Number,\n 'default': 1\n },\n studentinfocolumns: {\n type: Number,\n 'default': 1\n },\n },\n data() {\n return {\n };\n },\n computed: {\n },\n methods: {\n },\n template: `\n \n \n \n \n `,\n });\n\n\n Vue.component('q-studentresults', {\n props: {\n student: {\n type: Object,\n },\n structure: {\n type: Object,\n },\n results: {\n type: Array,\n },\n loading: {\n type: Boolean,\n 'default': false\n },\n expansion: {\n type: Object,\n },\n even: {\n type: Boolean,\n 'default': false,\n }\n },\n data() {\n return {\n text: strings.studentresults,\n };\n },\n computed: {\n lastaccess() {\n if (this.student.lastaccess) {\n return formatDatetime(this.student.lastaccess); // Takes date in milliseconds\n } else {\n return this.text.never;\n }\n }\n },\n methods: {\n useritems(line) {\n const list = [];\n for (const item of line.items) {\n let newitm = item;\n for (const itm of this.results) {\n if (item.id == itm.id) {\n newitm = itm;\n break;\n }\n }\n list.push(newitm);\n }\n return list;\n },\n conditions(item) {\n return conditions(item);\n },\n },\n /* https://css-tricks.com/position-sticky-and-table-headers/ */\n template: `\n \n {{student.firstname}} {{student.lastname}}\n {{lastaccess}}\n \n \n `,\n });\n\n Vue.component('q-courseresult', {\n props: {\n student: {\n type: Object,\n },\n item: {\n type: Object,\n },\n loading: {\n type: Boolean,\n 'default': false\n },\n },\n data() {\n return {\n text: strings.studentresults,\n };\n },\n computed: {\n hasprogressinfo() {\n const course = this.item.course;\n if (!course.enrolled) {\n return false;\n } else {\n return (course.completion || course.competency || course.grades) ? true : false;\n }\n },\n completion_icon() {\n const completion = this.item.completion;\n switch (completion) {\n default: // Case \"incomplete\"\n return \"circle-o\";\n case \"pending\":\n return \"question-circle\";\n case \"failed\":\n return \"times-circle\";\n case \"progress\":\n return \"exclamation-circle\";\n case \"completed\":\n return \"check-circle\";\n case \"good\":\n return \"check-circle\";\n case \"excellent\":\n return \"check-circle\";\n }\n },\n },\n methods: {\n },\n template: `\n \n \n \n \n \n `,\n });\n\n Vue.component('q-conditionresult', {\n props: {\n student: {\n type: Object,\n },\n item: {\n type: Object,\n },\n loading: {\n type: Boolean,\n 'default': false\n },\n conditionidx: {\n type: Number,\n }\n },\n data() {\n return {\n text: strings.studentresults,\n };\n },\n computed: {\n conditions() {\n return conditions(this.item);\n },\n condition() {\n if (this.conditionidx >= 0 && this.conditionidx < this.conditions.length) {\n return this.conditions[this.conditionidx];\n } else {\n return null;\n }\n },\n hasprogressinfo() {\n const course = this.item.course;\n if (!course.enrolled) {\n return false;\n } else {\n return (course.completion || course.competency || course.grades);\n }\n },\n completion_icon() {\n const completion = this.condition_completion();\n switch (completion) {\n default: // Case \"incomplete\"\n return \"circle-o\";\n case \"pending\":\n return \"question-circle\";\n case \"failed\":\n return \"times-circle\";\n case \"progress\":\n return \"exclamation-circle\";\n case \"completed\":\n return \"check-circle\";\n case \"good\":\n return \"check-circle\";\n case \"excellent\":\n return \"check-circle\";\n }\n },\n condition_value() {\n const course = this.item.course;\n if (course.competency) {\n if (this.condition.grade) {\n // Return grade if possible.\n return this.condition.grade;\n }\n } else if (course.completion) {\n if (this.condition.grade) {\n // Return grade if possible.\n return this.condition.grade;\n }\n } else if (course.grades) {\n return this.condition.grade;\n }\n // Fallback to completion icon.\n const icon = this.completion_icon();\n return ``;\n },\n condition_completion() {\n // Unify completion information\n const course = this.item.course;\n if (course.competency) {\n const competency = this.condition;\n if (competency.proficient && competency.courseproficient) {\n return \"completed\";\n } else if (competency.proficient) {\n return \"completed\";\n } else if (competency.proficient === false) {\n return \"failed\";\n } else if (competency.progress) {\n return \"progress\";\n } else {\n return \"incomplete\";\n }\n } else if (course.completion) {\n return this.condition.status;\n } else if (course.grades) {\n return this.condition.completion;\n } else {\n return \"incomplete\";\n }\n }\n\n },\n methods: {\n },\n template: `\n \n \n \n \n \n \n \n `,\n });\n },\n};"],"names":["striptags","html","tmp","document","createElement","innerHTML","text","textContent","innerText","remove","conditions","item","course","list","competency","cmp","competencies","push","completion","cnd","itm","items","grades","g","selected","install","Vue","use","TSComponents","FitTextVue","strings","report","loading","studyplan_past","studyplan_present","studyplan_future","back","invalid","error","header","overall","students","firstname","lastname","email","lastaccess","studentresults","completion_incomplete","completion_failed","completion_pending","completion_progress","completion_completed","completion_good","completion_excellent","student_not_tracked","never","component","props","structure","type","Object","data","studentsloading","expansioninfo","periods","lines","groupinfo","sorting","asc","watch","immediate","handler","loadStudents","firstperiod","period","pid","id","this","$set","expanded","length","line","lid","computed","sortedstudents","group","users","sort","a","b","d","e","String","localeCompare","resultColCount","count","methods","self","methodname","args","studyplan","then","response","student","results","pageid","page","userid","lastperiod","catch","notification","exception","expansionChanged","parm","val","groupExpansionChanged","toggleSort","template","expansion","name","details","title","tooltip","description","requirement","typename","conditionHeaders","colspanPeriod","sum","l","colspanLine","i","colspanItem","togglePeriod","undefined","$emit","toggleLine","toggleItem","heading","resultcolumns","Number","studentinfocolumns","Boolean","toggleGroup","Array","even","useritems","newitm","hasprogressinfo","enrolled","completion_icon","conditionidx","condition","condition_completion","condition_value","grade","proficient","courseproficient","progress","status"],"mappings":"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"} \ No newline at end of file +{"version":3,"file":"studyplan-report-components.min.js","sources":["../src/studyplan-report-components.js"],"sourcesContent":["/* eslint no-var: \"error\"*/\n/* eslint no-unused-vars: warn */\n/* eslint max-depth: [\"error\", 6] */\n/* eslint camelcase: \"off\" */\n/* eslint-env es6*/\n// Put this file in path/to/plugin/amd/src\n\nimport {loadStrings} from './util/string-helper';\nimport {call} from 'core/ajax';\nimport notification from 'core/notification';\nimport TSComponents from './treestudyplan-components';\nimport FitTextVue from './util/fittext-vue';\nimport {formatDatetime} from \"./util/date-helper\";\n\n\n/**\n * Strip tags from html\n * @param {*} html\n * @returns {string}\n */\nfunction striptags(html) {\n const tmp = document.createElement(\"DIV\");\n tmp.innerHTML = html;\n const text = tmp.textContent || tmp.innerText;\n tmp.remove();\n return text;\n}\n\n/**\n * Retrieve condition headers\n * @param {Object} item\n * @returns {Array}\n */\nfunction conditionHeaders(item) {\n const course = item.course;\n const list = [];\n if (course.competency) {\n for (const cmp of course.competency.competencies) {\n list.push({\n name: (cmp.details ? (`${cmp.title} - ${cmp.details}`) : cmp.title),\n tooltip: cmp.description,\n });\n }\n } else if (course.completion) {\n for (const cnd of course.completion.conditions) {\n for (const itm of cnd.items) {\n list.push({\n name: itm.title,\n tooltip: `${itm.details.type}: ${itm.details.requirement}`,\n });\n }\n }\n } else if (course.grades) {\n for (const g of course.grades) {\n if (g.selected) {\n list.push({\n name: g.name,\n tooltip: `${g.typename}: ${striptags(g.name)}`,\n });\n }\n }\n }\n return list;\n}\n\n/**\n * Retrieve conditions\n * @param {Object} item\n * @returns {Array}\n */\nfunction conditions(item) {\n const course = item.course;\n const list = [];\n if (course.competency) {\n for (const cmp of course.competency.competencies) {\n list.push(cmp);\n }\n } else if (course.completion) {\n for (const cnd of course.completion.conditions) {\n for (const itm of cnd.items) {\n list.push(itm);\n }\n }\n } else if (course.grades) {\n for (const g of course.grades) {\n if (g.selected) {\n list.push(g);\n }\n }\n }\n return list;\n}\n\n\nexport default {\n install(Vue /* ,options */) {\n Vue.use(TSComponents);\n Vue.use(FitTextVue);\n\n let strings = loadStrings({\n report: {\n loading: \"loadinghelp@core\",\n studyplan_past: \"studyplan_past\",\n studyplan_present: \"studyplan_present\",\n studyplan_future: \"studyplan_future\",\n back: \"back\",\n },\n\n invalid: {\n error: 'error',\n },\n header: {\n overall: 'overall',\n students: 'students@core',\n firstname: 'firstname@core',\n lastname: 'lastname@core',\n email: 'email@core',\n lastaccess: 'lastaccess@core',\n },\n studentresults: {\n completion_incomplete: \"completion_incomplete\",\n completion_failed: \"completion_failed\",\n completion_pending: \"completion_pending\",\n completion_progress: \"completion_progress\",\n completion_completed: \"completion_completed\",\n completion_good: \"completion_good\",\n completion_excellent: \"completion_excellent\",\n student_not_tracked: \"student_not_tracked\",\n never: \"never@core\",\n }\n });\n\n /* **********************************\n * *\n * Treestudyplan Viewer components *\n * *\n * **********************************/\n\n Vue.component('q-studyplanreport', {\n props: {\n structure: {\n type: Object,\n },\n },\n data() {\n return {\n students: [],\n studentresults: {},\n studentsloading: true,\n expansioninfo: {\n periods: {},\n lines: {},\n items: {},\n },\n groupinfo: {},\n\n sorting: {\n header: 'lastname',\n asc: true,\n }\n };\n },\n watch: {\n structure: {\n immediate: true,\n handler(structure) {\n this.loadStudents(); // Reload the student list\n // (Re)build expansion info structure\n let firstperiod = true;\n for (const period of structure.periods) {\n const pid = period.period.id;\n if (!this.expansioninfo.periods[pid]) {\n // Use this.$set to make sure the properties are reactive.\n this.$set(\n this.expansioninfo.periods,\n pid,\n {\n expanded: ((firstperiod && period.lines.length > 0) ? true : false),\n }\n );\n this.$set(\n this.expansioninfo.lines,\n period.period.id,\n {}\n );\n }\n for (const line of period.lines) {\n const lid = line.line.id;\n if (!this.expansioninfo.lines[lid]) {\n // Use this.$set to make sure the properties are reactive.\n this.$set(\n this.expansioninfo.lines[pid],\n lid,\n {\n expanded: true,\n }\n );\n }\n for (const item of line.items) {\n if (!this.expansioninfo.items[item.id]) {\n // Use this.$set to make sure the properties are reactive.\n this.$set(\n this.expansioninfo.items,\n item.id,\n {\n expanded: false,\n }\n );\n }\n }\n }\n firstperiod = false;\n }\n }\n }\n },\n computed: {\n sortedstudents() {\n // Probably could make a deep copy for purity's sake, but this works just as well.\n const students = this.students;\n for (const group of this.students) {\n group.users.sort((a, b) => {\n let d = a;\n let e = b;\n if (!this.sorting.asc) {\n d = b;\n e = a;\n }\n if (this.sorting.header == \"lastaccess\") {\n const dvalue = (d[this.sorting.header] ? d[this.sorting.header] : 0);\n const evalue = (e[this.sorting.header] ? e[this.sorting.header] : 0);\n return dvalue - evalue;\n } else {\n return String(d[this.sorting.header]).localeCompare(String(e[this.sorting.header]));\n }\n });\n }\n return students;\n },\n resultColCount() {\n let count = 0;\n for (const period of this.structure.periods) {\n const pid = period.period.id;\n if (!this.expansioninfo.periods[pid].expanded) {\n // This period is not expanded. Make it 3 units wide\n count += 2;\n } else {\n for (const line of period.lines) {\n const lid = line.line.id;\n if (!this.expansioninfo.lines[pid][lid].expanded) {\n count += 1;\n } else {\n for (const item of line.items) {\n if (!this.expansioninfo.items[item.id].expanded) {\n count += 1;\n } else {\n count += 1 + conditions(item).length;\n }\n }\n }\n }\n }\n }\n return count;\n }\n },\n methods: {\n loadStudents() {\n const self = this;\n self.studentsloading = true;\n call([{\n methodname: 'local_treestudyplan_all_associated_grouped',\n args: {'studyplan_id': this.structure.studyplan.id}\n }])[0].then((response) => {\n self.students = response;\n for (const group of self.students) {\n self.$set(\n self.groupinfo,\n group.id,\n {\n expanded: true,\n }\n );\n\n for (const student of group.users) {\n self.$set(\n self.studentresults,\n student.id,\n {\n loading: true,\n results: [],\n }\n );\n call([{\n methodname: 'local_treestudyplan_get_report_data',\n args: {\n pageid: self.structure.page.id,\n userid: student.id,\n firstperiod: self.structure.firstperiod,\n lastperiod: self.structure.lastperiod,\n }\n }])[0].then((response) => {\n self.studentresults[student.id].loading = false;\n self.studentresults[student.id].results = response;\n return;\n }).catch(notification.exception);\n }\n }\n self.studentsloading = false;\n return;\n }).catch(notification.exception);\n },\n expansionChanged(parm, id, val) {\n if (parm[0] == 'p') {\n parm = 'periods';\n } else if (parm[0] == 'l') {\n parm = 'lines';\n } else {\n parm = 'items';\n }\n\n if (parm == 'lines') {\n this.expansioninfo[parm][id[0]][id[1]].expanded = val;\n } else {\n this.expansioninfo[parm][id].expanded = val;\n }\n },\n groupExpansionChanged(group) {\n this.groupinfo[group.id].expanded = !this.groupinfo[group.id].expanded;\n },\n toggleSort(header) {\n if (this.sorting.header == header) {\n this.sorting.asc = !this.sorting.asc;\n } else {\n this.sorting.header = header;\n this.sorting.asc = true;\n }\n }\n },\n template: `\n \n \n \n \n \n \n \n \n \n \n
\n
\n `,\n });\n\n Vue.component('q-header', {\n props: {\n structure: {\n type: Object,\n },\n sorting: {\n type: Object,\n },\n expansion: {\n type: Object\n },\n },\n data() {\n return {\n text: strings.header,\n };\n },\n computed: {\n },\n methods: {\n conditions(item) {\n return conditionHeaders(item);\n },\n colspanPeriod(period) {\n const pid = period.period.id;\n if (this.expansion.periods[pid].expanded) {\n let sum = 0;\n for (const l of period.lines) {\n sum += this.colspanLine(period, l);\n }\n return sum;\n } else {\n return 2;\n }\n },\n colspanLine(period, line) {\n const pid = period.period.id;\n const lid = line.line.id;\n\n if (this.expansion.lines[pid][lid].expanded) {\n let sum = 0;\n for (const i of line.items) {\n sum += this.colspanItem(i);\n }\n return sum;\n } else {\n return 1;\n }\n },\n colspanItem(item) {\n if (this.expansion.items[item.id].expanded) {\n const cs = this.conditions(item);\n return 1 + cs.length;\n } else {\n return 1;\n }\n },\n togglePeriod(period, val) {\n if (val === undefined) {\n val = !(this.expansion.periods[period.id].expanded);\n }\n this.$emit('expansion', 'periods', period.id, val);\n },\n toggleLine(period, line, val) {\n if (val === undefined) {\n val = !(this.expansion.lines[period.id][line.id].expanded);\n }\n this.$emit('expansion', 'lines', [period.id, line.id], val);\n },\n toggleItem(item, val) {\n if (val === undefined) {\n val = !(this.expansion.items[item.id].expanded);\n }\n this.$emit('expansion', 'items', item.id, val);\n },\n toggleSort(heading) {\n this.$emit('togglesort', heading);\n }\n },\n /* TODO: https://css-tricks.com/position-sticky-and-table-headers/ */\n template: `\n \n \n {{text.students}}\n  {{ p.period.fullname}}{{ p.period.fullname}}\n \n \n \n \n \n \n \n \n \n \n \n \n {{text.firstname}}\n / {{text.lastname}}\n \n \n {{text.lastaccess}}\n \n \n \n `,\n });\n\n Vue.component('q-groupheading', {\n props: {\n group: {\n type: Object,\n },\n resultcolumns: {\n type: Number,\n 'default': 1\n },\n studentinfocolumns: {\n type: Number,\n 'default': 1\n },\n expanded: {\n type: Boolean,\n }\n },\n data() {\n return {\n\n };\n },\n computed: {\n },\n methods: {\n toggleGroup() {\n this.$emit('togglegroup', this.group);\n }\n },\n template: `\n \n  {{group.label}}\n \n \n `,\n });\n\n Vue.component('q-inforow', {\n props: {\n resultcolumns: {\n type: Number,\n 'default': 1\n },\n studentinfocolumns: {\n type: Number,\n 'default': 1\n },\n },\n data() {\n return {\n };\n },\n computed: {\n },\n methods: {\n },\n template: `\n \n \n \n \n `,\n });\n\n\n Vue.component('q-studentresults', {\n props: {\n student: {\n type: Object,\n },\n structure: {\n type: Object,\n },\n results: {\n type: Array,\n },\n loading: {\n type: Boolean,\n 'default': false\n },\n expansion: {\n type: Object,\n },\n even: {\n type: Boolean,\n 'default': false,\n }\n },\n data() {\n return {\n text: strings.studentresults,\n };\n },\n computed: {\n lastaccess() {\n if (this.student.lastaccess) {\n return formatDatetime(this.student.lastaccess); // Takes date in milliseconds\n } else {\n return this.text.never;\n }\n }\n },\n methods: {\n useritems(line) {\n const list = [];\n for (const item of line.items) {\n let newitm = item;\n for (const itm of this.results) {\n if (item.id == itm.id) {\n newitm = itm;\n break;\n }\n }\n list.push(newitm);\n }\n return list;\n },\n conditions(item) {\n return conditions(item);\n },\n },\n /* https://css-tricks.com/position-sticky-and-table-headers/ */\n template: `\n \n {{student.firstname}} {{student.lastname}}\n {{lastaccess}}\n \n \n `,\n });\n\n Vue.component('q-courseresult', {\n props: {\n student: {\n type: Object,\n },\n item: {\n type: Object,\n },\n loading: {\n type: Boolean,\n 'default': false\n },\n },\n data() {\n return {\n text: strings.studentresults,\n };\n },\n computed: {\n hasprogressinfo() {\n const course = this.item.course;\n if (!course.enrolled) {\n return false;\n } else {\n return (course.completion || course.competency || course.grades) ? true : false;\n }\n },\n completion_icon() {\n const completion = this.item.completion;\n switch (completion) {\n default: // Case \"incomplete\"\n return \"circle-o\";\n case \"pending\":\n return \"question-circle\";\n case \"failed\":\n return \"times-circle\";\n case \"progress\":\n return \"exclamation-circle\";\n case \"completed\":\n return \"check-circle\";\n case \"good\":\n return \"check-circle\";\n case \"excellent\":\n return \"check-circle\";\n }\n },\n },\n methods: {\n },\n template: `\n \n \n \n \n \n `,\n });\n\n Vue.component('q-conditionresult', {\n props: {\n student: {\n type: Object,\n },\n item: {\n type: Object,\n },\n loading: {\n type: Boolean,\n 'default': false\n },\n conditionidx: {\n type: Number,\n }\n },\n data() {\n return {\n text: strings.studentresults,\n };\n },\n computed: {\n conditions() {\n return conditions(this.item);\n },\n condition() {\n if (this.conditionidx >= 0 && this.conditionidx < this.conditions.length) {\n return this.conditions[this.conditionidx];\n } else {\n return null;\n }\n },\n hasprogressinfo() {\n const course = this.item.course;\n if (!course.enrolled) {\n return false;\n } else {\n return (course.completion || course.competency || course.grades);\n }\n },\n completion_icon() {\n const completion = this.condition_completion();\n switch (completion) {\n default: // Case \"incomplete\"\n return \"circle-o\";\n case \"pending\":\n return \"question-circle\";\n case \"failed\":\n return \"times-circle\";\n case \"progress\":\n return \"exclamation-circle\";\n case \"completed\":\n return \"check-circle\";\n case \"good\":\n return \"check-circle\";\n case \"excellent\":\n return \"check-circle\";\n }\n },\n condition_value() {\n const course = this.item.course;\n if (course.competency) {\n if (this.condition.grade) {\n // Return grade if possible.\n return this.condition.grade;\n }\n } else if (course.completion) {\n if (this.condition.grade) {\n // Return grade if possible.\n return this.condition.grade;\n }\n } else if (course.grades) {\n return this.condition.grade;\n }\n // Fallback to completion icon.\n const icon = this.completion_icon();\n return ``;\n },\n condition_completion() {\n // Unify completion information\n const course = this.item.course;\n if (course.competency) {\n const competency = this.condition;\n if (competency.proficient && competency.courseproficient) {\n return \"completed\";\n } else if (competency.proficient) {\n return \"completed\";\n } else if (competency.proficient === false) {\n return \"failed\";\n } else if (competency.progress) {\n return \"progress\";\n } else {\n return \"incomplete\";\n }\n } else if (course.completion) {\n return this.condition.status;\n } else if (course.grades) {\n return this.condition.completion;\n } else {\n return \"incomplete\";\n }\n }\n\n },\n methods: {\n },\n template: `\n \n \n \n \n \n \n \n `,\n });\n },\n};"],"names":["striptags","html","tmp","document","createElement","innerHTML","text","textContent","innerText","remove","conditions","item","course","list","competency","cmp","competencies","push","completion","cnd","itm","items","grades","g","selected","install","Vue","use","TSComponents","FitTextVue","strings","report","loading","studyplan_past","studyplan_present","studyplan_future","back","invalid","error","header","overall","students","firstname","lastname","email","lastaccess","studentresults","completion_incomplete","completion_failed","completion_pending","completion_progress","completion_completed","completion_good","completion_excellent","student_not_tracked","never","component","props","structure","type","Object","data","studentsloading","expansioninfo","periods","lines","groupinfo","sorting","asc","watch","immediate","handler","loadStudents","firstperiod","period","pid","id","this","$set","expanded","length","line","lid","computed","sortedstudents","group","users","sort","a","b","d","e","String","localeCompare","resultColCount","count","methods","self","methodname","args","studyplan","then","response","student","results","pageid","page","userid","lastperiod","catch","notification","exception","expansionChanged","parm","val","groupExpansionChanged","toggleSort","template","expansion","name","details","title","tooltip","description","requirement","typename","conditionHeaders","colspanPeriod","sum","l","colspanLine","i","colspanItem","togglePeriod","undefined","$emit","toggleLine","toggleItem","heading","resultcolumns","Number","studentinfocolumns","Boolean","toggleGroup","Array","even","useritems","newitm","hasprogressinfo","enrolled","completion_icon","conditionidx","condition","condition_completion","condition_value","grade","proficient","courseproficient","progress","status"],"mappings":"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"} \ No newline at end of file diff --git a/amd/src/studyplan-report-components.js b/amd/src/studyplan-report-components.js index 4d11808..88693fb 100644 --- a/amd/src/studyplan-report-components.js +++ b/amd/src/studyplan-report-components.js @@ -521,7 +521,7 @@ export default { > diff --git a/coach.php b/coach.php index 940cd04..3787f32 100644 --- a/coach.php +++ b/coach.php @@ -76,7 +76,7 @@ print <<
- { $text->selectstudent_btn} + {$text->selectstudent_btn}