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

100 lines
2 KiB
Vue
Raw Normal View History

2017-08-17 22:00:37 +05:30
<script>
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 eventHub from '../event_hub';
import loadingIcon from '../../vue_shared/components/loading_icon.vue';
import tooltip from '../../vue_shared/directives/tooltip';
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
export default {
directives: {
tooltip,
2017-08-17 22:00:37 +05:30
},
2018-03-17 18:26:18 +05:30
components: {
loadingIcon,
2018-10-15 14:42:47 +05:30
Icon,
2018-03-17 18:26:18 +05:30
},
props: {
actions: {
type: Array,
required: false,
default: () => [],
},
},
data() {
return {
isLoading: false,
};
},
computed: {
title() {
return 'Deploy to...';
},
2017-08-17 22:00:37 +05:30
},
2018-03-17 18:26:18 +05:30
methods: {
onClickAction(endpoint) {
this.isLoading = true;
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
eventHub.$emit('postAction', endpoint);
},
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
isActionDisabled(action) {
if (action.playable === undefined) {
return false;
}
2017-08-17 22:00:37 +05:30
2018-03-17 18:26:18 +05:30
return !action.playable;
},
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>
<div
class="btn-group"
role="group">
<button
2017-09-10 17:25:29 +05:30
v-tooltip
2018-11-08 19:23:39 +05:30
:title="title"
:aria-label="title"
:disabled="isLoading"
2017-08-17 22:00:37 +05:30
type="button"
2017-09-10 17:25:29 +05:30
class="dropdown btn btn-default dropdown-new js-dropdown-play-icon-container"
2017-08-17 22:00:37 +05:30
data-container="body"
data-toggle="dropdown"
2018-03-17 18:26:18 +05:30
>
2017-08-17 22:00:37 +05:30
<span>
2018-10-15 14:42:47 +05:30
<icon
:size="12"
2018-11-08 19:23:39 +05:30
name="play"
2018-10-15 14:42:47 +05:30
/>
2017-08-17 22:00:37 +05:30
<i
class="fa fa-caret-down"
2018-03-17 18:26:18 +05:30
aria-hidden="true"
>
</i>
2017-09-10 17:25:29 +05:30
<loading-icon v-if="isLoading" />
2017-08-17 22:00:37 +05:30
</span>
</button>
2018-11-08 19:23:39 +05:30
<ul class="dropdown-menu dropdown-menu-right">
2018-03-17 18:26:18 +05:30
<li
v-for="(action, i) in actions"
:key="i">
2017-08-17 22:00:37 +05:30
<button
2018-11-08 19:23:39 +05:30
:class="{ disabled: isActionDisabled(action) }"
:disabled="isActionDisabled(action)"
2017-08-17 22:00:37 +05:30
type="button"
class="js-manual-action-link no-btn btn"
@click="onClickAction(action.play_path)"
2018-03-17 18:26:18 +05:30
>
2018-10-15 14:42:47 +05:30
<icon
:size="12"
2018-11-08 19:23:39 +05:30
name="play"
2018-10-15 14:42:47 +05:30
/>
2017-08-17 22:00:37 +05:30
<span>
2018-03-17 18:26:18 +05:30
{{ action.name }}
2017-08-17 22:00:37 +05:30
</span>
</button>
</li>
</ul>
</div>
</template>