term_reference_tree.js 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354
  1. (function($) {
  2. Drupal.behaviors.termReferenceTree = {
  3. attach: function(context, settings) {
  4. // Bind the term expand/contract button to slide toggle the list underneath.
  5. $('.term-reference-tree-button', context).click(function() {
  6. $(this).toggleClass('term-reference-tree-collapsed');
  7. $(this).siblings('ul').slideToggle('fast');
  8. });
  9. // An expand all button (unimplemented)
  10. /*
  11. $('.expandbutton').click(function() {
  12. $(this).siblings('.term-reference-tree-button').trigger('click');
  13. });
  14. */
  15. $('.term-reference-tree', context).each(function() {
  16. // On page load, check whether the maximum number of choices is already selected.
  17. // If so, disable the other options.
  18. var tree = $(this);
  19. checkMaxChoices(tree, false);
  20. $(this).find('input[type=checkbox]').change(function() {
  21. checkMaxChoices(tree, $(this));
  22. });
  23. //On page load, check if the user wants a track list. If so, add the
  24. //currently selected items to it.
  25. if($(this).hasClass('term-reference-tree-track-list-shown')) {
  26. var track_list_container = $(this).find('.term-reference-tree-track-list');
  27. var tracklist_is_orderable = track_list_container.is('.order-list');
  28. if(tracklist_is_orderable){
  29. track_list_container.sortable({
  30. update: function(event, ui) {
  31. // console.log('sort update : event', event);
  32. // console.log('sort update : ui', ui);
  33. $.each(event.target.children, function(index, val) {
  34. var $item = $(val),
  35. // event.target = ul.list
  36. // ui.item = li.track-item
  37. control_id = $item.data('control_id'),
  38. $hiddenInput = $('#'+control_id).parent('.form-item').next('input[type=hidden]');
  39. // $hiddenInput.attr('value', $item.index());
  40. $hiddenInput.val($item.index());
  41. });
  42. },
  43. });
  44. }
  45. //Var to track whether using checkboxes or radio buttons.
  46. var input_type =
  47. ( $(this).has('input[type=checkbox]').size() > 0 ) ? 'checkbox' : 'radio';
  48. //Find all the checked controls.
  49. var checked_controls = $(this).find('input[type=' + input_type + ']:checked');
  50. //Get their labels.
  51. var labels = checked_controls.next();
  52. var label_element;
  53. //get delta
  54. if(tracklist_is_orderable){
  55. var weights = checked_controls.parent('.form-item').next('input[type=hidden]');
  56. }
  57. //For each label of the checked boxes, add item to the track list.
  58. labels.each(function(index) {
  59. label_element = $(labels[index]);
  60. delta = tracklist_is_orderable ? $(weights[index]).val() : -1;
  61. addItemToTrackList(
  62. track_list_container, //Where to add new item.
  63. label_element.html(), //Text of new item.
  64. $(label_element).attr('for'), //Id of control new item is for.
  65. input_type, //checkbox or radio
  66. delta //delta
  67. );
  68. }); //End labels.each
  69. //Show "nothing selected" message, if needed.
  70. showNothingSelectedMessage(track_list_container);
  71. //Event - when an element on the track list is clicked on:
  72. // 1. Delete it.
  73. // 2. Uncheck the associated checkbox.
  74. //The event is bound to the track list container, not each element.
  75. $(track_list_container).click(function(event){
  76. //Remove the "nothing selected" message if showing - add it later if needed.
  77. //removeNothingSelectedMessage(track_list_container);
  78. var event_target = $(event.target);
  79. var event_parent_list = event_target.parent('li');
  80. var control_id = event_parent_list.data('control_id');
  81. // console.log('event', event);
  82. // console.log('event_target.parent("li")', event_target.parent('li'));
  83. // console.log('control_id', control_id);
  84. // console.log('event_target.is(term-reference-tree-delete)', event_target.is('term-reference-tree-delete'));
  85. if(event_target.is('.term-reference-tree-button-delete') && control_id) {
  86. event_parent_list.remove();
  87. var checkbox = $('#' + control_id);
  88. checkbox.removeAttr('checked');
  89. checkMaxChoices(tree, checkbox);
  90. //Show "nothing selected" message, if needed.
  91. showNothingSelectedMessage(track_list_container);
  92. }
  93. });
  94. //Change track list when controls are clicked.
  95. $(this).find('.form-' + input_type).change(function(event){
  96. //Remove the "nothing selected" message if showing - add it later if needed.
  97. removeNothingSelectedMessage(track_list_container);
  98. var event_target = $(event.target);
  99. var control_id = event_target.attr('id');
  100. if ( event_target.attr('checked') ) {
  101. //Control checked - add item to the track list.
  102. label_element = event_target.next();
  103. addItemToTrackList(
  104. track_list_container, //Where to add new item.
  105. label_element.html(), //Text of new item.
  106. $(label_element).attr('for'), //Id of control new item is for.
  107. input_type, //checkbox or radio
  108. -1 // delta
  109. );
  110. }
  111. else {
  112. //Checkbox unchecked. Remove from the track list.
  113. $('#' + control_id + '_list').remove();
  114. }
  115. //Show "nothing selected" message, if needed.
  116. showNothingSelectedMessage(track_list_container);
  117. }); //End process checkbox changes.
  118. } //End Want a track list.
  119. //On page load, check if the user wants a cascading selection.
  120. if($(this).hasClass('term-reference-tree-cascading-selection')) {
  121. //Check children when checkboxes are clicked.
  122. $(this).find('.form-checkbox').change(function(event) {
  123. var event_target = $(event.target);
  124. var control_id = event_target.attr('id');
  125. var children = event_target.parent().next().children().children('div.form-type-checkbox').children('input[id^="' + control_id + '-children"]');
  126. if(event_target.attr('checked')) {
  127. //Checkbox checked - check children if none were checked.
  128. if(!$(children).filter(':checked').length) {
  129. $(children).click().trigger('change');
  130. }
  131. }
  132. else {
  133. //Checkbox unchecked. Uncheck children if all were checked.
  134. if(!$(children).not(':checked').length) {
  135. $(children).click().trigger('change');
  136. }
  137. }
  138. });
  139. //End process checkbox changes.
  140. } //End Want a cascading checking.
  141. });
  142. }
  143. };
  144. /**
  145. * Add a new item to the track list.
  146. * If more than one item can be selected, the new item is positioned to
  147. * match the order of the terms in the checkbox tree.
  148. *
  149. * @param track_list_container Container where the new item will be added.
  150. *
  151. * @param item_text Text of the item to add.
  152. *
  153. * @param control_id Id of the checkbox/radio control the item matches.
  154. *
  155. * @param control_type Control type - 'checkbox' or 'radio'.
  156. */
  157. function addItemToTrackList(track_list_container, item_text, control_id, control_type, delta) {
  158. // console.log('addItemToTrackList');
  159. var new_item = $('<li class="track-item" delta="'+ delta +'"><div class="term-reference-tree-button-move"></div>' + item_text + '<div class="term-reference-tree-button-delete"></div></li>');
  160. new_item.data('control_id', control_id);
  161. //Add an id for easy finding of the item.
  162. new_item.attr('id', control_id + '_list');
  163. //Process radio controls - only one item can be selected.
  164. if ( control_type == 'radio') {
  165. //Find the existing element on the track list, if there is one.
  166. var current_items = track_list_container.find('li');
  167. //If there are no items on the track list, add the new item.
  168. if ( current_items.size() == 0 ) {
  169. track_list_container.append(new_item);
  170. }
  171. else {
  172. //There is an item on the list.
  173. var current_item = $(current_items.get(0));
  174. //Is the item we want to add different from what is there?
  175. if ( current_item.data('control_id') != control_id ) {
  176. //Remove exiting element from track list, and add the new one.
  177. current_item.remove();
  178. track_list_container.append(new_item);
  179. }
  180. }
  181. return;
  182. }
  183. //Using checkboxes, so there can be more than one selected item.
  184. //Find the right place to put the new item,
  185. // to match the order of the checkboxes.
  186. // OR order of delta
  187. var list_items = track_list_container.find('li');
  188. var item_comparing_to;
  189. //Flag to tell whether the item was inserted.
  190. var inserted_flag = false;
  191. if(!track_list_container.is('.order-list')){
  192. list_items.each(function(index){
  193. item_comparing_to = $(list_items[index]);
  194. //If item is already on the track list, do nothing.
  195. if ( control_id == item_comparing_to.data('control_id') ) {
  196. inserted_flag = true;
  197. return false; //Returning false stops the loop.
  198. }
  199. else if ( control_id < item_comparing_to.data('control_id') ) {
  200. //Add it here.
  201. item_comparing_to.before(new_item);
  202. inserted_flag = true;
  203. return false; //Returning false stops the loop.
  204. }
  205. });
  206. //If not inserted yet, add new item at the end of the track list.
  207. if ( ! inserted_flag ) {
  208. track_list_container.append(new_item);
  209. }
  210. }else{
  211. if( ! track_list_container.find('#'+new_item.attr('id')).size() ){
  212. if(delta == -1){
  213. track_list_container.append(new_item);
  214. inserted_flag = true;
  215. }else{
  216. list_items.each(function(index){
  217. item_comparing_to = $(this);
  218. if ( delta < item_comparing_to.attr('delta') ) {
  219. //Add it here.
  220. item_comparing_to.before(new_item);
  221. inserted_flag = true;
  222. return false; //Returning false stops the loop.
  223. }
  224. });
  225. //If not inserted yet, add new item at the end of the track list.
  226. if ( ! inserted_flag )
  227. track_list_container.append(new_item);
  228. }
  229. $hiddenInput = $('#'+control_id).parent('.form-item').next('input[type=hidden]');
  230. $hiddenInput.val(new_item.index());
  231. track_list_container.sortable('refresh');
  232. }
  233. }
  234. }
  235. /**
  236. * Show the 'nothing selected' message if it applies.
  237. *
  238. * @param track_list_container Where the message is to be shown.
  239. */
  240. function showNothingSelectedMessage(track_list_container) {
  241. //Is the message there already?
  242. var message_showing =
  243. (track_list_container.find('.term_ref_tree_nothing_message').size() != 0);
  244. //Number of real items showing.
  245. var num_real_items_showing =
  246. message_showing
  247. ? track_list_container.find('li').size() - 1
  248. : track_list_container.find('li').size();
  249. if ( num_real_items_showing == 0 ) {
  250. //No items showing, so show the message.
  251. if ( ! message_showing ) {
  252. track_list_container.append(
  253. '<li class="term_ref_tree_nothing_message">' + termReferenceTreeNothingSelectedText + '</li>'
  254. );
  255. }
  256. }
  257. else { // !(num_real_items_showing == 0)
  258. //There are real items.
  259. if ( message_showing ) {
  260. track_list_container.find('.term_ref_tree_nothing_message').remove();
  261. }
  262. }
  263. }
  264. /**
  265. * Remove the 'nothing selected' message. Makes processing easier.
  266. *
  267. * @param track_list_container Where the message is shown.
  268. */
  269. function removeNothingSelectedMessage(track_list_container) {
  270. track_list_container.find('.term_ref_tree_nothing_message').remove();
  271. }
  272. // This helper function checks if the maximum number of choices is already selected.
  273. // If so, it disables all the other options. If not, it enables them.
  274. function checkMaxChoices(item, checkbox, order_list) {
  275. var maxChoices = -1;
  276. try {
  277. maxChoices = parseInt(Drupal.settings.term_reference_tree.trees[item.attr('id')]['max_choices']);
  278. }
  279. catch (e){}
  280. var count = item.find(':checked').length;
  281. if(maxChoices > 0 && count >= maxChoices) {
  282. item.find('input[type=checkbox]:not(:checked)').attr('disabled', 'disabled').parent().addClass('disabled');
  283. } else {
  284. item.find('input[type=checkbox]').removeAttr('disabled').parent().removeClass('disabled');
  285. }
  286. if(checkbox) {
  287. if(item.hasClass('select-parents')) {
  288. var track_list_container = item.find('.term-reference-tree-track-list');
  289. var input_type =
  290. ( item.has('input[type=checkbox]').size() > 0 ) ? 'checkbox' : 'radio';
  291. if(checkbox.attr('checked')) {
  292. checkbox.parents('ul.term-reference-tree-level li').children('div.form-item').children('input[type=checkbox]').each(function() {
  293. $(this).attr('checked', checkbox.attr('checked'));
  294. if(track_list_container) {
  295. label_element = $(this).next();
  296. addItemToTrackList(
  297. track_list_container, //Where to add new item.
  298. label_element.html(), //Text of new item.
  299. $(label_element).attr('for'), //Id of control new item is for.
  300. input_type //checkbox or radio
  301. );
  302. }
  303. });
  304. }
  305. }
  306. }
  307. }
  308. })(jQuery);