summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/sidebar/components/reference/sidebar_reference_widget.vue
blob: d34f0989c88be287087b035c5c74bca85b7a9973 (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
<script>
import { GlLoadingIcon } from '@gitlab/ui';
import { __ } from '~/locale';
import { referenceQueries } from '~/sidebar/constants';
import ClipboardButton from '~/vue_shared/components/clipboard_button.vue';

export default {
  i18n: {
    copyReference: __('Copy reference'),
    text: __('Reference'),
  },
  components: {
    ClipboardButton,
    GlLoadingIcon,
  },
  inject: ['fullPath', 'iid'],
  props: {
    issuableType: {
      required: true,
      type: String,
    },
  },
  data() {
    return {
      reference: '',
    };
  },
  apollo: {
    reference: {
      query() {
        return referenceQueries[this.issuableType].query;
      },
      variables() {
        return {
          fullPath: this.fullPath,
          iid: this.iid,
        };
      },
      update(data) {
        return data.workspace?.issuable?.reference || '';
      },
      error(error) {
        this.$emit('fetch-error', {
          message: __('An error occurred while fetching reference'),
          error,
        });
      },
    },
  },
  computed: {
    isLoading() {
      return this.$apollo.queries.reference.loading;
    },
  },
};
</script>

<template>
  <div class="sub-block">
    <clipboard-button
      v-if="!isLoading"
      :title="$options.i18n.copyReference"
      :text="reference"
      category="tertiary"
      css-class="sidebar-collapsed-icon dont-change-state"
      tooltip-placement="left"
    />
    <div
      class="gl-display-flex gl-align-items-center gl-justify-content-space-between gl-mb-2 hide-collapsed"
    >
      <span class="gl-overflow-hidden gl-text-overflow-ellipsis gl-white-space-nowrap">
        {{ $options.i18n.text }}: {{ reference }}
        <gl-loading-icon v-if="isLoading" inline :label="$options.i18n.text" />
      </span>
      <clipboard-button
        v-if="!isLoading"
        :title="$options.i18n.copyReference"
        :text="reference"
        size="small"
        category="tertiary"
        css-class="gl-mr-1"
        tooltip-placement="left"
      />
    </div>
  </div>
</template>