debian-mirror-gitlab/app/assets/javascripts/clusters/components/application_row.vue

258 lines
7.1 KiB
Vue
Raw Normal View History

2018-03-17 18:26:18 +05:30
<script>
/* eslint-disable vue/require-default-prop */
import { s__, sprintf } from '../../locale';
import eventHub from '../event_hub';
2018-12-05 23:21:45 +05:30
import identicon from '../../vue_shared/components/identicon.vue';
2018-03-17 18:26:18 +05:30
import loadingButton from '../../vue_shared/components/loading_button.vue';
import {
2018-11-18 11:00:15 +05:30
APPLICATION_STATUS,
2018-03-17 18:26:18 +05:30
REQUEST_LOADING,
REQUEST_SUCCESS,
REQUEST_FAILURE,
} from '../constants';
export default {
components: {
loadingButton,
2018-12-05 23:21:45 +05:30
identicon,
2018-03-17 18:26:18 +05:30
},
props: {
id: {
type: String,
required: true,
},
title: {
type: String,
required: true,
},
titleLink: {
type: String,
required: false,
},
manageLink: {
type: String,
required: false,
},
2018-12-05 23:21:45 +05:30
logoUrl: {
type: String,
required: false,
default: null,
},
disabled: {
type: Boolean,
required: false,
default: false,
},
2018-03-17 18:26:18 +05:30
status: {
type: String,
required: false,
},
statusReason: {
type: String,
required: false,
},
requestStatus: {
type: String,
required: false,
},
requestReason: {
type: String,
required: false,
},
2018-11-08 19:23:39 +05:30
installApplicationRequestParams: {
type: Object,
required: false,
default: () => ({}),
},
2018-03-17 18:26:18 +05:30
},
computed: {
2018-11-18 11:00:15 +05:30
isUnknownStatus() {
return !this.isKnownStatus && this.status !== null;
},
isKnownStatus() {
return Object.values(APPLICATION_STATUS).includes(this.status);
},
2018-12-05 23:21:45 +05:30
isInstalled() {
return (
this.status === APPLICATION_STATUS.INSTALLED || this.status === APPLICATION_STATUS.UPDATED
);
},
hasLogo() {
return !!this.logoUrl;
},
identiconId() {
// generate a deterministic integer id for the identicon background
return this.id.charCodeAt(0);
},
2018-03-17 18:26:18 +05:30
rowJsClass() {
return `js-cluster-application-row-${this.id}`;
},
installButtonLoading() {
return !this.status ||
2018-11-18 11:00:15 +05:30
this.status === APPLICATION_STATUS.SCHEDULED ||
this.status === APPLICATION_STATUS.INSTALLING ||
2018-03-17 18:26:18 +05:30
this.requestStatus === REQUEST_LOADING;
},
installButtonDisabled() {
2018-11-18 11:00:15 +05:30
// Avoid the potential for the real-time data to say APPLICATION_STATUS.INSTALLABLE but
2018-03-17 18:26:18 +05:30
// we already made a request to install and are just waiting for the real-time
// to sync up.
2018-11-18 11:00:15 +05:30
return ((this.status !== APPLICATION_STATUS.INSTALLABLE
&& this.status !== APPLICATION_STATUS.ERROR) ||
2018-03-17 18:26:18 +05:30
this.requestStatus === REQUEST_LOADING ||
2018-11-18 11:00:15 +05:30
this.requestStatus === REQUEST_SUCCESS) && this.isKnownStatus;
2018-03-17 18:26:18 +05:30
},
installButtonLabel() {
let label;
if (
2018-11-18 11:00:15 +05:30
this.status === APPLICATION_STATUS.NOT_INSTALLABLE ||
this.status === APPLICATION_STATUS.INSTALLABLE ||
this.status === APPLICATION_STATUS.ERROR ||
this.isUnknownStatus
2018-03-17 18:26:18 +05:30
) {
label = s__('ClusterIntegration|Install');
2018-11-18 11:00:15 +05:30
} else if (this.status === APPLICATION_STATUS.SCHEDULED ||
this.status === APPLICATION_STATUS.INSTALLING) {
2018-03-17 18:26:18 +05:30
label = s__('ClusterIntegration|Installing');
2018-11-18 11:00:15 +05:30
} else if (this.status === APPLICATION_STATUS.INSTALLED ||
this.status === APPLICATION_STATUS.UPDATED) {
2018-03-17 18:26:18 +05:30
label = s__('ClusterIntegration|Installed');
}
return label;
},
showManageButton() {
2018-11-18 11:00:15 +05:30
return this.manageLink && this.status === APPLICATION_STATUS.INSTALLED;
2018-03-17 18:26:18 +05:30
},
manageButtonLabel() {
return s__('ClusterIntegration|Manage');
},
hasError() {
2018-11-18 11:00:15 +05:30
return this.status === APPLICATION_STATUS.ERROR ||
2018-03-17 18:26:18 +05:30
this.requestStatus === REQUEST_FAILURE;
},
generalErrorDescription() {
return sprintf(
s__('ClusterIntegration|Something went wrong while installing %{title}'), {
title: this.title,
},
);
},
},
methods: {
installClicked() {
2018-11-08 19:23:39 +05:30
eventHub.$emit('installApplication', {
id: this.id,
params: this.installApplicationRequestParams,
});
2018-03-17 18:26:18 +05:30
},
},
};
</script>
<template>
<div
2018-12-05 23:21:45 +05:30
:class="[
rowJsClass,
isInstalled && 'cluster-application-installed',
disabled && 'cluster-application-disabled'
]"
class="cluster-application-row gl-responsive-table-row gl-responsive-table-row-col-span"
2018-03-17 18:26:18 +05:30
>
<div
class="gl-responsive-table-row-layout"
role="row"
>
2018-12-05 23:21:45 +05:30
<div
class="table-section append-right-8 section-align-top"
2018-03-17 18:26:18 +05:30
role="gridcell"
>
2018-12-05 23:21:45 +05:30
<img
v-if="hasLogo"
:src="logoUrl"
:alt="`${title} logo`"
class="cluster-application-logo avatar s40"
/>
<identicon
v-else
:entity-id="identiconId"
:entity-name="title"
size-class="s40"
/>
</div>
2018-03-17 18:26:18 +05:30
<div
2018-12-05 23:21:45 +05:30
class="table-section cluster-application-description section-wrap"
2018-03-17 18:26:18 +05:30
role="gridcell"
>
2018-12-05 23:21:45 +05:30
<strong>
<a
v-if="titleLink"
:href="titleLink"
target="blank"
rel="noopener noreferrer"
class="js-cluster-application-title"
>
{{ title }}
</a>
<span
v-else
class="js-cluster-application-title"
>
{{ title }}
</span>
</strong>
2018-03-27 19:54:05 +05:30
<slot name="description"></slot>
2018-12-05 23:21:45 +05:30
<div
v-if="hasError || isUnknownStatus"
class="cluster-application-error text-danger prepend-top-10"
>
<p class="js-cluster-application-general-error-message append-bottom-0">
{{ generalErrorDescription }}
</p>
<ul v-if="statusReason || requestReason">
<li
v-if="statusReason"
class="js-cluster-application-status-error-message"
>
{{ statusReason }}
</li>
<li
v-if="requestReason"
class="js-cluster-application-request-error-message"
>
{{ requestReason }}
</li>
</ul>
</div>
2018-03-17 18:26:18 +05:30
</div>
<div
2018-12-05 23:21:45 +05:30
:class="{ 'section-25': showManageButton, 'section-15': !showManageButton }"
2018-11-08 19:23:39 +05:30
class="table-section table-button-footer section-align-top"
2018-03-17 18:26:18 +05:30
role="gridcell"
>
<div
v-if="showManageButton"
class="btn-group table-action-buttons"
>
<a
:href="manageLink"
2018-12-05 23:21:45 +05:30
:class="{ disabled: disabled }"
2018-11-08 19:23:39 +05:30
class="btn"
2018-03-17 18:26:18 +05:30
>
{{ manageButtonLabel }}
</a>
</div>
<div class="btn-group table-action-buttons">
<loading-button
:loading="installButtonLoading"
2018-12-05 23:21:45 +05:30
:disabled="disabled || installButtonDisabled"
2018-03-17 18:26:18 +05:30
:label="installButtonLabel"
2018-11-08 19:23:39 +05:30
class="js-cluster-application-install-button"
2018-03-17 18:26:18 +05:30
@click="installClicked"
/>
</div>
</div>
</div>
</div>
</template>