No Description

criteria.blade.php 43KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107
  1. @extends('layouts.master')
  2. @section('navigation')
  3. @include('local.managers.sCoords._navigation')
  4. @stop
  5. @section('main')
  6. <div class="row">
  7. <div class="col-md-6">
  8. <!-- Form to add a new criterion -->
  9. <div class="panel panel-default panel-button">
  10. <div class="panel-heading">
  11. Create
  12. </div>
  13. <div class="panel-body">
  14. {{ Form::open(array('action' => 'CriteriaController@create')) }}
  15. <div id='outcomeGroup'>
  16. <div class="form-group col-md-11">
  17. <label>Associated Outcomes</label>
  18. {{ Form::select('outcome[]', $outcomes, reset($outcomes), ['class'=>'form-control selectpicker', 'id' =>'outcome0', 'onchange'=>'fetchObjectiveForSelect("outcome0")']) }}
  19. </div>
  20. </div>
  21. <input type='hidden' name='counterOutcome' id='counterOutcome' value=1>
  22. <button id='button-add-outcome' class='btn btn-md btn-secondary' onclick='addOutcomeTest()'>
  23. <span class='glyphicon glyphicon-plus'>
  24. </span>
  25. Add another Outcome
  26. </button>
  27. <div id='objectiveGroup'>
  28. <div class="form-group">
  29. <label>Associated Objectives</label>
  30. <select id="objective_0" name="objective[]" class="form-control selectpicker">
  31. </select>
  32. </div>
  33. </div>
  34. <input type='hidden' name='counterObjective' id='counterObjective' value=1>
  35. <button id='button-add-objective' class='btn btn-md btn-secondary' onclick='addObjectiveTest()'>
  36. <span class='glyphicon glyphicon-plus'>
  37. </span>
  38. Add another Objective
  39. </button>
  40. <!-- Associated Program -->
  41. <div class="form-group">
  42. {{ Form::label('program_id', 'Associated Program') }}<br>
  43. <br>
  44. @foreach ($programs as $program)
  45. <input type="checkbox" id="{{ $program->name }}" name="program_id[]" value="{{$program->id}}">
  46. <label for="{{ $program->name }}"> {{ $program->name }} [{{ $program->school->name }}]</label><br>
  47. @endforeach
  48. </div>
  49. <div class="form-group">
  50. {{ Form::label('name', 'Name') }}
  51. {{ Form::text('name', '', array('class' => 'form-control')) }}
  52. </div>
  53. <div class="form-group">
  54. {{ Form::label('subcriteria', 'Subcriteria') }}
  55. <p class="help-block"><strong>Manually add</strong> bullets or numbering.</p>
  56. {{ Form::textarea('subcriteria', '', array('class' => 'form-control', 'rows'=>3, 'aria-labelledby'=>'subcriteria')) }}
  57. </div>
  58. <div class="form-group">
  59. {{ Form::label('maximum_score', 'Maximum Score') }}
  60. {{ Form::text('maximum_score', '1', array('class' => 'form-control', 'id'=>'maximum_score', 'oninput'=>'addOptions("Num_scale", "maximum_score", "Scales")')) }}
  61. </div>
  62. <div class="form-group">
  63. {{ Form::label('scales', 'Number of Scales') }}
  64. <select id="Num_scale" name="scales" class="form-control selectpicker" onchange='numberOfScales("Num_scale", "Scales")'>
  65. </select>
  66. </div>
  67. <div id='Scales' data-value="0">
  68. </div>
  69. <div class="form-group">
  70. {{ Form::label('copyright', 'Copyright') }}
  71. {{ Form::textarea('copyright', '', array('class' => 'form-control', 'rows'=>2, 'placeholder'=>'(optional)', 'aria-labelledby'=>'copyright')) }}
  72. </div>
  73. <div class="form-group">
  74. {{ Form::label('notes', 'Notes') }}
  75. {{ Form::textarea('notes', '', array('class' => 'form-control', 'rows'=>2, 'placeholder'=>'(optional)', 'aria-labelledby'=>'notes')) }}
  76. </div>
  77. {{ Form::submit('Create', array('class' => 'btn btn-primary btn-block')) }}
  78. {{ Form::close() }}
  79. </div>
  80. </div>
  81. </div>
  82. <div class="col-md-6">
  83. <div class="panel panel-default panel-button">
  84. <div class="panel-heading">
  85. Edit
  86. </div>
  87. <div class="panel-body">
  88. {{ Form::open(array('action' => 'CriteriaController@update')) }}
  89. <button class="btn btn-md btn-secondary filterButton">
  90. <span class="glyphicon glyphicon-plus">
  91. </span>
  92. Filters
  93. </button>
  94. <div class="filterSection">
  95. <div class="form-group">
  96. {{ Form::label('program_id2', 'Associated Program')}}
  97. <select id='select-program' class="form-control selectpicker" onchange='fetchAllCriterion("select-program", "assoc_outcomes_fetch")'>
  98. @foreach ($programs as $program)
  99. <option value='{{$program->id}}' data-subtext="{{$program->code}}">{{$program->name}}</option>
  100. @endforeach
  101. </select>
  102. </div>
  103. <div class="form-group">
  104. <label>Associated Outcome</label>
  105. {{ Form::select('assoc_outcome_fetch', $outcomes, null, ['class'=>'form-control selectpicker', 'id'=>'assoc_outcomes_fetch', 'onchange'=>'fetchAllCriterion("select-program", "assoc_outcomes_fetch")']) }}
  106. </div>
  107. </div>
  108. <div class="form-group">
  109. {{ Form::label('criterion_id', 'Criterion') }}
  110. <select id="select-criterion" name="id" class="form-control selectpicker" onchange='fetchCriterionForEditing()'>
  111. @foreach ($criteria as $criterion)
  112. <option value="{{ $criterion->id }}" data-subtext="
  113. @if($criterion->program)
  114. &nbsp;&nbsp;&nbsp;[{{ $criterion->program->name }}]
  115. @endif
  116. ">
  117. {{ $criterion->name }}
  118. </option>
  119. @endforeach
  120. </select>
  121. </div>
  122. <!-- Associated Outcome -->
  123. <div id='assocOutcomeGroup'>
  124. <div class="form-group">
  125. <label>Associated Outcome</label>
  126. {{ Form::select('assoc_outcome[]', $outcomes, null, ['class'=>'form-control selectpicker', 'id'=>'assoc_outcome_0', 'onchange'=>'fetchAssocObjective("assoc_outcome_0")']) }}
  127. </div>
  128. </div>
  129. <button id='button-add-objective-assoc' class='btn btn-md btn-secondary' onclick='addAssocOutcome()'>
  130. <span class='glyphicon glyphicon-plus'>
  131. </span>
  132. Add another Outcome
  133. </button>
  134. <div id='assoc_objectiveGroup'>
  135. <div class="form-group">
  136. <label>Associated Objectives</label>
  137. <select id="assoc_objective_0" name="assoc_objective[]" class="form-control selectpicker">
  138. </select>
  139. </div>
  140. </div>
  141. <button id='button-add-outcome-assoc' class='btn btn-md btn-secondary' onclick='addAssocObjective()'>
  142. <span class='glyphicon glyphicon-plus'>
  143. </span>
  144. Add another Objective
  145. </button>
  146. <!-- Associated Program -->
  147. <div class="form-group">
  148. {{ Form::label('program_id2', 'Associated Program') }}<br><br>
  149. @foreach ($programs as $program)
  150. <input type="checkbox" id="assoc_program_id_{{ $program->id }}" name="program_id[]" value="{{$program->id}}">
  151. <label for="assoc_program_id_{{ $program->id }}"> {{ $program->name }} <sub>[{{ $program->school->name }}]</sub></label><br>
  152. @endforeach
  153. </div>
  154. <!-- Status -->
  155. <div class="form-group">
  156. {{ Form::label('status', 'Status') }}
  157. <span data-toggle="tooltip" data-placement="top" title="Use this option to deactivate or reactivate criteria. Inactive criteria will stay in the system, but will not be available to use in new rubrics." class="glyphicon glyphicon-question-sign"></span>
  158. <select id="status" name="status" class="form-control">
  159. <option value="1">Active</option>
  160. <option value="0">Inactive</option>
  161. </select>
  162. </div>
  163. <div class="form-group">
  164. {{ Form::label('name', 'Name') }}
  165. {{ Form::text('name', Input::old('name'), array('class' => 'form-control', 'id'=>'criterion_name')) }}
  166. </div>
  167. <div class="form-group">
  168. {{ Form::label('subcriteria', 'Subcriteria') }}
  169. <p class="help-block"><strong>Manually add</strong> bullets or numbering.</p>
  170. {{ Form::textarea('subcriteria', '', array('class' => 'form-control', 'rows'=>3, 'id' => 'criterion_subcriteria')) }}
  171. </div>
  172. <div class="form-group">
  173. {{ Form::label('assoc_maximum_score', 'Maximum Score') }}
  174. {{ Form::text('assoc_maximum_score', '', array('class' => 'form-control', 'id'=>'assoc_maximum_score', 'oninput'=>'addOptions("Num_assoc_scale", "assoc_maximum_score", "Assoc_Scales")')) }}
  175. </div>
  176. <div class="form-group">
  177. {{ Form::label('scales', 'Number of Scales') }}
  178. <select id="Num_assoc_scale" class="form-control selectpicker" onchange='numberOfAssoc("Num_assoc_scale", "Assoc_Scales")'>
  179. </select>
  180. </div>
  181. <div id='Assoc_Scales' data-value="0">
  182. </div>
  183. <div class="form-group">
  184. {{ Form::label('copyright', 'Copyright Information') }}
  185. {{ Form::textarea('copyright', Input::old('copyright'), array('class' => 'form-control', 'rows'=>2, 'id'=>'criterion_copyright', 'placeholder'=>'(optional)')) }}
  186. </div>
  187. <div class="form-group">
  188. {{ Form::label('notes', 'Additional Notes') }}
  189. {{ Form::textarea('notes', Input::old('notes'), array('class' => 'form-control', 'rows'=>2, 'id'=>'criterion_notes', 'placeholder'=>'(optional)')) }}
  190. </div>
  191. <div id='delete'>
  192. </div>
  193. {{ Form::submit('Update', array('class' => 'btn btn-primary btn-block')) }}
  194. {{ Form::close() }}
  195. </div>
  196. </div>
  197. </div>
  198. </div>
  199. <script>
  200. $('.filterSection').hide();
  201. $('.filterButton').on('click', function()
  202. {
  203. var span = $(this).find('span');
  204. if(span.attr('class') == 'glyphicon glyphicon-plus'){
  205. span.attr('class','glyphicon glyphicon-minus');
  206. } else{
  207. span.attr('class','glyphicon glyphicon-plus');
  208. }
  209. $('.filterSection').toggle(533);
  210. });
  211. var selectOptions = document.getElementById('outcome0').innerHTML;
  212. var counter = 1;
  213. var counterObj = 1;
  214. var outcomeString = 'OutcomeGroup_';
  215. $(document).ready(function() {
  216. addOptions('Num_scale', 'maximum_score', 'Scales');
  217. numberOfScales('Num_scale', 'Scales');
  218. });
  219. function numberOfAssoc(string, Scales) {
  220. var maximum = $('#assoc_maximum_score').val();
  221. var amountOfScale = parseInt($('#' + string).val());
  222. var dataValue = parseInt($('#' + Scales).attr('data-value'));
  223. //add
  224. if (dataValue < amountOfScale) {
  225. fullDiv = '';
  226. for (var i = dataValue; i < amountOfScale; i++) {
  227. div = '<div id="assoc_eval' + i.toString() + Scales + '">' +
  228. '<div class ="form-row">' +
  229. '<label for="header' + (i).toString() + '">Evaluación ' + (i + 1).toString() + '</label><br><br>' +
  230. '<input type="hidden" id="header' + i.toString() + '">' +
  231. '<div class="form-group col-md-8" >' +
  232. '<label for="title' + i.toString() + '">Nombre de Evaluación ' + (i + 1).toString() + '</label>' +
  233. '<input class="form-control" name="assoc_title[]" type="text" id="title' + i.toString() + '" placeholder ="Nombre de evaluacion" ></div>' +
  234. '<div class ="form-group col-md-2">' +
  235. '<label for="min' + i.toString() + '">Mínimo </label>' +
  236. '<input class="form-control" type="number" id="assoc_min' + i.toString() + '" min="1" max = "' + maximum + '" oninput ="changedMin(' + "'assoc_min" + i.toString() + "', '" + i.toString() + "', 'Assoc_Scales' " + ')" name = "assoc_min[]"></div>' +
  237. '<div class ="form-group col-md-2">' +
  238. '<label for="max' + i.toString() + '">Máximo </label>' +
  239. '<input class="form-control" type="number" id="assoc_max' + i.toString() + '" min="1" max = "' + maximum + '" oninput ="changedMax(' + "'assoc_max" + i.toString() + "', '" + i.toString() + "', 'Assoc_Scales' " + ')" name = "assoc_max[]"></div></div>' +
  240. '<div class ="form-group">' +
  241. '<label for ="descripcion' + i.toString() + '">Descripción de evaluación</label>' +
  242. '<textarea class="form-control" rows="2" aria-labelledby="descripcion' + i.toString() + '" name="assoc_scales[]" cols="50" ></textarea></div></div>';
  243. fullDiv += div;
  244. }
  245. $('#' + Scales).append(fullDiv);
  246. $('#' + Scales).attr('data-value', amountOfScale);
  247. } else {
  248. for (var i = dataValue; i > amountOfScale; i--) {
  249. $('#assoc_eval' + (i - 1).toString()).remove();
  250. }
  251. }
  252. $('#' + Scales).attr('data-value', amountOfScale);
  253. }
  254. function addOptions(select, max, scaleDiv) {
  255. var maxscore = parseInt($('#' + max).val())
  256. options = '';
  257. for (var i = 1; i <= maxscore; i++) {
  258. options += '<option value="' + i.toString() + '">' + i.toString() + '</option>';
  259. }
  260. var previousvalue = parseInt($('#' + select).val());
  261. $('#' + select).html(options);
  262. $('#' + select).val(previousvalue);
  263. $('#' + select).selectpicker('refresh');
  264. var attribute = parseInt($('#' + scaleDiv).attr('data-value'));
  265. for (var i = 0; i < attribute; i++) {
  266. $('#max' + i.toString()).attr('max', maxscore);
  267. $('#min' + i.toString()).attr('max', maxscore);
  268. }
  269. }
  270. function numberOfScales(string, Scales) {
  271. var maximum = $('#maximum_score').val();
  272. var amountOfScale = parseInt($('#' + string).val());
  273. var dataValue = parseInt($('#' + Scales).attr('data-value'));
  274. //add
  275. if (dataValue < amountOfScale) {
  276. fullDiv = '';
  277. for (var i = dataValue; i < amountOfScale; i++) {
  278. div = '<div id="eval' + i.toString() + Scales + '">' +
  279. '<div class ="form-row">' +
  280. '<label for="header' + (i).toString() + '">Evaluación ' + (i + 1).toString() + '</label><br><br>' +
  281. '<input type="hidden" id="header' + i.toString() + '">' +
  282. '<div class="form-group col-md-8" >' +
  283. '<label for="title' + i.toString() + '">Nombre de Evaluación ' + (i + 1).toString() + '</label>' +
  284. '<input class="form-control" name="title[]" type="text" id="title' + i.toString() + '" placeholder ="Nombre de evaluacion" ></div>' +
  285. '<div class ="form-group col-md-2">' +
  286. '<label for="min' + i.toString() + '">Mínimo </label>' +
  287. '<input class="form-control" type="number" id="min' + i.toString() + '" min="1" max = "' + maximum + '" oninput ="changedMin(' + "'min" + i.toString() + "', '" + i.toString() + "', 'Scales' " + ')" name = "min[]"></div>' +
  288. '<div class ="form-group col-md-2">' +
  289. '<label for="max' + i.toString() + '">Máximo </label>' +
  290. '<input class="form-control" type="number" id="max' + i.toString() + '" min="1" max = "' + maximum + '" oninput ="changedMax(' + "'max" + i.toString() + "', '" + i.toString() + "', 'Scales' " + ')" name = "max[]"></div></div>' +
  291. '<div class ="form-group">' +
  292. '<label for ="descripcion' + i.toString() + '">Descripción de evaluación</label>' +
  293. '<textarea class="form-control" rows="2" aria-labelledby="descripcion' + i.toString() + '" name="' + Scales + '[]" cols="50" ></textarea></div></div>';
  294. fullDiv += div;
  295. }
  296. $('#' + Scales).append(fullDiv);
  297. } else {
  298. for (var i = dataValue; i > amountOfScale; i--) {
  299. $('#eval' + (i - 1).toString() + Scales).remove();
  300. }
  301. }
  302. $('#' + Scales).attr('data-value', amountOfScale);
  303. }
  304. function changedMin(min, index, scaleDiv) {
  305. var maximum = parseInt($('#' + min).val()) + 1;
  306. var maxScaleScore = parseInt($('#' + scaleDiv).attr('data-value'));
  307. for (var i = parseInt(index); i < maxScaleScore; i++) {
  308. $('#max' + i).attr('min', maximum);
  309. }
  310. }
  311. function changedMax(max, index, scaleDiv) {
  312. var maximum = parseInt($('#' + max).val()) + 1;
  313. var maxScaleScore = parseInt($('#' + scaleDiv).attr('data-value'));
  314. for (var i = parseInt(index) + 1; i < maxScaleScore; i++) {
  315. $('#min' + i).attr('min', maximum)
  316. }
  317. }
  318. //Add outcome Button
  319. function addOutcomeTest() {
  320. counter = parseInt($('#outcomeGroup').data("value"));
  321. var $select = $('<select/>', {
  322. 'class': "selectpicker form-control",
  323. 'name': "outcome[]",
  324. 'data-live-search': 'true',
  325. 'id': 'outcome' + counter.toString(),
  326. 'onchange': 'fetchObjectiveForSelect("outcomeGroup", "objectiveGroup")'
  327. });
  328. var $div = $('<div/>', {
  329. 'id': 'outcomeForm' + counter.toString(),
  330. 'class': 'form-group col-md-11'
  331. });
  332. var $divForButton = $('<div/>', {
  333. 'class': 'col-md-1',
  334. 'id': 'close' + counter.toString()
  335. });
  336. var $button = $('<button/>', {
  337. 'type': 'button',
  338. 'class': 'btn btn-primary',
  339. 'onclick': 'deleteLast("outcomeForm'+counter.toString()+'", "outcomeGroup", "close' + counter.toString() + '", "objectiveGroup")'
  340. });
  341. $button.append('X');
  342. $divForButton.append($button);
  343. $div.appendTo('#outcomeGroup')
  344. $select.append(selectOptions);
  345. $select.appendTo('#outcomeForm' + counter.toString()).selectpicker('refresh');
  346. $('#outcomeGroup').data("value", counter +1);
  347. fetchObjectiveForSelect('outcomeGroup', "objectiveGroup");
  348. $divForButton.appendTo('#outcomeGroup');
  349. }
  350. //Delete Outcome and OptGroup associated
  351. function deleteLast(outcomeForm, outcomeDiv, closeButton, objectiveGroup) {
  352. $div = document.getElementById(outcomeForm );
  353. $div.remove();
  354. $div = document.getElementById(closeButton);
  355. $div.remove();
  356. if(outcomeDiv =='outcomeGroup'){
  357. $('#' + outcomeDiv).data('value',parseInt($('#' + outcomeDiv).data('value')) - 1);
  358. fetchObjectiveForSelect(outcomeDiv, objectiveGroup);}
  359. }
  360. //Delete Objective
  361. function deleteObjective(objectiveForm, closeObj, objectiveGroup) {
  362. $div = document.getElementById(objectiveForm);
  363. $div.remove();
  364. $div = document.getElementById(closeObj);
  365. $div.remove();
  366. counter = parseInt($('#'+objectiveGroup).data("value"));
  367. $('#'+objectiveGroup).data("value", counter-1);
  368. }
  369. //Add objective when editing
  370. function addAssocObjective() {
  371. selectObj = document.getElementById('assoc_objective_0').innerHTML;
  372. assocObjectiveCounter = parseInt($('#assoc_objectiveGroup').data('value'));
  373. var $select = $('<select/>', {
  374. 'class': "selectpicker form-control",
  375. 'name': "assoc_objective[]",
  376. 'data-live-search': 'true',
  377. 'id': 'assoc_objective_' + assocObjectiveCounter.toString(),
  378. });
  379. var $div = $('<div/>', {
  380. 'id': 'assoc_objectiveForm' + assocObjectiveCounter.toString(),
  381. 'class': 'form-group col-md-11'
  382. });
  383. var $divForButton = $('<div/>', {
  384. 'class': 'col-md-1',
  385. 'id': 'assoc_closeObj' + assocObjectiveCounter.toString()
  386. });
  387. var $button = $('<button/>', {
  388. 'type': 'button',
  389. 'class': 'btn btn-primary',
  390. 'onclick': 'deleteObjective("assoc_objectiveForm' + assocObjectiveCounter.toString() + '", "assoc_closeObj' + assocObjectiveCounter.toString() + ', assoc_objectiveGroup")'
  391. });
  392. $button.append('X');
  393. $divForButton.append($button);
  394. $div.appendTo('#assoc_objectiveGroup')
  395. $select.append(selectObj);
  396. $select.appendTo('#assoc_objectiveForm' + assocObjectiveCounter.toString()).selectpicker('refresh');
  397. $('#assoc_objectiveGroup').data("value", assocObjectiveCounter +1);
  398. $divForButton.appendTo('#assoc_objectiveGroup');
  399. }
  400. //Add objective when creating a criteria
  401. function addObjectiveTest() {
  402. selectObj = document.getElementById('objective_0').innerHTML;
  403. counter = $("#objectiveGroup").data('value');
  404. $('#objectiveGroup')
  405. var $select = $('<select/>', {
  406. 'class': "selectpicker form-control",
  407. 'name': "objective[]",
  408. 'data-live-search': 'true',
  409. 'id': 'objective_' + counter.toString()
  410. });
  411. var $div = $('<div/>', {
  412. 'id': 'objectiveForm' + counter.toString(),
  413. 'class': 'form-group col-md-11'
  414. });
  415. var $divForButton = $('<div/>', {
  416. 'class': 'col-md-1',
  417. 'id': 'closeObj' + counter.toString()
  418. });
  419. var $button = $('<button/>', {
  420. 'type': 'button',
  421. 'class': 'btn btn-primary',
  422. 'onclick': 'deleteObjective("objectiveForm' + counter.toString() + '", "closeObj' + counter.toString() + '","objectiveGroup")'
  423. });
  424. $button.append('X');
  425. $divForButton.append($button);
  426. $div.appendTo('#objectiveGroup')
  427. $select.append(selectObj);
  428. $select.appendTo('#objectiveForm' + counter.toString()).selectpicker('refresh');
  429. $divForButton.appendTo('#objectiveGroup');
  430. $('#objectiveGroup').data('value', counter +1);
  431. }
  432. //Create outcome for editing
  433. var assocOutcomeCounter = 0;
  434. function addAssocOutcome() {
  435. assocOutcomeCounter = parseInt($('#assocOutcomeGroup').data('value'));
  436. var $select = $('<select/>', {
  437. 'class': "selectpicker form-control",
  438. 'name': "assoc_outcome[]",
  439. 'data-live-search': 'true',
  440. 'id': 'assoc_outcome_' + assocOutcomeCounter.toString(),
  441. 'onchange': 'fetchAssocObjective("assoc_outcome_' + assocOutcomeCounter.toString() + '")'
  442. });
  443. var $div = $('<div/>', {
  444. 'id': 'assoc_outcomeForm' + assocOutcomeCounter.toString(),
  445. 'class': 'form-group col-md-11'
  446. });
  447. var $divForButton = $('<div/>', {
  448. 'class': 'col-md-1',
  449. 'id': 'assoc_close' + assocOutcomeCounter.toString()
  450. });
  451. var $button = $('<button/>', {
  452. 'type': 'button',
  453. 'class': 'btn btn-primary',
  454. 'onclick': 'deleteLast("assoc_outcomeForm' + assocOutcomeCounter.toString() + '", "assocOutcomeGroup", "assoc_close' + assocOutcomeCounter.toString() + '","assoc_objectiveGroup")'
  455. });
  456. $button.append('X');
  457. $divForButton.append($button);
  458. $div.appendTo('#assocOutcomeGroup')
  459. $select.append(selectOptions);
  460. $select.appendTo('#assoc_outcomeForm' + assocOutcomeCounter.toString()).selectpicker('refresh');
  461. assocOutcomeCounter += 1;
  462. $('#assocOutcomeGroup').data('value', assocOutcomeCounter);
  463. $divForButton.appendTo('#assocOutcomeGroup');
  464. }
  465. //Fetch associated objective for editing
  466. var assocObjectiveCounter = 1;
  467. function fetchAssocObjective(outcomeDiv, objectiveGroup) {
  468. var count = $('#'+outcomeDiv).data('value');
  469. var allOutcomes =[];
  470. $("#" + outcomeDiv + ' select').each(function() {
  471. allOutcomes.push( this.value);
  472. })
  473. var allObjectives = [];
  474. $("#" + objectiveGroup + ' select').each(function() {
  475. var temp = {
  476. id: this.id,
  477. value: this.value
  478. }
  479. allObjectives.push(temp);
  480. })
  481. $.post(
  482. "{{ URL::action('CriteriaController@fetchObjectivesForSelect') }}", {
  483. allOutcomes: allOutcomes
  484. },
  485. function(json) {
  486. optionName = '';
  487. for(outcome in varArray.outcomes){
  488. optionName += '<optgroup label="' + varArray.outcomes[outcome][0].name + '"';
  489. var objectiveForOutcome = varArray.objectives;
  490. var objectives = objectiveForOutcome[outcome];
  491. for (objective in objectives) {
  492. var obj= objectives[objective];
  493. var option = '<option value ="' + obj.id + '">' +obj.text + '</option>';
  494. optionName += (option);
  495. }
  496. }
  497. $('#assoc_objective_0').html(optionName);
  498. $('#assoc_objective_0').selectpicker('refresh');
  499. if($("#assoc_objective_0 option[value='"+allObjectives[0].value+"']").length>0){
  500. $("#assoc_objective_0").val(allObjectives[0].value);
  501. $('#assoc_objective_0').selectpicker('refresh');
  502. }
  503. for (var i = allObjectives.length - 1; i > 0; i--) {
  504. deleteObjective('assoc_objectiveForm' + i.toString(), 'assoc_closeObj' + i.toString(), 'assoc_objectiveGroup');
  505. }
  506. for(var i=1; i<allObjectives.length; i++){
  507. addAssocObjective();
  508. $('#assoc_objective_'+i.toString()).selectpicker('refresh');
  509. if($("#assoc_objective_"+i.toString()+" option[value='"+allObjectives[i].value+"']").length>0){
  510. $("#assoc_objective_"+i.toString()).val(allObjectives[i].value);
  511. $("#assoc_objective_"+i.toString()).selectpicker("refresh");
  512. }
  513. }
  514. },
  515. 'json'
  516. );
  517. }
  518. //Fetch objective at creating criteria
  519. counterForPost = 0;
  520. function fetchObjectiveForSelect(outcomeDiv, objectiveGroup) {
  521. var count = $("#" + outcomeDiv).data('value');
  522. var allOutcomes = [];
  523. $("#" + outcomeDiv + ' select').each(function() {
  524. allOutcomes.push( this.value);
  525. })
  526. var allObjectives = [];
  527. $("#" + objectiveGroup + ' select').each(function() {
  528. var temp = {
  529. id: this.id,
  530. value: this.value
  531. }
  532. allObjectives.push(temp);
  533. })
  534. $.post(
  535. "{{ URL::action('CriteriaController@fetchObjectivesForSelect') }}", {
  536. allOutcomes: allOutcomes
  537. },
  538. function(varArray) {
  539. counterOutcome =0;
  540. optionName = '';
  541. for(outcome in varArray.outcomes){
  542. optionName += '<optgroup label="' + varArray.outcomes[outcome][0].name + '"';
  543. var objectiveForOutcome = varArray.objectives;
  544. var objectives = objectiveForOutcome[outcome];
  545. for (objective in varArray.objectives[outcome]) {
  546. var obj= objectives[objective];
  547. var option = '<option value ="' + obj.id + '">' +obj.text + '</option>';
  548. optionName += (option);
  549. }
  550. }
  551. $('#objective_0').html(optionName);
  552. $('#objective_0').selectpicker('refresh');
  553. if($("#objective_0 option[value='"+allObjectives[0].value+"']").length>0){
  554. $("#objective_0").val(allObjectives[0].value);
  555. $('#objective_0').selectpicker('refresh');
  556. }
  557. for (var i = allObjectives.length - 1; i > 0; i--) {
  558. deleteObjective('objectiveForm' + i.toString(), 'closeObj' + i.toString(), 'objectiveGroup');
  559. }
  560. for(var i =1; i<allObjectives.length; i++){
  561. addObjectiveTest();
  562. $('#objective_'+i.toString()).selectpicker('refresh');
  563. if($("#objective_"+i.toString()+" option[value='"+allObjectives[i].value+"']").length>0){
  564. $("#objective_"+i.toString()).val(allObjectives[i].value);
  565. $("#objective_"+i.toString()).selectpicker("refresh");
  566. }
  567. }
  568. },
  569. 'json'
  570. );
  571. }
  572. //after post
  573. fetchAllCriterion("select-program", "assoc_outcomes_fetch");
  574. //For editing criterion
  575. function fetchAllCriterion(program, outcome) {
  576. var program_id_fetch = $('#' + program).find(':selected').val();
  577. var outcome_fetch = $('#' + outcome).find(':selected').val();
  578. $.post(
  579. "{{URL::action('CriteriaController@fetchAllCriterion')}}", {
  580. program_fetch: program_id_fetch,
  581. outcome_fetch: outcome_fetch
  582. },
  583. function(json) {
  584. json_length = (json.criterion.length);
  585. fullHTML = '';
  586. for (var i = 0; i < json_length; i++) {
  587. fullHTML += '<option value="' + json.criterion[i].id + '">' + json.criterion[i].name + '</option>';
  588. }
  589. $('#select-criterion').html(fullHTML);
  590. $('#select-criterion').selectpicker('refresh');
  591. fetchCriterionForEditing()
  592. },
  593. 'json'
  594. );
  595. }
  596. function deleteCriterion() {
  597. var id = $('#select-criterion').find(':selected').val()
  598. $.post(
  599. "{{ URL::action('CriteriaController@delete')}}", {
  600. id: id
  601. },
  602. function() {
  603. window.location.reload(true)
  604. }
  605. )
  606. }
  607. function fetchCriterionForEditing() {
  608. var id = $('#select-criterion').find(':selected').val();
  609. $.post(
  610. "{{ URL::action('CriteriaController@fetchCriterionWithTrashed') }}", {
  611. id: id
  612. },
  613. function(json) {
  614. if (!(json.activity_criterion.length)) {
  615. $('#DeleteButton').prop('disabled', true);
  616. } else {
  617. $('#DeleteButton').prop('enabled', true);
  618. }
  619. if (!(json.criteria.length)) {
  620. name = ' ';
  621. var subcriteria = '';
  622. copyright = null;
  623. notes = null;
  624. $('#status').val(0);
  625. maximum = 1;
  626. $('#assoc_maximum_score').val(1);
  627. } else {
  628. var name = json.criteria[0].name;
  629. if (json.criteria[0].subcriteria) {
  630. subcriteria = JSON.parse(json.criteria[0].subcriteria).join('\n');
  631. } else {
  632. subcriteria = "";
  633. }
  634. if (json.criteria[0].copyright) {
  635. var copyright = json.criteria[0].copyright;
  636. } else {
  637. var copyright = ''
  638. }
  639. if (json.criteria[0].notes) notes = json.criteria[0].notes;
  640. else notes = '';
  641. // Display info
  642. $('#criterion_name').val(name);
  643. $('#criterion_subcriteria').text(subcriteria);
  644. if (json.criteria[0].deleted_at)
  645. $('#status').val(0);
  646. else
  647. $('#status').val(1);
  648. $('#assoc_maximum_score').val(json.criteria[0].maximum_score);
  649. var maximum = json.criteria[0].maximum_score;
  650. // If copyright or notes aren't empty, load them
  651. }
  652. $('#criterion_copyright').text(copyright);
  653. $('#criterion_notes').text(notes);
  654. // Select associated outcome
  655. try {
  656. assocOutcomeCounter= parseInt($("#assocOutcomeGroup").data('value'));
  657. for (var i = assocOutcomeCounter - 1; i > 0; i--) {
  658. deleteLast("assoc_outcomeForm" + i.toString() , "assocOutcomeGroup", "assoc_close" + i.toString() ,"assoc_objectiveGroup");
  659. }
  660. } catch (err) {
  661. var Notran = true;
  662. }
  663. if (json.outcomes.length) {
  664. $('#assoc_outcome_0').val(json.outcomes[0].id);
  665. $('#assoc_outcome_0').selectpicker('refresh');
  666. } else {
  667. $('#assoc_outcome_0').val($('#assoc_outcomes_fetch').find(':selected').val());
  668. $('#assoc_outcome_0').selectpicker('refresh');
  669. }
  670. for (var i = 1; i < json.outcomes.length; i++) {
  671. addAssocOutcome();
  672. $('#assoc_outcome_' + i.toString()).val(json.outcomes[i].id);
  673. $('#assoc_outcome_' + i.toString()).selectpicker('refresh');
  674. }
  675. counterObj =$('#assoc_objectiveGroup').data('value');
  676. try {
  677. for (var i = counterObj - 1; i > 0; i--) {
  678. deleteObjective('assoc_objectiveForm' + i.toString(), 'assoc_closeObj' + i.toString(), 'assoc_objectiveGroup')
  679. }
  680. } catch (err) {
  681. var noEntro = true;
  682. }
  683. $('#assoc_objectiveGroup').data('value', 1);
  684. assocOutcomeCounter = 0;
  685. var i = 0;
  686. optionName = '';
  687. for(outcome in json.outcomes_assoc){
  688. optionName += '<optgroup label="' + json.outcomes_assoc[outcome][0].name + '"';
  689. var objectiveForOutcome = json.objectives_assoc;
  690. var objectives = objectiveForOutcome[outcome];
  691. for (objective in objectives) {
  692. var obj= objectives[objective];
  693. var option = '<option value ="' + obj.id + '">' +obj.text + '</option>';
  694. optionName += (option);
  695. }
  696. }
  697. $('#assoc_objective_0').html(optionName);
  698. $('#assoc_objective_0').selectpicker('refresh');
  699. try {
  700. $('#assoc_objective_0').val(json.objectives[0].id);
  701. $('#assoc_objective_0').selectpicker('refresh');
  702. } catch (err) {
  703. if (!json.objectives.length) {
  704. $('#assoc_objective_0').val(0);
  705. $('#assoc_objective_0').selectpicker('refresh');
  706. }
  707. }
  708. for (var i = 1; i < json.objectives.length; i++) {
  709. addAssocObjective();
  710. $('#assoc_objective_' + i.toString()).val(json.objectives[i].id);
  711. $('#assoc_objective_' + i.toString()).selectpicker('refresh');
  712. }
  713. $('assoc_objectiveGroup').data('value',json.objectives.length);
  714. // Select associated program
  715. var program_length = json.program.length;
  716. $('input[type=checkbox]').prop('checked', false);
  717. for (var i = 0; i < program_length; i++) {
  718. $('#assoc_program_id_' + json.program[i].program_id).prop("checked", true);
  719. }
  720. // Select status
  721. scaleLength = json.scales.length;
  722. fullDiv = '';
  723. if (!scaleLength) {
  724. div = '<div id="assoc_eval 0"">' +
  725. '<div class ="form-row">' +
  726. '<label for="header0">Evaluación 1</label><br><br>' +
  727. '<input type="hidden" id="header0">' +
  728. '<div class="form-group col-md-8" >' +
  729. '<label for="title0">Nombre de Evaluación 1</label>' +
  730. '<input class="form-control" name="assoc_title[]" value =" "type="text" id="title0" placeholder ="Nombre de evaluacion" ></div>' +
  731. '<div class ="form-group col-md-2">' +
  732. '<label for="min0">Mínimo </label>' +
  733. '<input class="form-control" type="number" id="assoc_min0" min="1" max = "1" value =" " name = "assoc_min[]"></div>' +
  734. '<div class ="form-group col-md-2">' +
  735. '<label for="max">Máximo </label>' +
  736. '<input class="form-control" type="number" id="assoc_max" min="1" max = "" value =" " name = "assoc_max[]"></div></div>' +
  737. '<div class ="form-group">' +
  738. '<label for ="descripcion">Descripción de evaluación</label>' +
  739. '<textarea class="form-control" rows="2" aria-labelledby="descripcion" name="assoc_scales[]" cols="50" ></textarea></div></div>';
  740. fullDiv += div;
  741. } else {
  742. var dataValue = parseInt($('#Assoc_Scales').attr('data-value'));
  743. $('#assoc_maximum_score').val(json.criteria[0].maximum_score);
  744. var maximum = json.criteria[0].maximum_score;
  745. $('#Assoc_Scales').html(' ');
  746. for (var i = 0; i < scaleLength; i++) {
  747. div = '<div id="assoc_eval' + i.toString() + '">' +
  748. '<div class ="form-row">' +
  749. '<label for="header' + (i).toString() + '">Evaluación ' + (i + 1).toString() + '</label><br><br>' +
  750. '<input type="hidden" id="header' + i.toString() + '">' +
  751. '<div class="form-group col-md-8" >' +
  752. '<label for="title' + i.toString() + '">Nombre de Evaluación ' + (i + 1).toString() + '</label>' +
  753. '<input class="form-control" name="assoc_title[]" value ="' + json.scales[i].title + '"type="text" id="title' + i.toString() + '" placeholder ="Nombre de evaluacion" ></div>' +
  754. '<div class ="form-group col-md-2">' +
  755. '<label for="min' + i.toString() + '">Mínimo </label>' +
  756. '<input class="form-control" type="number" id="assoc_min' + i.toString() + '" min="1" max = "' + maximum + '" value ="' + json.scales[i].min_score + '"oninput ="changedMin(' + "'assoc_min" + i.toString() + "', '" + i.toString() + "', 'Assoc_Scales' " + ')" name = "assoc_min[]"></div>' +
  757. '<div class ="form-group col-md-2">' +
  758. '<label for="max' + i.toString() + '">Máximo </label>' +
  759. '<input class="form-control" type="number" id="assoc_max' + i.toString() + '" min="1" max = "' + maximum + '" value ="' + json.scales[i].max_score + '"oninput ="changedMax(' + "'assoc_max" + i.toString() + "', '" + i.toString() + "', 'Assoc_Scales' " + ')" name = "assoc_max[]"></div></div>' +
  760. '<div class ="form-group">' +
  761. '<label for ="descripcion' + i.toString() + '">Descripción de evaluación</label>' +
  762. '<textarea class="form-control" rows="2" aria-labelledby="descripcion' + i.toString() + '" name="assoc_scales[]" cols="50" >' + json.scales[i].description + '</textarea></div></div>';
  763. fullDiv += div;
  764. }
  765. }
  766. addOptions('Num_assoc_scale', 'assoc_maximum_score');
  767. $('#Assoc_Scales').append(fullDiv);
  768. $('#Assoc_Scales').attr('data-value', scaleLength);
  769. $('#Num_assoc_scale').val(scaleLength);
  770. $('#Num_assoc_scale').selectpicker('refresh')
  771. },
  772. 'json'
  773. );
  774. }
  775. </script>@stop
  776. @section('javascript')
  777. // --------------------------------------------------------------------------
  778. // Page load
  779. // --------------------------------------------------------------------------
  780. // Hide accordion panel contents by default
  781. $('.panel-group .panel-body').hide();
  782. $('#outcome-display').parent().hide();
  783. fetchCriterionForEditing();
  784. fetchObjectiveForSelect('outcomeGroup', 'objectiveGroup');
  785. // setCriterionStatus();
  786. // --------------------------------------------------------------------------
  787. // Functions
  788. // --------------------------------------------------------------------------
  789. $('#button-add-outcome').on('click', function(e) {
  790. // Prevent the default action of the clicked item. In this case that is submit
  791. e.preventDefault();
  792. return false;
  793. });
  794. $('#button-add-objective-assoc').on('click', function(e) {
  795. // Prevent the default action of the clicked item. In this case that is submit
  796. e.preventDefault();
  797. return false;
  798. });
  799. $('#button-add-outcome-assoc').on('click', function(e) {
  800. // Prevent the default action of the clicked item. In this case that is submit
  801. e.preventDefault();
  802. return false;
  803. });
  804. $('#button-add-objective').on('click', function(e) {
  805. // Prevent the default action of the clicked item. In this case that is submit
  806. e.preventDefault();
  807. return false;
  808. });
  809. // Fetch criterion info for editing
  810. // --------------------------------------------------------------------------
  811. // Events
  812. // --------------------------------------------------------------------------
  813. // When panel heading is clicked, toggle it
  814. $('.panel-group .panel-heading').on('click', function()
  815. {
  816. $(this).next().stop().slideToggle();
  817. })
  818. //$('#outcome[0]').on('change', function(){
  819. //fetchObjectiveForSelect(0);
  820. //$('.selectpicker').selectpicker('refresh');
  821. //})
  822. // When list item is clicked, load corresponding info
  823. // When list item is clicked, load corresponding info
  824. $('.selectpicker').on('change', function()
  825. {
  826. //alert($(this).find(':selected').val());
  827. $('.selectpicker').selectpicker('refresh');
  828. });
  829. @stop