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

code_instruction.vue « registry « components « vue_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 08ee23d25bf3c24b0dab50b0ddd84c609b94d15e (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
<script>
import { uniqueId } from 'lodash';
import ClipboardButton from '~/vue_shared/components/clipboard_button.vue';
import Tracking from '~/tracking';

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 v-if="!multiline" class="gl-mb-3">
    <label v-if="label" :for="generateFormId('instruction-input')">{{ label }}</label>
    <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>
</template>