summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/behaviors/details_behavior.js
blob: 9bdfc21c7e4a638993f67950e79bc14d437896ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import $ from 'jquery';

$(() => {
  $('body').on('click', '.js-details-target', function target() {
    $(this)
      .closest('.js-details-container')
      .toggleClass('open');
  });

  // Show details content. Hides link after click.
  //
  // %div
  //   %a.js-details-expand
  //   %div.js-details-content
  //
  $('body').on('click', '.js-details-expand', function expand(e) {
    e.preventDefault();
    $(this)
      .next('.js-details-content')
      .removeClass('hide');
    $(this).hide();

    const truncatedItem = $(this).siblings('.js-details-short');
    if (truncatedItem.length) {
      truncatedItem.addClass('hide');
    }
  });
});