debian-mirror-gitlab/app/assets/javascripts/environments/components/environment_terminal_button.vue

42 lines
715 B
Vue
Raw Normal View History

2017-08-17 22:00:37 +05:30
<script>
2018-11-18 11:00:15 +05:30
/**
* Renders a terminal button to open a web terminal.
* Used in environments table.
*/
import Icon from '~/vue_shared/components/icon.vue';
import tooltip from '../../vue_shared/directives/tooltip';
2017-08-17 22:00:37 +05:30
2018-11-18 11:00:15 +05:30
export default {
components: {
Icon,
},
directives: {
tooltip,
},
props: {
terminalPath: {
type: String,
required: false,
default: '',
2018-10-15 14:42:47 +05:30
},
2018-11-18 11:00:15 +05:30
},
computed: {
title() {
return 'Terminal';
2017-08-17 22:00:37 +05:30
},
2018-11-18 11:00:15 +05:30
},
};
2017-08-17 22:00:37 +05:30
</script>
<template>
<a
2017-09-10 17:25:29 +05:30
v-tooltip
2017-08-17 22:00:37 +05:30
:title="title"
:aria-label="title"
:href="terminalPath"
2018-11-08 19:23:39 +05:30
class="btn terminal-button d-none d-sm-none d-md-block"
data-container="body"
2018-03-17 18:26:18 +05:30
>
2018-11-18 11:00:15 +05:30
<icon name="terminal" />
2017-08-17 22:00:37 +05:30
</a>
</template>