aboutsummaryrefslogtreecommitdiffstats
path: root/web_src/js/features/comp/ReactionSelector.js
blob: 33ceb73c7cee7443497bc8f1e100366f3431249e (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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
import $ from 'jquery';
import {createTippy} from '../../modules/tippy.js';

const {csrfToken} = window.config;

export function initCompReactionSelector(parent) {
  let selector = 'a.label';
  if (!parent) {
    parent = $(document);
    selector = `.reactions ${selector}`;
  }

  for (const el of parent[0].querySelectorAll(selector)) {
    createTippy(el, {placement: 'bottom-start', content: el.getAttribute('data-title')});
  }

  parent.find(`.select-reaction > .menu > .item, ${selector}`).on('click', function (e) {
    e.preventDefault();

    if ($(this).hasClass('disabled')) return;

    const actionURL = $(this).hasClass('item') ? $(this).closest('.select-reaction').data('action-url') : $(this).data('action-url');
    const url = `${actionURL}/${$(this).hasClass('primary') ? 'unreact' : 'react'}`;
    $.ajax({
      type: 'POST',
      url,
      data: {
        _csrf: csrfToken,
        content: $(this).attr('data-reaction-content'),
      }
    }).done((resp) => {
      if (resp && (resp.html || resp.empty)) {
        const content = $(this).closest('.content');
        let react = content.find('.segment.reactions');
        if ((!resp.empty || resp.html === '') && react.length > 0) {
          react.remove();
        }
        if (!resp.empty) {
          react = $('<div class="ui attached segment reactions"></div>');
          const attachments = content.find('.segment.bottom:first');
          if (attachments.length > 0) {
            react.insertBefore(attachments);
          } else {
            react.appendTo(content);
          }
          react.html(resp.html);
          react.find('.dropdown').dropdown();
          initCompReactionSelector(react);
        }
      }
    });
  });
}