Brak opisu

assessment.blade.php 23KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603
  1. @extends('layouts.master')
  2. @section('navigation')
  3. @if($role==1)
  4. @include('local.managers.admins._navigation')
  5. @elseif($role==2)
  6. @include('local.managers.sCoords._navigation')
  7. @elseif($role==3)
  8. @include('local.managers.pCoords._navigation')
  9. @else
  10. @include('local.professors._navigation')
  11. @endif
  12. @stop
  13. @section('main')
  14. <!-- View criterion info -->
  15. <div class="modal fade" id="modal-view-criterion">
  16. <div class="modal-dialog modal-lg">
  17. <div class="modal-content">
  18. <div class="modal-header">
  19. <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
  20. <h4 class="modal-title"></h4>
  21. </div>
  22. <div class="modal-body">
  23. <table class="table table-bordered">
  24. <thead id = "criteria-header">;
  25. @for($i=0; $i<$rubric->num_scales; $i++)
  26. <th>Scale {{$i+1}} ({{1+($i*($rubric->max_score/$rubric->num_scales))}} - {{(1+$i)*($rubric->max_score/$rubric->num_scales)}})</th>
  27. @endfor
  28. <th>Notes</th>
  29. </thead>
  30. <tbody>
  31. <tr>
  32. </tr>
  33. </tbody>
  34. </table>
  35. </div>
  36. </div><!-- /.modal-content -->
  37. </div><!-- /.modal-dialog -->
  38. </div><!-- /.modal -->
  39. <div class="row">
  40. <div class="col-md-12">
  41. <div class="well">
  42. <button id="button-language" class="btn btn-default btn-sm pull-right">Change language / Cambiar idioma</button>
  43. <div id="english-instructions">
  44. <h4>Instructions:</h4>
  45. <ol>
  46. <li>Fill in the scores per criterion for each student. You can see the student's final score in the last column.</li>
  47. <li>Click 'Publish Assessment' if you are done. Click 'Save as Draft' if you have not finished assessing the activity. You can come back later if you need to make any updates.
  48. <li>Unpublished results will be isolated. That is, they <strong>will not</strong> be aggregated to other results.</li>
  49. </ol>
  50. <h4>Notes:</h4>
  51. <ul>
  52. <li>If a particular criterion cannot be assessed for a student, select "N/A" (Not Applicable). This <strong>will not</strong> affect the student's score.</li>
  53. <li>If a particular criterion was assessed but the student did not complete the necessary work, you must select "0". This <strong>will</strong> affect the student's score.</li>
  54. <li>If a student did not complete any work for this activity, select "0" for all columns in that student's row.</li>
  55. <li>If a student dropped the class, select "N/A" (Not Applicable) for all columns in that student's row.</li>
  56. <li>Cells with "N/A" <strong>will not</strong> be used to determine whether a criterion is achieved. Only scores from 0 to {{$rubric->max_score}} will be considered for this purpose.</li>
  57. <li>For this activity, <strong>at least one score must be from 1-{{$rubric->max_score}}.</strong> Otherwise, the 'Publish Assessment' and 'Save as Draft' buttons will be <strong>disabled</strong>. If you want to delete previously saved scores, go back to the activity and click the "Delete Assessment" button.</li>
  58. </ul>
  59. </div>
  60. <div id="spanish-instructions">
  61. <h4>Instrucciones:</h4>
  62. <ol>
  63. <li>Seleccione la puntuación por criterio para cada estudiante. Puede ver la puntuación final en la última columna.</li>
  64. <li>Oprima 'Publish Assessment' una vez termine. Si no ha terminado, oprima 'Save as Draft' (guardar como borrador). Puede volver a esta página luego si desea hacer cambios.</li>
  65. <li>Los resultados guardados como borrador estarán asilados. Es decir, <strong>no</strong> se agregarán a los demás resultados.</li>
  66. </ol>
  67. <h4>Notas:</h4>
  68. <ul>
  69. <li>Si un criterio particular no puede ser evaluado, seleccione "N/A" (No Aplica). Esto <strong>no</strong> afectará la puntuación final del estudiante.</li>
  70. <li>Si un criterio particular fue evaluado, pero el estudiante no completó el trabajo necesario, debe seleccionar "0". Esto <strong>sí</strong> afectará la puntuación final del estudiante.</li>
  71. <li>Si un estudiante no completó el trabajo para esta actividad, seleccione "0" en todas las columnas de la fila de ese estudiante.</li>
  72. <li>Si un estudiante se dio de baja, seleccione "N/A" (No Aplica) en todas las columnas de la fila de ese estudiante.</li>
  73. <li>Las celdas con "N/A" <strong>no</strong> serán utilizadas para determinar si un criterio se alcanzó o no. Solamente las puntuaciones del 0 al {{$rubric->max_score}} serán consideradas.</li>
  74. <li>Para esta actividad, <strong>al menos una puntuación deber ser del 1 al {{$rubric->max_score}}.</strong> De otra manera, el botón para guardar <strong>se desactivará</strong>. Si quiere borrar los resultados del avalúo, vuelva a la actividad y oprima el botón que dice "Delete Assessment".</li>
  75. </ul>
  76. </div>
  77. </div>
  78. <input type='hidden' id='max' name= 'max' value='{{$rubric->max_score}}'>
  79. <input type ='hidden' id='num_of_scales' name ='num_of_scales' value ='{{$rubric->num_scales}}'>
  80. <p id="course">Course: {{{ $course->code }}} {{{ $course->number }}}</p>
  81. <p id="section">Section: {{{ $course->section }}}</p>
  82. {{ HTML::linkAction('ActivitiesController@show', 'Back to Activity', array($activity->id), array('class'=>'btn btn-default btn-sm pull-right')) }}
  83. <p id="activity" data-activity-id="{{{ $activity->id }}}">Activity: {{{ $activity->name}}} </p>
  84. <p>Passing Criteria: <span id="expected_percentage">{{{ $rubric->expected_percentage }}}% of students must obtain at least </span><span id="expected_points">{{{$rubric->expected_points}}}</span> points </p>
  85. <table data-rubric-id="{{{ $rubric->id }}}" id="assessment-table" class="table table-striped table-condensed table-bordered">
  86. <thead>
  87. <tr>
  88. <th>
  89. </th>
  90. @foreach ($rubric_criterion as $index => $criterion)
  91. <th data-criterion-id="{{{ $criterion->criterion_id }}}" ><div class="th-box">
  92. Weight<input class="form-control" id="weight-{{$index}}" name='weight[]' type="text" value="{{$criterion->weight}}" data-activity-criterion-id="{{$criterion->activity_criterion_id}}">
  93. </div></th>
  94. @endforeach
  95. </tr>
  96. <tr>
  97. <th>
  98. <div class="th-box">
  99. Student
  100. </div>
  101. </th>
  102. @foreach ($rubric_criterion as $criterion)
  103. <th class="criterion-field" data-activity-criterion-id = "{{$criterion->activity_criterion_id}}"data-rubric-criterion-id = "{{$criterion->rubric_criterion_id}}" data-criterion-id="{{{ $criterion->criterion_id }}}" ><div class="th-box">{{ $criterion->name}}</div></th>
  104. @endforeach
  105. <th>Student Percentage</th>
  106. <th>Student % per Weight</th>
  107. <th>Comments</th>
  108. </tr>
  109. </thead>
  110. <tbody>
  111. <!-- If the activity was assessed, load the assessment. Otherwise load empty sheet -->
  112. @if(sizeof($assessments)!=0)
  113. <!-- For each assessment -->
  114. @foreach ($students as $student)
  115. <tr class="student-row">
  116. <!-- Fetch student name -->
  117. <td class="student-field" data-student-id="{{ $student->id }}">
  118. {{{ $student->name }}}
  119. </td>
  120. <!-- For each criterion in the rubric, there's a score field -->
  121. @for ($i = 0; $i<sizeof($rubric_criterion); $i++)
  122. <td class="score-field">
  123. <select name="" id="" class="form-control" data-toggle="tooltip" data-placement="right" title="{{{ $student->name }}}">
  124. <!-- Option from 0-8 -->
  125. @for ($j=0; $j<=$rubric->max_score; $j++)
  126. <!-- If the decoded scores with index as the assessment id and second index as criterion id equals the loop index, mark it as selected -->
  127. @if( $j == $scores_array[$student->id][$i])
  128. <option value="{{$j}}" selected="selected">{{ $j }}</option>
  129. @else
  130. <option value="{{$j}}">{{ $j }}</option>
  131. @endif
  132. @endfor
  133. <!-- N/A option -->
  134. @if( $scores_array[$student->id][$i]=="N/A")
  135. <option value="N/A" selected="selected">N/A</option>
  136. @else
  137. <option value="N/A">N/A</option>
  138. @endif
  139. </select>
  140. </td>
  141. @endfor
  142. <td class="percentage"></td>
  143. <td class="percentage-per-weight"></td>
  144. <td class="">
  145. <textarea class="comments full-textarea" placeholder="Max. 255 characters" maxLength="255" >{{ $scores_array[$student->id]["comments"] }}</textarea>
  146. </td>
  147. </tr>
  148. @endforeach
  149. @else
  150. @foreach ($students as $student)
  151. <tr class="student-row">
  152. <td class="student-field" data-student-id={{ $student->id }}>{{{ $student->name }}}</td>
  153. @for ($i = 0; $i<sizeof($rubric_criterion); $i++)
  154. <td class="score-field" data-weight = '1'>
  155. <select name="" id="" class="form-control" data-toggle="tooltip" data-placement="right" title="{{{ $student->name }}}">
  156. @for($j=0; $j<=$rubric->max_score; $j++)
  157. <option value ='{{$j}}'>{{$j}}</option>
  158. @endfor
  159. <option selected="selected" value="N/A">N/A</option>
  160. </select>
  161. </td>
  162. @endfor
  163. <td class="percentage"></td>
  164. <td class="percentage-per-weight"></td>
  165. <td class="comments"><textarea class="comments full-textarea" placeholder="Max. 255 characters" maxLength="255" ></textarea></td>
  166. </tr>
  167. @endforeach
  168. @endif
  169. </tbody>
  170. <tfoot>
  171. <tr>
  172. <td>
  173. <strong>Passed Criteria Percentage </strong>
  174. </td>
  175. @for ($i = 0; $i<sizeof($rubric_criterion); $i++)
  176. <td class="total"><strong><span class="total-value"></span><span class="percent-sign">%</span></strong>
  177. </td>
  178. @endfor
  179. <td></td>
  180. </tr>
  181. </tfoot>
  182. </table>
  183. <div class="text-center">
  184. <button id="button-submit-assessment" class="btn btn-primary btn-lg publish">Publish Assessment</button>
  185. <button id="button-draft-assessment" class="btn btn-primary btn-lg draft">Save as Draft</button>
  186. </div>
  187. </div>
  188. </div>
  189. <script>
  190. $('#button-submit-assessment, #button-draft-assessment').on('click', function(e)
  191. {
  192. var draft = 0;
  193. if($(this).hasClass('draft'))
  194. draft = 1;
  195. var expected_points = parseInt($('#expected_points').text());
  196. var expected_percentage = parseInt($('#expected_percentage').text());
  197. //Prevent page refresh
  198. e.preventDefault();
  199. // Row in the database
  200. var activity_id = $('#activity').data('activity-id');
  201. var student_info = new Object();
  202. // Object to hold the score sum of each criterion
  203. var criteriaSumObject = new Object();
  204. // Object to hold % of students that passed each criterion
  205. var CriteriaAchievedPercentage = new Object();
  206. // Object to hold all student evaluations
  207. var studentAssessments = new Array();
  208. var weights = new Object();
  209. $('input[name="weight[]"]').each(function (index){
  210. activity_criterion_id = $(this).data('activity-criterion-id');
  211. weights[activity_criterion_id] = $(this).val();
  212. });
  213. // Iterate through all students
  214. $('#assessment-table tbody tr').each(function( index )
  215. {
  216. student_info[index] = new Object()
  217. student_info[index].studentId = $(this).find('.student-field').data('student-id');
  218. student_info[index].activity_crit_id = new Object();
  219. /* var ScoresObject = new Object(); // Scores column in database
  220. var CriterionObject = new Object(); // Objects inside ScoresObject
  221. var SingleStudentAssessment = new Object();
  222. SingleStudentAssessment.student_id = $(this).find('.student-field').data('student-id');
  223. */
  224. // For each criterion, store the score in array
  225. $(this).children('td.score-field').each(function(index2)
  226. {
  227. // Table cell with a score
  228. var scoreField = $(this);
  229. // Criterion being evaluated in current iteration
  230. activity_criterion_id = $('.criterion-field').eq(index2).data('activity-criterion-id');
  231. student_info[index].activity_crit_id[activity_criterion_id] = scoreField.children('select').find(':selected').val();
  232. // Score in the cell
  233. //var score = scoreField.children('select').find(':selected').val();
  234. // Store the score in the scores Object
  235. //ScoresObject[criterion_id]=score;
  236. // Initialize the index for the sum object, if it's undefined
  237. //if(typeof(criteriaSumObject[criterion_id]) == 'undefined')
  238. //{
  239. // criteriaSumObject[criterion_id]=0;
  240. //}
  241. // Add to this criterion's total
  242. //criteriaSumObject[criterion_id]+=parseInt(score);
  243. });
  244. student_info[index].comments = $.trim($(this).find('.comments').val());
  245. //SingleStudentAssessment.scores = ScoresObject;
  246. //SingleStudentAssessment.percentage = $(this).find('.percentage').text();
  247. //SingleStudentAssessment.comments = $.trim($(this).find('.comments').val());
  248. // console.log('comment '+index+': '+SingleStudentAssessment.comments);
  249. // console.log('student object: '+JSON.stringify(SingleStudentAssessment));
  250. //var clone = jQuery.extend({}, SingleStudentAssessment);
  251. //studentAssessments.push(clone);
  252. });
  253. // console.log('students: '+JSON.stringify(studentAssessments));
  254. // console.log('total points per criteria: '+JSON.stringify(criteriaSumObject));
  255. // Iterate through all evaluated criteria, determining which were achieved
  256. // by comparing the completion percentage to the expected percentage
  257. /*var CriteriaAchievedResults = new Object();
  258. $('.total').each(function(index)
  259. {
  260. var id = $('.criterion-field').eq(index).data('criterion-id');
  261. CriteriaAchievedPercentage[id] = parseFloat($(this).find('span').text());
  262. //Set whether criterion was achieved (1) or not (0)
  263. if(CriteriaAchievedPercentage[id] >= expected_percentage)
  264. {
  265. CriteriaAchievedResults[id]=1;
  266. }
  267. else if (CriteriaAchievedPercentage[id] < expected_percentage)
  268. {
  269. CriteriaAchievedResults[id]=0;
  270. }
  271. else
  272. {
  273. CriteriaAchievedResults[id]=null;
  274. }
  275. });
  276. */
  277. // console.log('criteria percentages: '+JSON.stringify(CriteriaAchievedPercentage));
  278. // console.log('criteria achieved results: '+JSON.stringify(CriteriaAchievedResults));
  279. // Save activity to the database
  280. $.post
  281. (
  282. "{{ URL::action('ActivitiesController@saveAssessment') }}",
  283. {
  284. activity_id: activity_id,
  285. draft: draft,
  286. weights: JSON.stringify(weights),
  287. student_info: JSON.stringify(student_info)
  288. },
  289. function(data)
  290. {
  291. location.replace(data);
  292. }
  293. );
  294. });
  295. </script>
  296. @stop
  297. @section('included-js')
  298. <!-- StickyTableHeaders js -->
  299. <script src="{{ asset('vendor/stickyTableHeaders/js/jquery.stickytableheaders.min.js') }}"></script>
  300. @stop
  301. @section ('javascript')
  302. // --------------------------------------------------------------------------
  303. // Page load
  304. // --------------------------------------------------------------------------
  305. // Enable fixed headers
  306. $('#assessment-table').stickyTableHeaders();
  307. // Hide spanish instructions by default
  308. $('#spanish-instructions').toggle();
  309. $('.total').each(function(index)
  310. {
  311. percentagePerCriterion(index+1);
  312. });
  313. $('.student-row').each(function(index)
  314. {
  315. percentagePerStudent($(this));
  316. });
  317. // Highlight student names on hover
  318. $('.student-row td').on('mouseover', function()
  319. {
  320. $('.student-field').css(
  321. {
  322. 'color': 'black',
  323. });
  324. $(this).siblings('.student-field').css(
  325. {
  326. 'color': '#DD0026',
  327. });
  328. });
  329. toggleSaveButton();
  330. // --------------------------------------------------------------------------
  331. // Functions
  332. // --------------------------------------------------------------------------
  333. // Calculate average of students that passed a specific criterion
  334. function percentagePerCriterion(columnIndex)
  335. {
  336. // Object to hold the score sum of each criterion
  337. var sum = 0 ;
  338. var total = 0;
  339. columnIndex+=1;
  340. // Iterate through rows of column
  341. $('table tbody tr td:nth-child('+columnIndex+')').each(function( index )
  342. {
  343. var val = parseInt($(this).children('select').find(':selected').val());
  344. /* If N/A or 0 are chosen, they are ignored in the calculation. */
  345. if(val % 1 === 0)
  346. {
  347. if(val >= parseInt($('#expected_points').text()))
  348. {
  349. sum+=1;
  350. }
  351. total+=1;
  352. }
  353. });
  354. var percentage= (sum/total*100).toFixed(2);
  355. // If no criteria were assessed, set the percentage to 0.
  356. // This is to avoid show NaN%
  357. if(total==0)
  358. {
  359. percentage="N/A";
  360. $('.total:nth-child('+columnIndex+') span.total-value').html(percentage);
  361. $('.total:nth-child('+columnIndex+') span.percent-sign').hide();
  362. }
  363. else
  364. {
  365. $('.total:nth-child('+columnIndex+') span.total-value').html(percentage);
  366. $('.total:nth-child('+columnIndex+') span.percent-sign').show();
  367. }
  368. }
  369. // Calculate total for a specific student
  370. function percentagePerStudent(row)
  371. {
  372. // Object to hold the score student's total score
  373. var sum = 0 ;
  374. var total = 0;
  375. var percentage = 0;
  376. var max_score = parseInt($('#max').val());
  377. sum_of_weight = 0;
  378. per_of_weight =0;
  379. row.find('td.score-field').each(function(index)
  380. {
  381. var val = parseInt($(this).children('select').find(':selected').val());
  382. if(val % 1 === 0) //If number is integer
  383. {
  384. sum += val;
  385. total+=1;
  386. per_of_weight += val * parseInt($('#weight-'+index).val());
  387. sum_of_weight += parseInt($('#weight-'+index).val());
  388. }
  389. });
  390. percentage_per_weight = (100 *(per_of_weight/(max_score*sum_of_weight))).toFixed(2);
  391. percentage =((sum/(total*max_score))*100).toFixed(2);
  392. //If percentage is not a number, set it to 0.
  393. if(isNaN(percentage))
  394. {
  395. percentage="N/A";
  396. row.find('.percentage').html('<strong>'+percentage+'</strong>');
  397. }
  398. else
  399. {
  400. row.find('.percentage').html('<strong>'+percentage+'%</strong>');
  401. }
  402. if(isNaN(percentage_per_weight)){
  403. percentage_per_weight="N/A";
  404. row.find('.percentage-per-weight').html('<strong>'+percentage_per_weight+'</strong>');
  405. }
  406. else{
  407. row.find('.percentage-per-weight').html('<strong>'+percentage_per_weight+'%</strong>');
  408. }
  409. }
  410. function toggleSaveButton()
  411. {
  412. // Check at least one total criterion percentage is not zero
  413. var all_zeros_criteria = true;
  414. $('.total-value').each(function(index)
  415. {
  416. if(Number($(this).text())>0.00)
  417. all_zeros_criteria = false;
  418. });
  419. // Check at least one total student percentage is not zero
  420. var all_zeros_students = true;
  421. $('.percentage').each(function(index)
  422. {
  423. var value = $(this).text().replace('%', '');
  424. if(Number(value)>0.00)
  425. all_zeros_students = false;
  426. });
  427. if(all_zeros_criteria && all_zeros_students)
  428. {
  429. $('#button-submit-assessment').prop('disabled', true);
  430. $('#button-draft-assessment').prop('disabled', true);
  431. }
  432. else
  433. {
  434. $('#button-submit-assessment').prop('disabled', false);
  435. $('#button-draft-assessment').prop('disabled', false);
  436. }
  437. return;
  438. }
  439. // --------------------------------------------------------------------------
  440. // Events
  441. // --------------------------------------------------------------------------
  442. $('input[name="weight[]"]').on('change', function(e){
  443. $('.student-row').each(function(index)
  444. {
  445. percentagePerStudent($(this));
  446. });
  447. });
  448. // When any score changes, calculate percentages
  449. $('select').on('change', function(e)
  450. {
  451. percentagePerCriterion($(this).parent().index());
  452. percentagePerStudent($(this).closest('tr'));
  453. toggleSaveButton();
  454. });
  455. //LA LINEA DONDE VA, 410
  456. // Submit button is clicked
  457. // Language button is clicked
  458. $('#button-language').on('click', function(e)
  459. {
  460. $('#english-instructions').stop().toggle();
  461. $('#spanish-instructions').stop().toggle();
  462. });
  463. // Criterion name is clicked
  464. $('.criterion-field').on('click', function()
  465. {
  466. $.ajax({
  467. type: 'POST',
  468. url: "{{ URL::action('RubricsController@fetchRubricCriterion') }}",
  469. data: {
  470. rubric_criterion_id: $(this).data('rubric-criterion-id')
  471. },
  472. success: function(data)
  473. {
  474. data = JSON.parse(data);
  475. $('.modal-title').html(data.criteria.name);
  476. descriptions = '';
  477. $('.modal-body tbody tr').empty();
  478. for(i =0; i<{{$rubric->num_scales}}; i++){
  479. descriptions += '<td>'+data[i].description+'</td>'
  480. }
  481. $('.modal-body tbody tr').append
  482. (
  483. descriptions
  484. );
  485. if(data.criteria.notes!=null)
  486. $('.modal-body tbody tr').append('<td>'+data.criteria.notes+'</td>');
  487. else
  488. $('.modal-body tbody tr').append('<td></td>');
  489. },
  490. async:true
  491. });
  492. $('#modal-view-criterion').modal();
  493. });
  494. @stop