Welcome to mirror list, hosted at ThFree Co, Russian Federation.

promote_milestone_modal.vue « components « milestones « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b41611001ab0de00a155b514171e8720f12ccd01 (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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<script>
import { GlModal } from '@gitlab/ui';
import createFlash from '~/flash';
import axios from '~/lib/utils/axios_utils';
import { visitUrl } from '~/lib/utils/url_utility';
import { __, s__, sprintf } from '~/locale';

export default {
  components: {
    GlModal,
  },
  data() {
    return {
      milestoneTitle: '',
      url: '',
      groupName: '',
      currentButton: null,
      visible: false,
    };
  },
  computed: {
    title() {
      return sprintf(s__('Milestones|Promote %{milestoneTitle} to group milestone?'), {
        milestoneTitle: this.milestoneTitle,
      });
    },
    text() {
      return sprintf(
        s__(`Milestones|Promoting %{milestoneTitle} will make it available for all projects inside %{groupName}.
        Existing project milestones with the same title will be merged.`),
        { milestoneTitle: this.milestoneTitle, groupName: this.groupName },
      );
    },
  },
  mounted() {
    this.getButtons().forEach((button) => {
      button.addEventListener('click', this.onPromoteButtonClick);
      button.removeAttribute('disabled');
    });
  },
  beforeDestroy() {
    this.getButtons().forEach((button) => {
      button.removeEventListener('click', this.onPromoteButtonClick);
    });
  },
  methods: {
    onPromoteButtonClick({ currentTarget }) {
      const { milestoneTitle, url, groupName } = currentTarget.dataset;
      currentTarget.setAttribute('disabled', '');
      this.visible = true;
      this.milestoneTitle = milestoneTitle;
      this.url = url;
      this.groupName = groupName;
      this.currentButton = currentTarget;
    },
    getButtons() {
      return document.querySelectorAll('.js-promote-project-milestone-button');
    },
    onSubmit() {
      return axios
        .post(this.url, { params: { format: 'json' } })
        .then((response) => {
          visitUrl(response.data.url);
        })
        .catch((error) => {
          createFlash({
            message: error,
          });
        })
        .finally(() => {
          this.visible = false;
        });
    },
    onClose() {
      this.visible = false;
      if (this.currentButton) {
        this.currentButton.removeAttribute('disabled');
      }
    },
  },
  primaryAction: {
    text: s__('Milestones|Promote Milestone'),
    attributes: [{ variant: 'warning' }],
  },
  cancelAction: {
    text: __('Cancel'),
    attributes: [],
  },
};
</script>
<template>
  <gl-modal
    :visible="visible"
    modal-id="promote-milestone-modal"
    :action-primary="$options.primaryAction"
    :action-cancel="$options.cancelAction"
    :title="title"
    @primary="onSubmit"
    @hide="onClose"
  >
    <p>{{ text }}</p>
    <p>{{ s__('Milestones|This action cannot be reversed.') }}</p>
  </gl-modal>
</template>