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

40 lines
700 B
Vue
Raw Normal View History

2017-08-17 22:00:37 +05:30
<script>
2020-10-24 23:57:45 +05:30
import { GlTooltipDirective, GlButton } from '@gitlab/ui';
2019-02-15 15:39:39 +05:30
import { s__ } from '~/locale';
2017-09-10 17:25:29 +05:30
2018-11-18 11:00:15 +05:30
/**
* Renders the external url link in environments table.
*/
export default {
components: {
2020-10-24 23:57:45 +05:30
GlButton,
2018-11-18 11:00:15 +05:30
},
directives: {
2019-02-15 15:39:39 +05:30
GlTooltip: GlTooltipDirective,
2018-11-18 11:00:15 +05:30
},
props: {
externalUrl: {
type: String,
required: true,
2018-10-15 14:42:47 +05:30
},
2018-11-18 11:00:15 +05:30
},
computed: {
title() {
return s__('Environments|Open live environment');
2018-03-17 18:26:18 +05:30
},
2018-11-18 11:00:15 +05:30
},
};
2017-08-17 22:00:37 +05:30
</script>
<template>
2020-10-24 23:57:45 +05:30
<gl-button
2019-02-15 15:39:39 +05:30
v-gl-tooltip
2018-11-08 19:23:39 +05:30
:title="title"
:aria-label="title"
:href="externalUrl"
2020-10-24 23:57:45 +05:30
class="external-url"
2017-08-17 22:00:37 +05:30
target="_blank"
2020-10-24 23:57:45 +05:30
icon="external-link"
2017-08-17 22:00:37 +05:30
rel="noopener noreferrer nofollow"
2020-10-24 23:57:45 +05:30
/>
2017-08-17 22:00:37 +05:30
</template>