summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/packages/details/components/code_instruction.vue
blob: 0719ddfcd2b5a52f232eee12b33ac5e283fae297 (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
<script>
import ClipboardButton from '~/vue_shared/components/clipboard_button.vue';
import Tracking from '~/tracking';
import { TrackingLabels } from '../constants';

export default {
  name: 'CodeInstruction',
  components: {
    ClipboardButton,
  },
  mixins: [
    Tracking.mixin({
      label: TrackingLabels.CODE_INSTRUCTION,
    }),
  ],
  props: {
    instruction: {
      type: String,
      required: true,
    },
    copyText: {
      type: String,
      required: true,
    },
    multiline: {
      type: Boolean,
      required: false,
      default: false,
    },
    trackingAction: {
      type: String,
      required: false,
      default: '',
    },
  },
  methods: {
    trackCopy() {
      if (this.trackingAction) {
        this.track(this.trackingAction);
      }
    },
  },
};
</script>

<template>
  <div v-if="!multiline" class="input-group gl-mb-3">
    <input
      :value="instruction"
      type="text"
      class="form-control monospace js-instruction-input"
      readonly
      @copy="trackCopy"
    />
    <span class="input-group-append js-instruction-button" @click="trackCopy">
      <clipboard-button :text="instruction" :title="copyText" class="input-group-text" />
    </span>
  </div>

  <div v-else>
    <pre class="js-instruction-pre" @copy="trackCopy">{{ instruction }}</pre>
  </div>
</template>