summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/releases/components/tag_field_existing.vue
blob: b84e713df26cd920ac9f0bf91af1419d48fad9a2 (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
<script>
import { mapState } from 'vuex';
import { uniqueId } from 'lodash';
import { GlFormGroup, GlFormInput, GlLink, GlSprintf } from '@gitlab/ui';
import FormFieldContainer from './form_field_container.vue';

export default {
  name: 'TagFieldExisting',
  components: { GlFormGroup, GlFormInput, GlSprintf, GlLink, FormFieldContainer },
  computed: {
    ...mapState('detail', ['release', 'updateReleaseApiDocsPath']),
    inputId() {
      return uniqueId('tag-name-input-');
    },
    helpId() {
      return uniqueId('tag-name-help-');
    },
  },
};
</script>
<template>
  <gl-form-group :label="__('Tag name')" :label-for="inputId">
    <form-field-container>
      <gl-form-input
        :id="inputId"
        :value="release.tagName"
        type="text"
        class="form-control"
        :aria-describedby="helpId"
        disabled
      />
    </form-field-container>
    <template #description>
      <div :id="helpId" data-testid="tag-name-help">
        <gl-sprintf
          :message="
            __(
              'Changing a Release tag is only supported via Releases API. %{linkStart}More information%{linkEnd}',
            )
          "
        >
          <template #link="{ content }">
            <gl-link :href="updateReleaseApiDocsPath" target="_blank">
              {{ content }}
            </gl-link>
          </template>
        </gl-sprintf>
      </div>
    </template>
  </gl-form-group>
</template>