issue.js 4.35 KB
Newer Older
1
/* eslint-disable func-names, space-before-function-paren, no-var, prefer-rest-params, wrap-iife, one-var, no-underscore-dangle, one-var-declaration-per-line, object-shorthand, no-unused-vars, no-new, comma-dangle, consistent-return, quotes, dot-notation, quote-props, prefer-arrow-callback, max-len */
2
/* global Flash */
Fatih Acet's avatar
Fatih Acet committed
3

4
require('./flash');
5
require('~/lib/utils/text_utility');
6
require('vendor/jquery.waitforimages');
7
require('./task_list');
Fatih Acet's avatar
Fatih Acet committed
8

9 10 11 12 13 14 15 16 17 18 19 20 21
class Issue {
  constructor() {
    if ($('a.btn-close').length) {
      this.taskList = new gl.TaskList({
        dataType: 'issue',
        fieldName: 'description',
        selector: '.detail-page-description',
        onSuccess: (result) => {
          document.querySelector('#task_status').innerText = result.task_status;
          document.querySelector('#task_status_short').innerText = result.task_status_short;
        }
      });
      Issue.initIssueBtnEventListeners();
Fatih Acet's avatar
Fatih Acet committed
22
    }
23 24 25 26
    Issue.initMergeRequests();
    Issue.initRelatedBranches();
    Issue.initCanCreateBranch();
  }
Fatih Acet's avatar
Fatih Acet committed
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
  static initIssueBtnEventListeners() {
    var issueFailMessage;
    issueFailMessage = 'Unable to update this issue at this time.';
    return $('a.btn-close, a.btn-reopen').on('click', function(e) {
      var $this, isClose, shouldSubmit, url;
      e.preventDefault();
      e.stopImmediatePropagation();
      $this = $(this);
      isClose = $this.hasClass('btn-close');
      shouldSubmit = $this.hasClass('btn-comment');
      if (shouldSubmit) {
        Issue.submitNoteForm($this.closest('form'));
      }
      $this.prop('disabled', true);
      url = $this.attr('href');
      return $.ajax({
        type: 'PUT',
        url: url,
        error: function(jqXHR, textStatus, errorThrown) {
          var issueStatus;
          issueStatus = isClose ? 'close' : 'open';
          return new Flash(issueFailMessage, 'alert');
        },
        success: function(data, textStatus, jqXHR) {
          if ('id' in data) {
            $(document).trigger('issuable:change');
54
            let total = Number($('.issue_counter').text().replace(/[^\d]/, ''));
55 56 57 58 59
            if (isClose) {
              $('a.btn-close').addClass('hidden');
              $('a.btn-reopen').removeClass('hidden');
              $('div.status-box-closed').removeClass('hidden');
              $('div.status-box-open').addClass('hidden');
60
              total -= 1;
Fatih Acet's avatar
Fatih Acet committed
61
            } else {
62 63 64 65
              $('a.btn-reopen').addClass('hidden');
              $('a.btn-close').removeClass('hidden');
              $('div.status-box-closed').addClass('hidden');
              $('div.status-box-open').removeClass('hidden');
66
              total += 1;
Fatih Acet's avatar
Fatih Acet committed
67
            }
68
            $('.issue_counter').text(gl.text.addDelimiter(total));
69 70
          } else {
            new Flash(issueFailMessage, 'alert');
Fatih Acet's avatar
Fatih Acet committed
71
          }
72 73
          return $this.prop('disabled', false);
        }
Fatih Acet's avatar
Fatih Acet committed
74
      });
75 76
    });
  }
Fatih Acet's avatar
Fatih Acet committed
77

78 79 80 81 82 83 84
  static submitNoteForm(form) {
    var noteText;
    noteText = form.find("textarea.js-note-text").val();
    if (noteText.trim().length > 0) {
      return form.submit();
    }
  }
Fatih Acet's avatar
Fatih Acet committed
85

86 87 88 89 90 91 92 93 94 95 96
  static initMergeRequests() {
    var $container;
    $container = $('#merge-requests');
    return $.getJSON($container.data('url')).error(function() {
      return new Flash('Failed to load referenced merge requests', 'alert');
    }).success(function(data) {
      if ('html' in data) {
        return $container.html(data.html);
      }
    });
  }
Fatih Acet's avatar
Fatih Acet committed
97

98 99 100 101 102 103 104 105 106 107 108
  static initRelatedBranches() {
    var $container;
    $container = $('#related-branches');
    return $.getJSON($container.data('url')).error(function() {
      return new Flash('Failed to load related branches', 'alert');
    }).success(function(data) {
      if ('html' in data) {
        return $container.html(data.html);
      }
    });
  }
Fatih Acet's avatar
Fatih Acet committed
109

110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
  static initCanCreateBranch() {
    var $container;
    $container = $('#new-branch');
    // If the user doesn't have the required permissions the container isn't
    // rendered at all.
    if ($container.length === 0) {
      return;
    }
    return $.getJSON($container.data('path')).error(function() {
      $container.find('.unavailable').show();
      return new Flash('Failed to check if a new branch can be created.', 'alert');
    }).success(function(data) {
      if (data.can_create_branch) {
        $container.find('.available').show();
      } else {
        return $container.find('.unavailable').show();
Fatih Acet's avatar
Fatih Acet committed
126
      }
127 128 129
    });
  }
}
Fatih Acet's avatar
Fatih Acet committed
130

131
export default Issue;