Commit 908c6772 authored by Phil Hughes's avatar Phil Hughes

fixed breakpoint

disable stop button when loading
parent 3dcfb6cb
<script> <script>
import timeagoMixin from '../../vue_shared/mixins/timeago'; import timeagoMixin from '../../vue_shared/mixins/timeago';
import tooltip from '../../vue_shared/directives/tooltip'; import tooltip from '../../vue_shared/directives/tooltip';
import LoadingButton from '../../vue_shared/components/loading_button.vue';
import { visitUrl } from '../../lib/utils/url_utility'; import { visitUrl } from '../../lib/utils/url_utility';
import createFlash from '../../flash'; import createFlash from '../../flash';
import MemoryUsage from './memory_usage.vue'; import MemoryUsage from './memory_usage.vue';
...@@ -10,6 +11,7 @@ import MRWidgetService from '../services/mr_widget_service'; ...@@ -10,6 +11,7 @@ import MRWidgetService from '../services/mr_widget_service';
export default { export default {
name: 'Deployment', name: 'Deployment',
components: { components: {
LoadingButton,
MemoryUsage, MemoryUsage,
StatusIcon, StatusIcon,
}, },
...@@ -25,6 +27,11 @@ export default { ...@@ -25,6 +27,11 @@ export default {
required: true, required: true,
}, },
}, },
data() {
return {
isStopping: false,
};
},
computed: { computed: {
deployTimeago() { deployTimeago() {
return this.timeFormated(this.deployment.deployed_at); return this.timeFormated(this.deployment.deployed_at);
...@@ -43,19 +50,26 @@ export default { ...@@ -43,19 +50,26 @@ export default {
}, },
}, },
methods: { methods: {
stopEnvironment(deployment) { stopEnvironment() {
const msg = 'Are you sure you want to stop this environment?'; const msg = 'Are you sure you want to stop this environment?';
const isConfirmed = confirm(msg); // eslint-disable-line const isConfirmed = confirm(msg); // eslint-disable-line
if (isConfirmed) { if (isConfirmed) {
MRWidgetService.stopEnvironment(deployment.stop_url) this.isStopping = true;
MRWidgetService.stopEnvironment(this.deployment.stop_url)
.then(res => res.data) .then(res => res.data)
.then((data) => { .then((data) => {
if (data.redirect_url) { if (data.redirect_url) {
visitUrl(data.redirect_url); visitUrl(data.redirect_url);
} }
this.isStopping = false;
}) })
.catch(() => createFlash('Something went wrong while stopping this environment. Please try again.')); .catch(() => {
createFlash('Something went wrong while stopping this environment. Please try again.');
this.isStopping = false;
});
} }
}, },
}, },
...@@ -72,56 +86,57 @@ export default { ...@@ -72,56 +86,57 @@ export default {
</div> </div>
<div class="media-body"> <div class="media-body">
<div class="deploy-body"> <div class="deploy-body">
<span <template v-if="hasDeploymentMeta">
v-if="hasDeploymentMeta" <span>
> Deployed to
Deployed to </span>
</span> <span class="deploy-link">
<span class="deploy-link"> <a
<a :href="deployment.url"
v-if="hasDeploymentMeta" target="_blank"
:href="deployment.url" rel="noopener noreferrer nofollow"
target="_blank" class="js-deploy-meta"
rel="noopener noreferrer nofollow"
class="js-deploy-meta">
{{ deployment.name }}
</a>
</span>
<span
v-if="hasExternalUrls"
>
on
</span>
<span class="deploy-link">
<a
v-if="hasExternalUrls"
:href="deployment.external_url"
target="_blank"
rel="noopener noreferrer nofollow"
class="js-deploy-url">
<i
class="fa fa-external-link"
aria-hidden="true"
> >
</i> {{ deployment.name }}
{{ deployment.external_url_formatted }} </a>
</a> </span>
</span> </template>
<template v-if="hasExternalUrls">
<span>
on
</span>
<span class="deploy-link">
<a
:href="deployment.external_url"
target="_blank"
rel="noopener noreferrer nofollow"
class="js-deploy-url"
>
<i
class="fa fa-external-link"
aria-hidden="true"
>
</i>
{{ deployment.external_url_formatted }}
</a>
</span>
</template>
<span <span
v-if="hasDeploymentTime" v-if="hasDeploymentTime"
:data-title="deployment.deployed_at_formatted" :data-title="deployment.deployed_at_formatted"
class="js-deploy-time" class="js-deploy-time"
data-toggle="tooltip" data-toggle="tooltip"
data-placement="top"> data-placement="top"
>
{{ deployTimeago }} {{ deployTimeago }}
</span> </span>
<button <loading-button
type="button"
v-if="deployment.stop_url" v-if="deployment.stop_url"
@click="stopEnvironment(deployment)" container-class="btn btn-default btn-xs"
class="btn btn-default btn-xs"> label="Stop environment"
Stop environment :loading="isStopping"
</button> @click="stopEnvironment"
/>
</div> </div>
<memory-usage <memory-usage
v-if="hasMetrics" v-if="hasMetrics"
......
...@@ -740,7 +740,7 @@ ...@@ -740,7 +740,7 @@
display: flex; display: flex;
flex-wrap: wrap; flex-wrap: wrap;
@media (min-width: $screen-md-min) { @media (min-width: $screen-xs) {
flex-wrap: nowrap; flex-wrap: nowrap;
white-space: nowrap; white-space: nowrap;
} }
...@@ -761,7 +761,8 @@ ...@@ -761,7 +761,8 @@
min-width: 100px; min-width: 100px;
max-width: 150px; max-width: 150px;
@media (min-width: $screen-md-min) { @media (min-width: $screen-xs) {
min-width: 0;
max-width: 100%; max-width: 100%;
} }
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment