_collapse.js 2.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. (function ($) {
  2. /**
  3. * Toggle the visibility of a fieldset using smooth animations.
  4. */
  5. Drupal.toggleFieldset = function (fieldset) {
  6. var $toggle = $($(fieldset).find('[data-toggle=collapse]').data('target'));
  7. if ($toggle.length) {
  8. $toggle.collapse('toggle');
  9. }
  10. };
  11. /**
  12. * Scroll a given fieldset into view as much as possible.
  13. */
  14. Drupal.collapseScrollIntoView = function (node) {
  15. var h = document.documentElement.clientHeight || document.body.clientHeight || 0;
  16. var offset = document.documentElement.scrollTop || document.body.scrollTop || 0;
  17. var posY = $(node).offset().top;
  18. var fudge = 55;
  19. if (posY + node.offsetHeight + fudge > h + offset) {
  20. if (node.offsetHeight > h) {
  21. window.scrollTo(0, posY);
  22. }
  23. else {
  24. window.scrollTo(0, posY + node.offsetHeight - h + fudge);
  25. }
  26. }
  27. };
  28. Drupal.behaviors.collapse = {
  29. attach: function (context, settings) {
  30. $('fieldset.collapsible', context).once('collapse', function () {
  31. var $fieldset = $(this);
  32. var $body = $fieldset.find('> .panel-collapse');
  33. // Expand fieldset if there are errors inside, or if it contains an
  34. // element that is targeted by the URI fragment identifier.
  35. var anchor = location.hash && location.hash != '#' ? ', ' + location.hash : '';
  36. if ($fieldset.find('.error' + anchor).length) {
  37. $fieldset.removeClass('collapsed');
  38. $body.removeClass('collapsed');
  39. }
  40. var summary = $('<span class="summary"></span>');
  41. $fieldset.
  42. bind('summaryUpdated', function () {
  43. var text = $.trim($fieldset.drupalGetSummary());
  44. summary.html(text ? ' (' + text + ')' : '');
  45. })
  46. .trigger('summaryUpdated');
  47. // Turn the legend into a clickable link, but retain span.fieldset-legend
  48. // for CSS positioning.
  49. var $legend = $('> legend .fieldset-legend', this);
  50. $('<span class="fieldset-legend-prefix element-invisible"></span>')
  51. .append($fieldset.hasClass('collapsed') ? Drupal.t('Show') : Drupal.t('Hide'))
  52. .prependTo($legend);
  53. // Bind Bootstrap events with Drupal core events.
  54. $fieldset
  55. .append(summary)
  56. .on('show.bs.collapse', function () {
  57. $fieldset
  58. .removeClass('collapsed')
  59. .find('> legend span.fieldset-legend-prefix').html(Drupal.t('Hide'));
  60. $body.removeClass('collapsed');
  61. })
  62. .on('shown.bs.collapse', function () {
  63. $fieldset.trigger({ type: 'collapsed', value: false });
  64. Drupal.collapseScrollIntoView($fieldset.get(0));
  65. })
  66. .on('hide.bs.collapse', function () {
  67. $fieldset
  68. .addClass('collapsed')
  69. .find('> legend span.fieldset-legend-prefix').html(Drupal.t('Show'));
  70. $body.addClass('collapsed');
  71. })
  72. .on('hidden.bs.collapse', function () {
  73. $fieldset.trigger({ type: 'collapsed', value: true });
  74. });
  75. });
  76. }
  77. };
  78. })(jQuery);