summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/environments/components/environment_terminal_button.js
blob: e86607e78f45d778735899622d3c4b6491d67eff (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
/**
 * Renders a terminal button to open a web terminal.
 * Used in environments table.
 */
const Vue = require('vue');
const terminalIconSvg = require('icons/_icon_terminal.svg');

module.exports = Vue.component('terminal-button-component', {
  props: {
    terminalPath: {
      type: String,
      default: '',
    },
  },

  data() {
    return { terminalIconSvg };
  },

  template: `
    <a class="btn terminal-button"
      :href="terminalPath">
      ${terminalIconSvg}
    </a>
  `,
});