summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/vue_shared/components/registry/code_instruction.vue
blob: 1a85a641dd194f130dea8e6446f3fbe18fc3651b (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
<script>
import { uniqueId } from 'lodash';
import Tracking from '~/tracking';
import ClipboardButton from '~/vue_shared/components/clipboard_button.vue';

export default {
  name: 'CodeInstruction',
  components: {
    ClipboardButton,
  },
  mixins: [Tracking.mixin()],
  props: {
    label: {
      type: String,
      required: false,
      default: '',
    },
    instruction: {
      type: String,
      required: true,
    },
    copyText: {
      type: String,
      required: true,
    },
    multiline: {
      type: Boolean,
      required: false,
      default: false,
    },
    trackingAction: {
      type: String,
      required: false,
      default: '',
    },
    trackingLabel: {
      type: String,
      required: false,
      default: '',
    },
  },
  created() {
    this.uniqueId = uniqueId();
  },
  methods: {
    trackCopy() {
      if (this.trackingAction) {
        this.track(this.trackingAction, { label: this.trackingLabel });
      }
    },
    generateFormId(name) {
      return `${name}_${this.uniqueId}`;
    },
  },
};
</script>

<template>
  <div>
    <label v-if="label" :for="generateFormId('instruction-input')">{{ label }}</label>
    <div v-if="!multiline" class="gl-mb-3">
      <div class="input-group gl-mb-3">
        <input
          :id="generateFormId('instruction-input')"
          :value="instruction"
          type="text"
          class="form-control gl-font-monospace"
          data-testid="instruction-input"
          readonly
          @copy="trackCopy"
        />
        <span class="input-group-append" data-testid="instruction-button" @click="trackCopy">
          <clipboard-button :text="instruction" :title="copyText" class="input-group-text" />
        </span>
      </div>
    </div>

    <div v-else>
      <pre class="gl-font-monospace" data-testid="multiline-instruction" @copy="trackCopy">{{
        instruction
      }}</pre>
    </div>
  </div>
</template>