60 lines
1.2 KiB
Vue
60 lines
1.2 KiB
Vue
<script>
|
|
import tooltip from '../../../vue_shared/directives/tooltip';
|
|
import icon from '../../../vue_shared/components/icon.vue';
|
|
import { dasherize } from '../../../lib/utils/text_utility';
|
|
/**
|
|
* Renders either a cancel, retry or play icon pointing to the given path.
|
|
* TODO: Remove UJS from here and use an async request instead.
|
|
*/
|
|
export default {
|
|
components: {
|
|
icon,
|
|
},
|
|
|
|
directives: {
|
|
tooltip,
|
|
},
|
|
|
|
props: {
|
|
tooltipText: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
|
|
link: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
|
|
actionMethod: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
|
|
actionIcon: {
|
|
type: String,
|
|
required: true,
|
|
},
|
|
},
|
|
|
|
computed: {
|
|
cssClass() {
|
|
const actionIconDash = dasherize(this.actionIcon);
|
|
return `${actionIconDash} js-icon-${actionIconDash}`;
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
<template>
|
|
<a
|
|
v-tooltip
|
|
:data-method="actionMethod"
|
|
:title="tooltipText"
|
|
:href="link"
|
|
class="ci-action-icon-container ci-action-icon-wrapper"
|
|
:class="cssClass"
|
|
data-container="body"
|
|
>
|
|
<icon :name="actionIcon" />
|
|
</a>
|
|
</template>
|