BigW Consortium Gitlab

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

4 5 6
import 'vendor/jquery.waitforimages';
import './task_list';
import './merge_request_tabs';
Fatih Acet committed
7 8 9 10

(function() {
  this.MergeRequest = (function() {
    function MergeRequest(opts) {
11 12 13 14 15
      // Initialize MergeRequest behavior
      //
      // Options:
      //   action - String, current controller action
      //
Fatih Acet committed
16
      this.opts = opts != null ? opts : {};
17
      this.submitNoteForm = this.submitNoteForm.bind(this);
Fatih Acet committed
18 19 20 21 22 23 24 25
      this.$el = $('.merge-request');
      this.$('.show-all-commits').on('click', (function(_this) {
        return function() {
          return _this.showAllCommits();
        };
      })(this));
      this.initTabs();
      this.initMRBtnListeners();
26
      this.initCommitMessageListeners();
Fatih Acet committed
27
      if ($("a.btn-close").length) {
28 29
        this.taskList = new gl.TaskList({
          dataType: 'merge_request',
30
          fieldName: 'description',
31 32 33 34 35
          selector: '.detail-page-description',
          onSuccess: (result) => {
            document.querySelector('#task_status').innerText = result.task_status;
            document.querySelector('#task_status_short').innerText = result.task_status_short;
          }
36
        });
Fatih Acet committed
37 38 39
      }
    }

40
    // Local jQuery finder
Fatih Acet committed
41 42 43 44 45
    MergeRequest.prototype.$ = function(selector) {
      return this.$el.find(selector);
    };

    MergeRequest.prototype.initTabs = function() {
46 47
      if (window.mrTabs) {
        window.mrTabs.unbindEvents();
Fatih Acet committed
48
      }
49
      window.mrTabs = new gl.MergeRequestTabs(this.opts);
Fatih Acet committed
50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86
    };

    MergeRequest.prototype.showAllCommits = function() {
      this.$('.first-commits').remove();
      return this.$('.all-commits').removeClass('hide');
    };

    MergeRequest.prototype.initMRBtnListeners = function() {
      var _this;
      _this = this;
      return $('a.btn-close, a.btn-reopen').on('click', function(e) {
        var $this, shouldSubmit;
        $this = $(this);
        shouldSubmit = $this.hasClass('btn-comment');
        if (shouldSubmit && $this.data('submitted')) {
          return;
        }
        if (shouldSubmit) {
          if ($this.hasClass('btn-comment-and-close') || $this.hasClass('btn-comment-and-reopen')) {
            e.preventDefault();
            e.stopImmediatePropagation();
            return _this.submitNoteForm($this.closest('form'), $this);
          }
        }
      });
    };

    MergeRequest.prototype.submitNoteForm = function(form, $button) {
      var noteText;
      noteText = form.find("textarea.js-note-text").val();
      if (noteText.trim().length > 0) {
        form.submit();
        $button.data('submitted', true);
        return $button.trigger('click');
      }
    };

87
    MergeRequest.prototype.initCommitMessageListeners = function() {
88 89
      $(document).on('click', 'a.js-with-description-link', function(e) {
        var textarea = $('textarea.js-commit-message');
90
        e.preventDefault();
91 92

        textarea.val(textarea.data('messageWithDescription'));
Nur Rony committed
93 94
        $('.js-with-description-hint').hide();
        $('.js-without-description-hint').show();
95 96
      });

97 98
      $(document).on('click', 'a.js-without-description-link', function(e) {
        var textarea = $('textarea.js-commit-message');
99 100 101
        e.preventDefault();

        textarea.val(textarea.data('messageWithoutDescription'));
Nur Rony committed
102 103
        $('.js-with-description-hint').show();
        $('.js-without-description-hint').hide();
104 105 106
      });
    };

107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
    MergeRequest.prototype.updateStatusText = function(classToRemove, classToAdd, newStatusText) {
      $('.detail-page-header .status-box')
        .removeClass(classToRemove)
        .addClass(classToAdd)
        .find('span')
        .text(newStatusText);
    };

    MergeRequest.prototype.decreaseCounter = function(by = 1) {
      const $el = $('.nav-links .js-merge-counter');
      const count = Math.max((parseInt($el.text().replace(/[^\d]/, ''), 10) - by), 0);

      $el.text(gl.text.addDelimiter(count));
    };

Fatih Acet committed
122 123
    return MergeRequest;
  })();
124
}).call(window);