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

44 lines
779 B
Vue
Raw Normal View History

2017-08-17 22:00:37 +05:30
<script>
2018-03-17 18:26:18 +05:30
/**
* Renders the Monitoring (Metrics) link in environments table.
*/
2018-10-15 14:42:47 +05:30
import Icon from '~/vue_shared/components/icon.vue';
2018-03-17 18:26:18 +05:30
import tooltip from '../../vue_shared/directives/tooltip';
2017-09-10 17:25:29 +05:30
2018-03-17 18:26:18 +05:30
export default {
2018-10-15 14:42:47 +05:30
components: {
Icon,
},
2018-03-17 18:26:18 +05:30
directives: {
tooltip,
2017-08-17 22:00:37 +05:30
},
2018-03-17 18:26:18 +05:30
props: {
monitoringUrl: {
type: String,
required: true,
},
},
computed: {
title() {
return 'Monitoring';
},
2017-08-17 22:00:37 +05:30
},
2018-03-17 18:26:18 +05:30
};
2017-08-17 22:00:37 +05:30
</script>
<template>
<a
2017-09-10 17:25:29 +05:30
v-tooltip
class="btn monitoring-url hidden-xs hidden-sm"
2017-08-17 22:00:37 +05:30
data-container="body"
rel="noopener noreferrer nofollow"
:href="monitoringUrl"
:title="title"
2018-03-17 18:26:18 +05:30
:aria-label="title"
>
2018-10-15 14:42:47 +05:30
<icon
name="chart"
:size="12"
/>
2017-08-17 22:00:37 +05:30
</a>
</template>