No Description

annual-plans.blade.php 56KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341
  1. @extends('layouts.master-2')
  2. @section('navigation')
  3. @if (Auth::user()->role == 1)
  4. @include('local.managers.admins._navigation')
  5. @elseif(Auth::user()->role == 2)
  6. @include('local.managers.sCoords._new_navigation')
  7. @elseif(Auth::user()->role == 3)
  8. @include('local.managers.pCoords._new_navigation')
  9. @elseif(Auth::user()->role == 4)
  10. @include('local.professors._navigation')
  11. @endif
  12. @stop
  13. @section('main')
  14. {{-- TODO: look where to place this script.
  15. if placed inside .ready() or before it,
  16. an error that the function is not defined occurs. --}}
  17. {{-- TODO: no reconoce acentos --}}
  18. <div class="row">
  19. <div class="col-md-3">
  20. <a role="button" class="btn btn-secondary"
  21. href="{{ URL::action('AnnualPlansController@viewAllPlans', [$program->id]) }}">View Plans</a>
  22. <select class="form-control selectpicker" id="annual_plan" onchange="fetchInfo('annual_plan')">
  23. <option value='0'> Nothing Selected</option>
  24. @foreach ($annual_plans as $an_plan)
  25. <option value={{ $an_plan->id }}>Plan {{ $an_plan->academic_year }}</option>
  26. @endforeach
  27. </select>
  28. <br>
  29. <div id='allOutcomes'>
  30. </div>
  31. </div>
  32. <div class="col-md-9">
  33. <div id="expected-outcome" class="panel panel-default" data-semester-id="">
  34. <div class="panel-heading">
  35. <h3 class="panel-title">
  36. Expected Target Outcomes
  37. </h3>
  38. <input style="width: 150px;" min="0" class="form-control" type="number">
  39. </div>
  40. </div>
  41. <div id="outcome-display" class="panel panel-default">
  42. <div class="panel-heading">
  43. <h4 class=" panel-title">
  44. Primer Semestre 2019-2020
  45. </h4>
  46. </div>
  47. <div class="panel-body">
  48. <h3 id='criteria_for_courses'></h3>
  49. <p class="outcome-definition "></p>
  50. <div class="table-responsive">
  51. <table class="table table-striped table-condensed datatable"
  52. style="table-layout: fixed ; width : 100%" id='annual_plan_table'>
  53. <thead>
  54. <tr>
  55. <th>Objectives for courses</th>
  56. <th>Criteria per Course</th>
  57. <th>Transformative Actions to be Implemented</th>
  58. </tr>
  59. </thead>
  60. <tbody>
  61. </tbody>
  62. </table>
  63. </div>
  64. <h3 id='transformative_title'></h3>
  65. <div id='existing_transformative_actions'>
  66. <div class="table-responsive">
  67. <table class="table table-striped table-condensed datatable"
  68. style="table-layout: fixed ; width : 100%" id='transformative_action_table'>
  69. <thead>
  70. <tr id='transformative_columns'>
  71. <th>Title</th>
  72. <th>Description</th>
  73. <th>Type of Transformative Action</th>
  74. <th>Edit Or Delete</th>
  75. </tr>
  76. </thead>
  77. <tbody>
  78. </tbody>
  79. </table>
  80. </div>
  81. </div>
  82. <input type='hidden' id='typ_semester_outcome_id' value='0'>
  83. <div id='new_transformative_actions_to_outcome'>
  84. </div>
  85. <button class='btn btn-md btn-secondary button-add-transformative' id='add_trans_action'
  86. onclick='addTransToPlan()'>
  87. <span class='glyphicon glyphicon-plus'>
  88. </span>
  89. Add another Transformative Action
  90. </button>
  91. <hr>
  92. <button type="button" class="btn btn-primary" id="submit_modal" data-toggle="modal"
  93. data-target="#modal-submit" style="float: right">Submit Annual Plan</button>
  94. </div>
  95. </div>
  96. </div>
  97. <div class="col-md-9">
  98. <div class="no-outcome alert alert-info">
  99. <p>Select a Learning Outcome to view its information</p>
  100. </div>
  101. </div>
  102. </div>
  103. <div class="modal fade" id="modal-view-objective">
  104. <div class="modal-dialog modal-lg">
  105. <div class="modal-content">
  106. <div class="modal-header">
  107. <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
  108. aria-hidden="true">&times;</span></button>
  109. <h3 class="modal-title"></h3>
  110. </div>
  111. <div class="modal-body">
  112. </div>
  113. </div><!-- /.modal-content -->
  114. </div><!-- /.modal-dialog -->
  115. </div><!-- /.modal -->
  116. <div class="modal fade" id="modal-submit">
  117. <div class="modal-dialog modal-lg">
  118. <div class="modal-content">
  119. <div class="modal-header">
  120. <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span
  121. aria-hidden="true">&times;</span></button>
  122. <h3 class="modal-title">Are you sure you want to submit plan?</h3>
  123. </div>
  124. <div class="modal-body">
  125. Once submitted, you may not be able to edit the plan unless you ask for permission in the "Feedback"
  126. section.
  127. Make sure to check every learning outcome.
  128. </div>
  129. <div class="modal-footer">
  130. <button type="button" class="btn btn-primary" onclick='submit_annual_plan()'>Submit Annual Plan</button>
  131. <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
  132. </div>
  133. </div><!-- /.modal-content -->
  134. </div><!-- /.modal-dialog -->
  135. </div><!-- /.modal -->
  136. <script>
  137. function nextChar(c) {
  138. return String.fromCharCode(c.charCodeAt(0) + 1);
  139. }
  140. changed = false;
  141. $(document).ready(function() {
  142. // --------------------------------------------------------------------------
  143. // Page load
  144. // --------------------------------------------------------------------------
  145. $('#transformative_action_table').hide();
  146. // Hide accordion panel contents by default
  147. // $('.panel-group .panel-body').hide();
  148. $('.panel-group .panel-body').hide();
  149. $('#outcome-display').parent().hide();
  150. // --------------------------------------------------------------------------
  151. // Functions
  152. // --------------------------------------------------------------------------
  153. // --------------------------------------------------------------------------
  154. // Events
  155. // --------------------------------------------------------------------------
  156. // When list item is clicked, load corresponding info
  157. });
  158. // function CreateOrEdit(id){
  159. // //send data to the database
  160. // console.log(id);
  161. // annual_id = $("#"+id);
  162. // console.log(console.log(annual_id));
  163. // }
  164. //Submit Plan
  165. function submit_annual_plan() {
  166. annual_plan_id = $('#annual_plan').val();
  167. $.post("{{ URL::action('AnnualPlansController@submitAnnualPlan') }}", {
  168. annual_plan_id: annual_plan_id
  169. },
  170. function() {
  171. location.reload();
  172. })
  173. }
  174. //fetch after submit
  175. function fetchEverythingSubmitted(li) {
  176. var id = $(li).data('outcome-id');
  177. var name = $(li).data('outcome-name');
  178. var semester = $(li).data('semester-id');
  179. var annual_plan = $(li).data('annual-plan');
  180. var typ_semester_outcome_id = $(li).data('typ-semester-outcome-id');
  181. $('#expected-outcome').data('semester-id', semester);
  182. $('#typ_semester_outcome_id').val(typ_semester_outcome_id);
  183. $('#theChange').data('annual-plan', annual_plan);
  184. $.post(
  185. "{{ URL::action('AnnualPlansController@fetchTheAnnualPlan') }}", {
  186. id: id,
  187. semester: semester,
  188. typ_semester_outcome_id: typ_semester_outcome_id,
  189. program_id: program_id
  190. },
  191. function(array) {
  192. objectives = array.typ_objectives;
  193. courses = array.typ_courses;
  194. criteria_for_courses = array.courses_criteria;
  195. courses_transformatives = array.courses_transformative_actions;
  196. transformative_to_outcome = array.transformative_outcome;
  197. var nextLetter = "A";
  198. $('table').show();
  199. $('#outcome-display').parent().show();
  200. $('.no-outcome').parent().hide();
  201. $('#criteria_for_courses').html('Criteria for Courses Associated to ' + name);
  202. $('#transformative_title').html('Transformative Actions for ' + name);
  203. $('#outcome-display .panel-title').html(name);
  204. $('#submit_modal').hide();
  205. var expected_target = array.expected_target;
  206. $('#expected-outcome .form-control').val(expected_target.expected_target);
  207. $('#expected-outcome .form-control').prop('disabled', true);
  208. $('#add_trans_action').hide();
  209. annual_table = $('#annual_plan_table').DataTable();
  210. annual_table.clear();
  211. $.each(objectives, function(index, objective) {
  212. var objectivesHTML = '<div class="criterion-field" data-typ-objective-id = "' +
  213. objective.typ_semester_objective_id + '" onclick = "fetchObjectiveInfo(this)">';
  214. objectivesHTML += '<strong>' + nextLetter + '. ' + objective.text +
  215. '</strong></div>';
  216. courses_cell_html = '<div id="typ_semester_objective_id_' + objective
  217. .typ_semester_objective_id +
  218. '"></div>';
  219. transformative_cell_html = '<div id="transformative_typ_semester_objective_id_' +
  220. objective
  221. .typ_semester_objective_id +
  222. '"></div>'
  223. nextLetter = nextChar(nextLetter);
  224. //$('#annual_plan_table').children().eq(1).append(objectivesHTML);
  225. annual_table.row.add([
  226. objectivesHTML,
  227. courses_cell_html,
  228. transformative_cell_html
  229. ])
  230. });
  231. annual_table.draw();
  232. $.each(courses, function(index, course) {
  233. div_for_course_criteria = $('<div>', {
  234. 'id': 'criteria_for_course_' + course.typ_semester_course_id
  235. });
  236. div_for_course_transformative = $('<div>', {
  237. 'id': 'transformative_for_course_' + course.typ_semester_course_id
  238. });
  239. courseshtml = ' &#8226; [' + course.code + course.number + '] ' +
  240. course.name + '<br>'
  241. courseTAhtml = ' &#8226; [' + course.code + course.number + '] ' +
  242. course.name + '<br>';
  243. div_for_course_criteria.append(courseshtml);
  244. div_for_course_transformative.append(courseTAhtml);
  245. $('#typ_semester_objective_id_' + course.typ_semester_objective_id).append(
  246. div_for_course_criteria);
  247. $('#transformative_typ_semester_objective_id_' + course.typ_semester_objective_id)
  248. .append(
  249. div_for_course_transformative);
  250. })
  251. $.each(criteria_for_courses, function(index, criterion) {
  252. criteriaHTML = '\t&nbsp;&nbsp; ' + (index + 1) + ". " + criterion.name + '\n\n<br>';
  253. $('#criteria_for_course_' + criterion.typ_semester_course_id).append(criteriaHTML);
  254. })
  255. $.each(courses_transformatives, function(index, transformative_action) {
  256. transformativeHTML = '\t&nbsp;&nbsp; ' + (index + 1) + ". " + transformative_action
  257. .description +
  258. '\n\n<br>';
  259. $('#transformative_for_course_' + transformative_action.typ_semester_course_id).append(
  260. transformativeHTML);
  261. })
  262. //remove edit or delete column
  263. transformative_table = $('#transformative_action_table').DataTable();
  264. transformative_table.clear();
  265. $.each(transformative_to_outcome, function(index, transformative_action) {
  266. transformative_table.row.add([
  267. transformative_action.at_text,
  268. transformative_action.description,
  269. transformative_action.type_of_TA,
  270. 'cannot be editted'
  271. ])
  272. })
  273. transformative_table.draw();
  274. transformative_table.column(3).visible(false);
  275. //var typ_objective_id = json.typ_objective_id[objectives[objective].id].id;
  276. });
  277. }
  278. function fetchObjectiveInfo(objective_div) {
  279. typ_objective_id = $(objective_div).data('typ-objective-id');
  280. objective = $(objective_div).html();
  281. $.ajax({
  282. type: 'POST',
  283. url: "{{ URL::action('AnnualPlansController@fetchObjectiveInfo') }}",
  284. data: {
  285. typ_objective_id: typ_objective_id
  286. },
  287. success: function(courses) {
  288. $('.modal-title').html(objective);
  289. descriptions = '';
  290. $('.modal-body').empty();
  291. $.each(courses, function(index, course) {
  292. $('.modal-body').append('<h4>' + course.code + ' ' + course
  293. .number + ': ' +
  294. course.name + '</h4>')
  295. $('.modal-body').append(
  296. '<br><p>The following course is tied to these criteria: </p>'
  297. )
  298. $.each(course.criteria, function(index, criterion) {
  299. criterion_html =
  300. '<h5 style ="text-indent: 15px;">' + (index +
  301. 1) +
  302. '. ' + criterion.name + '</h5>';
  303. table = $('<table>', {
  304. 'style': 'margin-left:15px',
  305. //'id':'criteria-'+criterion.id,
  306. 'class': "table table-striped table-condensed table-bordered"
  307. });
  308. thead = $('<thead/>');
  309. tr = $('<tr/>');
  310. for (i = 0; i < criterion.num_scales; i++) {
  311. minimumScore = 1 + (i * (criterion.max_score /
  312. criterion
  313. .num_scales));
  314. maximumScore = (1 + i) * (criterion.max_score /
  315. criterion
  316. .num_scales);
  317. th = '<th>Scale ' + (i + 1) + '. (' +
  318. minimumScore + ' - ' +
  319. maximumScore + ')</th>';
  320. tr.append(th);
  321. }
  322. thead.append(tr);
  323. table.append(thead);
  324. tbody = $('<tbody>')
  325. tr_for_body = $('<tr>', {
  326. 'id': 'criterion_' + criterion.id
  327. })
  328. td_for_criteria = '';
  329. $.each(criterion.scales, function(index, scale) {
  330. td_for_criteria += '<td>' + scale
  331. .description + '</td>';
  332. });
  333. tr_for_body.html(td_for_criteria);
  334. tbody.append(tr_for_body);
  335. table.append(tbody);
  336. $('.modal-body').append(criterion_html);
  337. $('.modal-body').append(table);
  338. })
  339. $('.modal-body').append('<hr>')
  340. });
  341. $('#modal-view-objective').modal();
  342. },
  343. async: true
  344. });
  345. }
  346. function fetchEverything(li) {
  347. $('#close_button').click();
  348. var id = $(li).data('outcome-id');
  349. var name = $(li).data('outcome-name');
  350. var semester = $(li).data('semester-id');
  351. var annual_plan = $(li).data('annual-plan');
  352. var typ_semester_outcome_id = $(li).data('typ-semester-outcome-id');
  353. $('#expected-outcome').data('semester-id', semester);
  354. $('#typ_semester_outcome_id').val(typ_semester_outcome_id);
  355. $('#theChange').data('annual-plan', annual_plan);
  356. $.post(
  357. "../annual-plan-fetchTYP/{{ $program->id }}", {
  358. id: id,
  359. semester: semester,
  360. typ_semester_outcome_id: typ_semester_outcome_id,
  361. },
  362. function(json) {
  363. var table = $('#annual_plan_table').DataTable();
  364. table.clear();
  365. var optionsForTADict = {};
  366. var objectives = json.objectives;
  367. var courses = json.courses;
  368. var criteria = json.criteria;
  369. var selected_criteria = json.selected_criteria;
  370. var nextLetter = "A";
  371. if (courses) {
  372. $('table').show();
  373. $('#outcome-display').parent().show();
  374. $('.no-outcome').parent().hide();
  375. //Display title and definition
  376. $('#outcome-display .panel-title').html(name);
  377. var expected_target = json.expected_target;
  378. //check the data type of the expected target
  379. //if the expected_target var is an empty array, set default value
  380. $('#expected-outcome .form-control').val(expected_target.expected_target);
  381. $('#criteria_for_courses').html('Criteria for Courses Associated to ' + name);
  382. $('#transformative_title').html('Transformative Actions for ' + name);
  383. //Empty table
  384. table.clear();
  385. var annual_plan = json.annual_plan.id;
  386. for (objective in objectives) {
  387. var typ_objective_id = json.typ_objective_id[objectives[objective].id].id;
  388. var objectivesHTML =
  389. '<div class="criterion-field" data-typ-objective-id = "' +
  390. typ_objective_id + '" onclick = "fetchObjectiveInfo(this)">';
  391. var courseshtml = '';
  392. var courseTAhtml = '';
  393. var criteriaHTML = '';
  394. objectivesHTML += '<strong>' + nextLetter + '. ' + objectives[objective]
  395. .text +
  396. '</strong></div>';
  397. // courseshtml += "<strong>Objective "+nextLetter+"</strong>";
  398. // courseshtml += '<ul>';
  399. criteriaHTML += "<strong>Objective " + nextLetter + "</strong>";
  400. //criteriaHTML+= '<ol>';
  401. //var typ_objective_id = json.typ_objective_id[objectives[objective].id].id;
  402. nextLetter = nextChar(nextLetter);
  403. for (course in courses[objectives[objective].id]) {
  404. courseshtml += ' &#8226; ' + courses[objectives[objective].id][course]
  405. .code + courses[objectives[objective].id][course].number + ' ' +
  406. courses[objectives[objective].id][course].name + '<br>'
  407. courseTAhtml += ' &#8226; ' + courses[objectives[objective].id][course]
  408. .code + courses[objectives[objective].id][course].number + ' ' +
  409. courses[objectives[objective].id][course].name + '<br>'
  410. $divForEach = $('<div/>', {
  411. 'id': 'objective-' + objectives[objective].id
  412. });
  413. $divForSelects = $('<div/>', {
  414. 'id': 'forObjective-' + objectives[objective].id +
  415. '-course-' + courses[
  416. objectives[objective].id][course].typ_course_id,
  417. 'data-amount-select': '0',
  418. 'class': 'form-group',
  419. 'data-annual-plan': json.annual_plan.id
  420. });
  421. options = "<option value = '0' >Nothing Selected</option>"
  422. for (criterion in criteria[objectives[objective].id]) {
  423. options += "<option value='" + criteria[objectives[objective].id][
  424. criterion
  425. ].id +
  426. "'>" + criteria[objectives[objective].id][criterion].name +
  427. "</option>";
  428. }
  429. var $button = $('<button/>', {
  430. 'type': 'button',
  431. 'class': 'btn btn-secondary',
  432. 'onclick': 'addCriteriaTest("forObjective-' + objectives[
  433. objective].id +
  434. "-course-" + courses[objectives[objective].id][course]
  435. .typ_course_id +
  436. '", "' + objectives[objective].id + "-course-" +
  437. courses[objectives[
  438. objective].id][course].typ_course_id + '", ' +
  439. courses[objectives[
  440. objective].id][course].typ_course_id + ', null, "' +
  441. options + '")'
  442. });
  443. $button.append("+ Add criteria");
  444. $divForEach.append($divForSelects);
  445. $divForEach.append("<br>")
  446. $divForEach.append($button);
  447. $divForTA = $('<div/>', {
  448. 'id': 'objectiveTA-' + objectives[objective].id
  449. });
  450. $divForTASelects = $('<div/>', {
  451. 'id': 'forTA-objective-' + objectives[objective].id +
  452. '-course-' + courses[
  453. objectives[objective].id][course].typ_course_id,
  454. 'class': 'form-group',
  455. 'data-amount-ta': '0'
  456. });
  457. var optionsForTa = "<option value = '0'>Nothing Selected</option>";
  458. transformativeDefault = json.transformative_actions;
  459. optionsForTa += "<optgroup label='Default'>";
  460. for (trans in transformativeDefault) {
  461. optionsForTa += "<option value='" + transformativeDefault[trans]
  462. .id + "'>" +
  463. transformativeDefault[trans].at_text + "</option> ";
  464. }
  465. optionsForTa += '</optgroup>';
  466. course_id = courses[objectives[objective].id][course].id
  467. transformativeDefault = json.custom_transformative[objectives[objective]
  468. .id][course_id];
  469. if (transformativeDefault != undefined) {
  470. optionsForTa += "<optgroup label = 'Custom'>";
  471. for (trans in transformativeDefault) {
  472. optionsForTa += "<option value='" + transformativeDefault[trans]
  473. .ta_id + "'>" +
  474. transformativeDefault[trans].at_text + "</option> ";
  475. }
  476. }
  477. typ_course_id = courses[objectives[objective].id][course].typ_course_id
  478. var $buttonTA = $('<button/>', {
  479. 'type': 'button',
  480. 'class': 'btn btn-secondary',
  481. 'onclick': 'addTAselect("' + optionsForTa +
  482. '", "forTA-objective-' +
  483. objectives[objective].id + '-course-' + courses[
  484. objectives[objective]
  485. .id][course].typ_course_id + '", ' + annual_plan +
  486. ', ' +
  487. objectives[objective].id + ', ' + typ_course_id + ', 0)'
  488. });
  489. $buttonTA.append("+ Add TA");
  490. typ_course_id = courses[objectives[objective].id][course].typ_course_id
  491. optionsForTADict[typ_course_id] = optionsForTa;
  492. $divForTA.append($divForTASelects);
  493. $divForTA.append('<br>');
  494. $divForTA.append($buttonTA)
  495. courseshtml += $divForEach[0].innerHTML + "<br><br>";
  496. courseTAhtml += $divForTA[0].innerHTML + "<br><br>";
  497. }
  498. /*$divForTA = $('<div/>',{
  499. 'id':'objectiveTA-'+objectives[objective].id
  500. });
  501. $divForTASelects = $('<div/>', {
  502. 'id': 'forTA-objective-'+objectives[objective].id,
  503. 'class':'form-group',
  504. 'data-amount-ta':'0'
  505. });
  506. var optionsForTa = "<option value = '0'>Nothing Selected</option>";
  507. transformativeDefault = json.transformative_actions;
  508. optionsForTa+= "<optgroup label='Default'>";
  509. for(trans in transformativeDefault){
  510. optionsForTa+= "<option value='"+transformativeDefault[trans].id+"'>"+transformativeDefault[trans].at_text+"</option> ";
  511. }
  512. optionsForTa+='</optgroup>';
  513. transformativeDefault = json.custom_transformative[objectives[objective].id];
  514. if(transformativeDefault!= undefined){
  515. optionsForTa+="<optgroup label = 'Custom'>";
  516. for(trans in transformativeDefault){
  517. optionsForTa+= "<option value='"+transformativeDefault[trans].id+"'>"+transformativeDefault[trans].at_text+"</option> ";
  518. }
  519. }
  520. var $buttonTA = $('<button/>', {
  521. 'type': 'button',
  522. 'class': 'btn btn-secondary',
  523. 'onclick': 'addTAselect("'+optionsForTa+'", "forTA-objective-'+objectives[objective].id+'", '+annual_plan+', '+objectives[objective].id+', '+typ_objective_id+', 0)'
  524. });
  525. $buttonTA.append("+ Add TA");
  526. $divForTA.append($divForTASelects);
  527. $divForTA.append('<br>');
  528. $divForTA.append($buttonTA)
  529. */
  530. table.row.add([
  531. objectivesHTML,
  532. courseshtml,
  533. courseTAhtml
  534. ]);
  535. table.draw();
  536. for (course in courses[objectives[objective].id]) {
  537. typ_course_id = courses[objectives[objective].id][course].typ_course_id
  538. if (json.annual_plans_transformative[objectives[objective].id][
  539. typ_course_id
  540. ].length) {
  541. for (i = 0; i < json.annual_plans_transformative[objectives[
  542. objective].id][
  543. typ_course_id
  544. ].length; i++) {
  545. selected_ta = json.annual_plans_transformative[objectives[
  546. objective].id][
  547. typ_course_id
  548. ][i].trans_id;
  549. addTAselect(optionsForTADict[typ_course_id],
  550. "forTA-objective-" + objectives[
  551. objective].id + '-course-' + typ_course_id,
  552. annual_plan, objectives[
  553. objective].id, typ_course_id, selected_ta);
  554. }
  555. } else {
  556. $('#')
  557. addTAselect(optionsForTADict[typ_course_id], "forTA-objective-" +
  558. objectives[
  559. objective].id + '-course-' + typ_course_id, annual_plan,
  560. objectives[
  561. objective].id, typ_course_id, 0);
  562. }
  563. if (json.selected_criteria[objectives[objective].id][typ_course_id]
  564. .length) {
  565. for (i = 0; i < json.selected_criteria[objectives[objective].id][
  566. typ_course_id
  567. ]
  568. .length; i++) {
  569. addCriteriaTest("forObjective-" + objectives[objective].id +
  570. "-course-" +
  571. typ_course_id, "" + objectives[objective].id +
  572. "-course-" +
  573. typ_course_id, "" + json.selected_criteria[objectives[
  574. objective].id][
  575. typ_course_id
  576. ][i].typ_course_id + "", i, options);
  577. $('#criteriaFor' + objectives[objective].id + "-course-" +
  578. typ_course_id + '_' +
  579. i).val(json.selected_criteria[objectives[objective].id][
  580. typ_course_id
  581. ][
  582. i
  583. ].criteria_id);
  584. $('#criteriaFor' + objectives[objective].id + "-course-" +
  585. typ_course_id + '_' +
  586. i).data('old-criteria', json.selected_criteria[
  587. objectives[objective].id]
  588. [typ_course_id][i].criteria_id);
  589. $('#criteriaFor' + objectives[objective].id + "-course-" +
  590. typ_course_id + '_' +
  591. i).selectpicker('refresh');
  592. } // Update display
  593. } else {
  594. addCriteriaTest("forObjective-" + objectives[objective].id +
  595. "-course-" +
  596. typ_course_id, "" + objectives[objective].id + "-course-" +
  597. typ_course_id +
  598. "", "" + typ_course_id + "", 0, options);
  599. $('#criteriaFor' + objectives[objective].id + "-course-" +
  600. typ_course_id + '_0')
  601. .val(0);
  602. $('#criteriaFor' + objectives[objective].id + "-course-" +
  603. typ_course_id + '_0')
  604. .data('old-criteria', 0);
  605. $('#criteriaFor' + objectives[objective].id + "-course-" +
  606. typ_course_id + '_0')
  607. .selectpicker('refresh');
  608. }
  609. }
  610. }
  611. table.draw();
  612. //transformative actions in outcome
  613. GlobalTransCategories = json.categories;
  614. trans_table = $('#transformative_action_table').DataTable();
  615. trans_table.clear();
  616. if (json.transformative_actions_for_outcome.length) {
  617. //trans_table.show()
  618. $.each(json.transformative_actions_for_outcome, function(index, ta) {
  619. title = ta.at_text;
  620. description = ta.description;
  621. category = ta.type_of_TA;
  622. inputEdit = $('<input>', {
  623. 'type': 'button',
  624. 'class': 'btn btn-secondary',
  625. 'onclick': 'editTa(this,' + ta.trans_id + ')',
  626. 'id': 'edit_button_for_ta_' + ta.trans_id,
  627. 'value': 'Edit'
  628. }).html('Edit');
  629. inputDelete = $('<input>', {
  630. 'type': 'button',
  631. 'class': 'btn btn-primary',
  632. 'style': 'display: inline',
  633. 'onclick': 'deleteTAFromOutcome(this,' + ta
  634. .trans_id + ')',
  635. 'value': 'Delete'
  636. }).html('Delete');
  637. div = $('<div>');
  638. div.append(inputEdit);
  639. div.append(inputDelete);
  640. trans_table.row.add([
  641. title,
  642. description,
  643. category,
  644. div.html()
  645. ])
  646. })
  647. }
  648. } else {
  649. $('table').hide();
  650. }
  651. trans_table.draw();
  652. //transformative actions in outcome
  653. },
  654. 'json'
  655. );
  656. }
  657. GlobalTransCategories = '';
  658. function editTa(input, trans_id) {
  659. $('#close_button').click()
  660. addTransToPlan();
  661. tableRow = $(input).parent().parent();
  662. title = tableRow.children().eq(0).html();
  663. description = tableRow.children().eq(1).html();
  664. type_of_TA = tableRow.children().eq(2).html();
  665. $('#at_text').val(title);
  666. $('#type_of_ta').val(type_of_TA);
  667. $('#type_of_ta').selectpicker('refresh');
  668. $('#description').val(description);
  669. $('#saveTrans').attr('onclick', 'saveTransToOutcome(' + trans_id + ')');
  670. }
  671. function addTransToPlan() {
  672. $('#saveTrans').attr('onclick', 'saveTransToOutcome()');
  673. div_for_name = $('<div>', {
  674. 'class': 'form-group',
  675. });
  676. input_name = $('<input>', {
  677. 'class': 'form-control',
  678. 'name': 'at_text',
  679. 'id': 'at_text'
  680. });
  681. div_for_name.html("<label> Name</label>");
  682. div_for_name.append(input_name);
  683. $('#new_transformative_actions_to_outcome').append(div_for_name);
  684. div_for_category = $('<div>', {
  685. 'class': 'form-group'
  686. }).html('<label>Type of Transformative Action</label>');
  687. select_for_category = $('<select>', {
  688. 'name': 'type_of_ta',
  689. 'id': 'type_of_ta',
  690. 'class': 'form-control selectpicker',
  691. 'onchange': 'checkIfNew(this)'
  692. }).html(GlobalTransCategories);
  693. div_for_category.append(select_for_category);
  694. $('#new_transformative_actions_to_outcome').append(div_for_category);
  695. select_for_category.selectpicker('refresh');
  696. div_description = $('<div>', {
  697. 'class': 'form-group',
  698. }).html('<label> Description</label>');
  699. textarea = $('<textarea>', {
  700. 'class': 'form-control',
  701. 'id': 'description',
  702. 'name': 'description',
  703. 'rows': '10'
  704. });
  705. div_description.append(textarea);
  706. closeButton = $('<button/>', {
  707. 'class': 'btn btn-secondary',
  708. 'type': "button",
  709. 'id': 'close_button',
  710. 'style': 'float: right',
  711. 'onclick': '$(".editting_action").show(); $(".button-add-transformative").show(); $("#new_transformative_actions_to_outcome").html(" ")'
  712. }).html('Close');
  713. saveButton = $('<button/>', {
  714. 'class': 'btn btn-primary',
  715. 'id': 'saveTrans',
  716. 'type': 'button',
  717. 'style': 'float:right; display:inline-block;',
  718. 'onclick': "saveTransToOutcome()"
  719. }).html('Save');
  720. $('#new_transformative_actions_to_outcome').append(div_description);
  721. $('#new_transformative_actions_to_outcome').append(closeButton);
  722. $('#new_transformative_actions_to_outcome').append(saveButton)
  723. $('#new_transformative_actions_to_outcome').append("<br>")
  724. $('.button-add-transformative').hide();
  725. }
  726. function saveTransToOutcome(edit = null) {
  727. is_new = false;
  728. is_custom = 0;
  729. if ($('.new_type').length !== 0) {
  730. category = $('#new_type').val();
  731. is_custom = 1;
  732. is_new = true;
  733. } else {
  734. is_custom = parseInt($('#type_of_ta').find('option:selected').data('is-custom'));
  735. category = $('#type_of_ta').val();
  736. }
  737. name = $('#at_text').val();
  738. textarea = $('#description').val();
  739. $typ_semester_outcome_id = $('#typ_semester_outcome_id').val();
  740. $.post(
  741. "{{ URL::action('TransformativeActionsController@createTAForOutcome') }}", {
  742. edit: edit,
  743. is_custom: is_custom,
  744. category: category,
  745. name: name,
  746. description: textarea,
  747. is_new: is_new,
  748. program_id: {{ $program->id }},
  749. typ_semester_outcome_id: $typ_semester_outcome_id
  750. },
  751. function(transformative_action_id) {
  752. newTitle = $('#at_text').val();
  753. new_description = $('#description').val();
  754. new_category = $('#type_of_ta').val();
  755. $('#close_button').click();
  756. if ($('#edit_button_for_ta_' + transformative_action_id).length === 0) {
  757. inputEdit = $('<input>', {
  758. 'type': 'button',
  759. 'class': 'btn btn-secondary',
  760. 'onclick': 'editTa(this,' + transformative_action_id + ')',
  761. 'id': 'edit_button_for_ta_' + transformative_action_id,
  762. 'value': 'Edit'
  763. });
  764. inputDelete = $('<input>', {
  765. 'type': 'button',
  766. 'class': 'btn btn-primary',
  767. 'style': 'display: inline',
  768. 'onclick': 'deleteTAFromOutcome(this,' + transformative_action_id +
  769. ')',
  770. 'value': 'Delete'
  771. })
  772. div = $('<div>');
  773. div.append(inputEdit);
  774. div.append(inputDelete);
  775. trans_table = $('#transformative_action_table').DataTable();
  776. trans_table.row.add([
  777. newTitle,
  778. new_description,
  779. category,
  780. div.html()
  781. ]).draw();
  782. } else {
  783. tableRow = $('#edit_button_for_ta_' + transformative_action_id).parent()
  784. .parent();
  785. tableRow.children().eq(0).html(newTitle);
  786. tableRow.children().eq(1).html(new_description);
  787. tableRow.children().eq(2).html(category);
  788. }
  789. }
  790. );
  791. }
  792. function deleteTAFromOutcome(delete_button, trans_id) {
  793. $.post(" {{ URL::action('TransformativeActionsController@deleteTaFromOutcome') }}", {
  794. trans_id: trans_id
  795. },
  796. function() {
  797. $('#edit_button_for_ta_' + trans_id).parent().parent().remove();
  798. }
  799. )
  800. }
  801. function checkIfNew(select) {
  802. if ($(select).val() == "new") {
  803. var new_div = $('<div/>', {
  804. 'class': 'form-group new_type'
  805. }).html("<label>New Type </label>");
  806. var input = $("<input/>", {
  807. 'type': 'text',
  808. 'id': 'new_type',
  809. 'name': "new_type",
  810. 'class': 'form-control'
  811. });
  812. new_div.append(input);
  813. $(select).parent().parent().after(new_div)
  814. } else {
  815. $(select).parent().parent().next('.new_type').remove();
  816. }
  817. }
  818. function posttoTransAnnual(annual_id, selectTransId, typ_course_id) {
  819. ta = $("#" + selectTransId).val();
  820. old_ta = $("#" + selectTransId).data('old-TA');
  821. if (ta == "0") return;
  822. $.post("../annual-plan-postTA", {
  823. annual_id: annual_id,
  824. TA_id: ta,
  825. typ_course_id: typ_course_id,
  826. old_ta: old_ta
  827. },
  828. function(message) {
  829. $("#" + selectTransId).data('old-TA', ta);
  830. }
  831. )
  832. }
  833. function addTAselect(options, master_div, annual_plan_id, objective_id, typ_course_id,
  834. selected_ta) {
  835. var $div = $('<div/>', {
  836. 'class': 'form-group '
  837. });
  838. counter = parseInt($('#' + master_div).data('amount-ta'));
  839. var selectTA = $('<select/>', {
  840. 'class': "selectpicker form-control",
  841. 'data-live-search': 'true',
  842. 'data-old-TA': '0',
  843. 'data-width': '180px',
  844. 'id': 'transformativeForObjective' + master_div + '_' + counter,
  845. 'onchange': 'posttoTransAnnual(' + annual_plan_id +
  846. ', "transformativeForObjective' +
  847. master_div +
  848. '_' + counter + '", ' + typ_course_id + ')'
  849. });
  850. selectTA.append(options);
  851. selectTA.appendTo($div);
  852. selectTA.val(selected_ta);
  853. selectTA.data('old-TA', selected_ta);
  854. selectTA.selectpicker('refresh');
  855. $span = $('<span/>', {
  856. 'id': 'close',
  857. 'onclick': ' postDeleteTA(' + annual_plan_id + ', "transformativeForObjective' +
  858. master_div +
  859. '_' +
  860. counter + '", ' + typ_course_id +
  861. '); this.parentNode.parentNode.removeChild(this.parentNode);return false;'
  862. }).html('x');
  863. $span.appendTo($div);
  864. $div.append("<br><br>");
  865. $('#' + master_div).append("<br>");
  866. $div.appendTo($('#' + master_div));
  867. $('#' + master_div).data('amount-ta', counter + 1);
  868. }
  869. function postDeleteTA(annual_id, selectTransId, typ_course_id) {
  870. ta = $("#" + selectTransId).val();
  871. if (ta == "0") return;
  872. $.post("../annual-plan-deleteTA", {
  873. annual_id: annual_id,
  874. TA_id: ta,
  875. typ_id: typ_course_id,
  876. });
  877. parent = $("#" + selectTransId).parent().parent().parent();
  878. counter = parseInt(parent.data('amount-ta'));
  879. parent.data('amount-ta', counter - 1);
  880. }
  881. function postToAnnualPlans(typ_course_id, criteria_select) {
  882. var criteria = $('#' + criteria_select).val();
  883. var oldCriteria = $('#' + criteria_select).data('old-criteria');
  884. var criteriaNode = document.getElementById(criteria_select).parentNode.parentNode.parentNode;
  885. var annual = criteriaNode.dataset.annualPlan;
  886. $.post("../annual-plan-postOnChange", {
  887. criteria: criteria,
  888. typ_course_id: typ_course_id,
  889. annual_plan: annual,
  890. old_criteria: oldCriteria
  891. },
  892. function(message) {
  893. if (message == "Duplicate entry, please choose another criteria.") {
  894. alert(message)
  895. } else {
  896. $('#' + criteria_select).data('old-criteria', criteria);
  897. changed = true;
  898. }
  899. })
  900. }
  901. function addCriteriaTest(div, new_id_for_select, typ_course_id, i = null, options) {
  902. if (!i) amount_select = $('#' + div).data("amount-select");
  903. else amount_select = i;
  904. $select = $('<select/>', {
  905. 'class': "selectpicker form-control",
  906. 'data-live-search': 'true',
  907. 'data-old-criteria': '0',
  908. 'data-width': '180px',
  909. 'id': 'criteriaFor' + new_id_for_select + '_' + amount_select,
  910. 'onchange': 'postToAnnualPlans(' + typ_course_id + ', "criteriaFor' +
  911. new_id_for_select + '_' +
  912. amount_select + '")'
  913. })
  914. var $div = $('<div/>', {
  915. 'id': 'courseSelect_' + new_id_for_select + '_' + amount_select,
  916. 'class': 'form-group '
  917. });
  918. $select.append(options);
  919. $select.appendTo($div);
  920. $span = $('<span/>', {
  921. 'id': 'close',
  922. 'onclick': ' postDelete(' + typ_course_id + ', "criteriaFor' + new_id_for_select +
  923. '_' +
  924. amount_select +
  925. '"); this.parentNode.parentNode.removeChild(this.parentNode);return false;'
  926. }).html('x');
  927. $div.append($span);
  928. $div.append("<br><br>")
  929. $('#' + div).append("<br>");
  930. $div.appendTo($("#" + div));
  931. $select.selectpicker('refresh');
  932. $("#" + div).data("amount-select", amount_select + 1);
  933. }
  934. $('#allOutcomes').hide();
  935. function postDelete(typ_course_id, criteria_select) {
  936. var criteria = $('#' + criteria_select).val();
  937. var oldCriteria = $('#' + criteria_select).data('old-criteria');
  938. var criteriaNode = document.getElementById(criteria_select).parentNode.parentNode.parentNode;
  939. var annual = criteriaNode.dataset.annualPlan;
  940. $.post("../annual-plan-deleteCriteria", {
  941. criteria: criteria,
  942. typ_course_id: typ_course_id,
  943. annual_plan: annual,
  944. old_criteria: oldCriteria
  945. });
  946. }
  947. function fetchInfo(id) {
  948. annual_id = $("#" + id).val();
  949. program_id = {{ $program->id }};
  950. $.post("{{ URL::action('AnnualPlansController@fetchInfo') }}", {
  951. id: annual_id,
  952. program_id: program_id
  953. },
  954. function(json) {
  955. div = $('<div/>', {
  956. 'class': 'list-group',
  957. 'id': 'list'
  958. });
  959. var onclick = "";
  960. //TODO CHange this
  961. if (json.annual_plans.is_submitted!=2 )
  962. onclick = "fetchEverything(this)";
  963. else onclick = "fetchEverything(this)";
  964. if (json.outcomes.first) {
  965. header5 = $('<h5/>', {
  966. 'style': "padding-left: 10px"
  967. }).html("First Semester");
  968. div.append(header5);
  969. list = '';
  970. for (outcome in json.outcomes.first) {
  971. list +=
  972. "<li style='padding-left: 25px' onclick = '" + onclick +
  973. "' data-annual-plan = '" +
  974. json.annual_plans.id + "' data-typ-semester-outcome-id ='" + json
  975. .outcomes.first[
  976. outcome].typ_semester_outcome_id + "' data-semester-id = '" + json
  977. .allSemesterOrder
  978. .first.id +
  979. "' data-outcome-id='" + json.outcomes.first[outcome].id +
  980. "' data-outcome-name ='" +
  981. json
  982. .outcomes.first[outcome].name + "' class='list-group-item' >" + json
  983. .outcomes.first[
  984. outcome]
  985. .name + " </li>";
  986. }
  987. div.append(list);
  988. }
  989. if (json.outcomes.second) {
  990. header4 = $('<h5/>', {
  991. 'style': "padding-left: 10px"
  992. }).html("Second Semester");
  993. div.append(header4);
  994. list = '';
  995. for (outcome in json.outcomes.second) {
  996. list +=
  997. "<li style='padding-left: 25px' onclick = '" + onclick +
  998. "' data-annual-plan = '" +
  999. json.annual_plans.id + "' data-typ-semester-outcome-id ='" + json
  1000. .outcomes.second[
  1001. outcome].typ_semester_outcome_id + "'data-semester-id = '" + json
  1002. .allSemesterOrder
  1003. .second.id +
  1004. "' data-outcome-id='" + json.outcomes.second[outcome].id +
  1005. "' data-outcome-name ='" +
  1006. json
  1007. .outcomes.second[outcome].name + "' class='list-group-item' >" + json
  1008. .outcomes
  1009. .second[
  1010. outcome].name + " </li>";
  1011. }
  1012. div.append(list);
  1013. }
  1014. html = div[0].innerHTML;
  1015. $("#allOutcomes").html(div[0].innerHTML);
  1016. $("#allOutcomes").show();
  1017. },
  1018. "json",
  1019. );
  1020. }
  1021. function deleteObjective(objectiveSelectDiv, closeObj) {
  1022. $('#' + objectiveSelectDiv).remove();
  1023. $('#' + closeObj).remove();
  1024. $('#' + div).data("amount-select", $('#' + div).data("amount-select") - 1);
  1025. }
  1026. </script>
  1027. @stop
  1028. @section('included-js')
  1029. @include('global._datatables_js')
  1030. @stop