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

work_item_detail_modal.vue « components « work_items « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 942677bb9373afd3140ae334f2ac0c595677cb0d (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
<script>
import { GlModal } from '@gitlab/ui';
import { s__ } from '~/locale';
import workItemQuery from '../graphql/work_item.query.graphql';
import ItemTitle from './item_title.vue';

export default {
  components: {
    GlModal,
    ItemTitle,
  },
  props: {
    visible: {
      type: Boolean,
      required: true,
    },
    workItemId: {
      type: String,
      required: false,
      default: null,
    },
  },
  data() {
    return {
      workItem: {},
    };
  },
  apollo: {
    workItem: {
      query: workItemQuery,
      variables() {
        return {
          id: this.workItemId,
        };
      },
      update(data) {
        return data.workItem;
      },
      skip() {
        return !this.workItemId;
      },
      error() {
        this.$emit(
          'error',
          s__('WorkItem|Something went wrong when fetching the work item. Please try again.'),
        );
      },
    },
  },
  computed: {
    workItemTitle() {
      return this.workItem?.title;
    },
  },
};
</script>

<template>
  <gl-modal hide-footer modal-id="work-item-detail-modal" :visible="visible" @hide="$emit('close')">
    <item-title class="gl-m-0!" :initial-title="workItemTitle" />
  </gl-modal>
</template>