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

remove_issue.vue « sidebar « components « boards « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b8f2e324d4365cae2dd7244f151dd99a4253e70c (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
<script>
  import Vue from 'vue';
  import Flash from '../../../flash';
  import { __ } from '../../../locale';
  import boardsStore from '../../stores/boards_store';

  export default Vue.extend({
    props: {
      issue: {
        type: Object,
        required: true,
      },
      list: {
        type: Object,
        required: true,
      },
    },
    computed: {
      updateUrl() {
        return this.issue.path;
      },
    },
    methods: {
      removeIssue() {
        const { issue } = this;
        const lists = issue.getLists();
        const req = this.buildPatchRequest(issue, lists);

        const data = {
          issue: this.seedPatchRequest(issue, req),
        };

        if (data.issue.label_ids.length === 0) {
          data.issue.label_ids = [''];
        }

        // Post the remove data
        Vue.http.patch(this.updateUrl, data).catch(() => {
          Flash(__('Failed to remove issue from board, please try again.'));

          lists.forEach(list => {
            list.addIssue(issue);
          });
        });

        // Remove from the frontend store
        lists.forEach(list => {
          list.removeIssue(issue);
        });

        boardsStore.detail.issue = {};
      },
      /**
      * Build the default patch request.
      */
      buildPatchRequest(issue, lists) {
        const listLabelIds = lists.map(list => list.label.id);

        const labelIds = issue.labels
          .map(label => label.id)
          .filter(id => !listLabelIds.includes(id));

        return {
          label_ids: labelIds,
        };
      },
      /**
      * Seed the given patch request.
      *
      * (This is overridden in EE)
      */
      seedPatchRequest(issue, req) {
        return req;
      },
    },
  });
</script>
<template>
  <div
    class="block list"
  >
    <button
      class="btn btn-default btn-block"
      type="button"
      @click="removeIssue"
    >
      Remove from board
    </button>
  </div>
</template>