summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/protected_branches/protected_branch_edit.js
blob: 5bc08f60d16f62bc95ac7566ced19d954a0f90dc (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import flash from '../flash';
import axios from '../lib/utils/axios_utils';
import ProtectedBranchAccessDropdown from './protected_branch_access_dropdown';

export default class ProtectedBranchEdit {
  constructor(options) {
    this.$wrap = options.$wrap;
    this.$allowedToMergeDropdown = this.$wrap.find('.js-allowed-to-merge');
    this.$allowedToPushDropdown = this.$wrap.find('.js-allowed-to-push');
    this.onSelectCallback = this.onSelect.bind(this);

    this.buildDropdowns();
  }

  buildDropdowns() {
    // Allowed to merge dropdown
    this.protectedBranchAccessDropdown = new ProtectedBranchAccessDropdown({
      $dropdown: this.$allowedToMergeDropdown,
      data: gon.merge_access_levels,
      onSelect: this.onSelectCallback,
    });

    // Allowed to push dropdown
    this.protectedBranchAccessDropdown = new ProtectedBranchAccessDropdown({
      $dropdown: this.$allowedToPushDropdown,
      data: gon.push_access_levels,
      onSelect: this.onSelectCallback,
    });
  }

  onSelect() {
    const $allowedToMergeInput = this.$wrap.find(
      `input[name="${this.$allowedToMergeDropdown.data('fieldName')}"]`,
    );
    const $allowedToPushInput = this.$wrap.find(
      `input[name="${this.$allowedToPushDropdown.data('fieldName')}"]`,
    );

    // Do not update if one dropdown has not selected any option
    if (!($allowedToMergeInput.length && $allowedToPushInput.length)) return;

    this.$allowedToMergeDropdown.disable();
    this.$allowedToPushDropdown.disable();

    axios
      .patch(this.$wrap.data('url'), {
        protected_branch: {
          merge_access_levels_attributes: [
            {
              id: this.$allowedToMergeDropdown.data('accessLevelId'),
              access_level: $allowedToMergeInput.val(),
            },
          ],
          push_access_levels_attributes: [
            {
              id: this.$allowedToPushDropdown.data('accessLevelId'),
              access_level: $allowedToPushInput.val(),
            },
          ],
        },
      })
      .then(() => {
        this.$allowedToMergeDropdown.enable();
        this.$allowedToPushDropdown.enable();
      })
      .catch(() => {
        this.$allowedToMergeDropdown.enable();
        this.$allowedToPushDropdown.enable();

        flash(
          'Failed to update branch!',
          'alert',
          document.querySelector('.js-protected-branches-list'),
        );
      });
  }
}