summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/project_label_subscription.js
blob: d17a9bac82b22924b6bb7a3843ed6323a0cf918e (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
54
/* eslint-disable wrap-iife, func-names, space-before-function-paren, object-shorthand, comma-dangle, one-var, one-var-declaration-per-line, no-restricted-syntax, max-len, no-param-reassign */
const global = window.gl || (window.gl = {});

class ProjectLabelSubscription {
  constructor(container) {
    this.$container = $(container);
    this.$buttons = this.$container.find('.js-subscribe-button');

    this.$buttons.on('click', this.toggleSubscription.bind(this));
  }

  toggleSubscription(event) {
    event.preventDefault();

    const $btn = $(event.currentTarget);
    const $span = $btn.find('span');
    const url = $btn.attr('data-url');
    const oldStatus = $btn.attr('data-status');

    $btn.addClass('disabled');
    $span.toggleClass('hidden');

    $.ajax({
      type: 'POST',
      url: url
    }).done(() => {
      let newStatus, newAction;

      if (oldStatus === 'unsubscribed') {
        [newStatus, newAction] = ['subscribed', 'Unsubscribe'];
      } else {
        [newStatus, newAction] = ['unsubscribed', 'Subscribe'];
      }

      $span.toggleClass('hidden');
      $btn.removeClass('disabled');

      this.$buttons.attr('data-status', newStatus);
      this.$buttons.find('> span').text(newAction);

      this.$buttons.map((button) => {
        const $button = $(button);

        if ($button.attr('data-original-title')) {
          $button.tooltip('hide').attr('data-original-title', newAction).tooltip('fixTitle');
        }

        return button;
      });
    });
  }
}

global.ProjectLabelSubscription = ProjectLabelSubscription;