summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/environments/components/environment_terminal_button.vue
blob: 407d5333c0e49299f05dc7f8461dc3a39f4c6e9f (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
<script>
  /**
  * Renders a terminal button to open a web terminal.
  * Used in environments table.
  */
  import terminalIconSvg from 'icons/_icon_terminal.svg';
  import tooltip from '../../vue_shared/directives/tooltip';

  export default {
    directives: {
      tooltip,
    },

    props: {
      terminalPath: {
        type: String,
        required: false,
        default: '',
      },
    },

    data() {
      return {
        terminalIconSvg,
      };
    },

    computed: {
      title() {
        return 'Terminal';
      },
    },
  };
</script>
<template>
  <a
    v-tooltip
    class="btn terminal-button hidden-xs hidden-sm"
    data-container="body"
    :title="title"
    :aria-label="title"
    :href="terminalPath"
    v-html="terminalIconSvg"
  >
  </a>
</template>