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

404 lines
11 KiB
Vue
Raw Normal View History

2018-03-17 18:26:18 +05:30
<script>
2018-12-13 13:39:08 +05:30
/* eslint-disable vue/require-default-prop */
2019-10-12 21:52:04 +05:30
/* eslint-disable @gitlab/vue-i18n/no-bare-strings */
2019-07-31 22:56:46 +05:30
import { GlLink, GlModalDirective } from '@gitlab/ui';
2019-03-02 22:35:43 +05:30
import TimeagoTooltip from '../../vue_shared/components/time_ago_tooltip.vue';
2019-09-04 21:01:54 +05:30
import { s__, __, sprintf } from '~/locale';
2018-12-13 13:39:08 +05:30
import eventHub from '../event_hub';
import identicon from '../../vue_shared/components/identicon.vue';
import loadingButton from '../../vue_shared/components/loading_button.vue';
2019-07-31 22:56:46 +05:30
import UninstallApplicationButton from './uninstall_application_button.vue';
import UninstallApplicationConfirmationModal from './uninstall_application_confirmation_modal.vue';
import { APPLICATION_STATUS } from '../constants';
2018-03-17 18:26:18 +05:30
2018-12-13 13:39:08 +05:30
export default {
components: {
loadingButton,
identicon,
2019-03-02 22:35:43 +05:30
TimeagoTooltip,
GlLink,
2019-07-31 22:56:46 +05:30
UninstallApplicationButton,
UninstallApplicationConfirmationModal,
},
directives: {
GlModalDirective,
2018-12-13 13:39:08 +05:30
},
props: {
id: {
type: String,
required: true,
},
title: {
type: String,
required: true,
},
titleLink: {
type: String,
required: false,
},
manageLink: {
type: String,
required: false,
},
logoUrl: {
type: String,
required: false,
default: null,
},
disabled: {
type: Boolean,
required: false,
default: false,
},
2019-07-31 22:56:46 +05:30
uninstallable: {
type: Boolean,
required: false,
default: false,
},
2018-12-13 13:39:08 +05:30
status: {
type: String,
required: false,
},
statusReason: {
type: String,
required: false,
},
2019-07-31 22:56:46 +05:30
requestReason: {
2018-12-13 13:39:08 +05:30
type: String,
required: false,
},
2019-07-31 22:56:46 +05:30
installed: {
type: Boolean,
2018-12-13 13:39:08 +05:30
required: false,
2019-07-31 22:56:46 +05:30
default: false,
},
installFailed: {
type: Boolean,
required: false,
default: false,
2018-12-13 13:39:08 +05:30
},
2019-12-21 20:55:43 +05:30
installedVia: {
type: String,
required: false,
},
2019-03-02 22:35:43 +05:30
version: {
type: String,
required: false,
},
chartRepo: {
type: String,
required: false,
},
2019-09-04 21:01:54 +05:30
updateAvailable: {
2019-03-02 22:35:43 +05:30
type: Boolean,
required: false,
},
2019-09-04 21:01:54 +05:30
updateable: {
type: Boolean,
default: true,
},
2019-07-31 22:56:46 +05:30
updateSuccessful: {
type: Boolean,
required: false,
default: false,
},
updateFailed: {
type: Boolean,
required: false,
default: false,
},
uninstallFailed: {
type: Boolean,
required: false,
default: false,
},
uninstallSuccessful: {
type: Boolean,
required: false,
default: false,
},
2018-12-13 13:39:08 +05:30
installApplicationRequestParams: {
type: Object,
required: false,
default: () => ({}),
},
},
computed: {
isUnknownStatus() {
return !this.isKnownStatus && this.status !== null;
},
isKnownStatus() {
return Object.values(APPLICATION_STATUS).includes(this.status);
},
2019-03-02 22:35:43 +05:30
isInstalling() {
2019-07-31 22:56:46 +05:30
return this.status === APPLICATION_STATUS.INSTALLING;
2019-03-02 22:35:43 +05:30
},
canInstall() {
return (
this.status === APPLICATION_STATUS.NOT_INSTALLABLE ||
this.status === APPLICATION_STATUS.INSTALLABLE ||
this.isUnknownStatus
2018-12-13 13:39:08 +05:30
);
},
hasLogo() {
2019-09-04 21:01:54 +05:30
return Boolean(this.logoUrl);
2018-12-13 13:39:08 +05:30
},
identiconId() {
// generate a deterministic integer id for the identicon background
return this.id.charCodeAt(0);
},
rowJsClass() {
return `js-cluster-application-row-${this.id}`;
},
2019-07-31 22:56:46 +05:30
displayUninstallButton() {
return this.installed && this.uninstallable;
},
displayInstallButton() {
return !this.installed || !this.uninstallable;
},
2018-12-13 13:39:08 +05:30
installButtonLoading() {
2019-07-31 22:56:46 +05:30
return !this.status || this.isInstalling;
2018-12-13 13:39:08 +05:30
},
installButtonDisabled() {
// Avoid the potential for the real-time data to say APPLICATION_STATUS.INSTALLABLE but
// we already made a request to install and are just waiting for the real-time
// to sync up.
return (
((this.status !== APPLICATION_STATUS.INSTALLABLE &&
this.status !== APPLICATION_STATUS.ERROR) ||
2019-03-02 22:35:43 +05:30
this.isInstalling) &&
2018-12-13 13:39:08 +05:30
this.isKnownStatus
);
},
installButtonLabel() {
let label;
2019-03-02 22:35:43 +05:30
if (this.canInstall) {
2019-09-04 21:01:54 +05:30
label = __('Install');
2019-03-02 22:35:43 +05:30
} else if (this.isInstalling) {
2019-09-04 21:01:54 +05:30
label = __('Installing');
2019-07-31 22:56:46 +05:30
} else if (this.installed) {
2019-09-04 21:01:54 +05:30
label = __('Installed');
2018-12-13 13:39:08 +05:30
}
2018-03-17 18:26:18 +05:30
2018-12-13 13:39:08 +05:30
return label;
},
showManageButton() {
return this.manageLink && this.status === APPLICATION_STATUS.INSTALLED;
},
manageButtonLabel() {
2019-09-04 21:01:54 +05:30
return __('Manage');
2018-12-13 13:39:08 +05:30
},
hasError() {
2019-07-31 22:56:46 +05:30
return this.installFailed || this.uninstallFailed;
2018-12-13 13:39:08 +05:30
},
generalErrorDescription() {
2019-07-31 22:56:46 +05:30
let errorDescription;
if (this.installFailed) {
errorDescription = s__('ClusterIntegration|Something went wrong while installing %{title}');
} else if (this.uninstallFailed) {
errorDescription = s__(
'ClusterIntegration|Something went wrong while uninstalling %{title}',
);
}
return sprintf(errorDescription, { title: this.title });
2018-12-13 13:39:08 +05:30
},
2019-03-02 22:35:43 +05:30
versionLabel() {
2019-07-31 22:56:46 +05:30
if (this.updateFailed) {
2019-09-04 21:01:54 +05:30
return __('Update failed');
} else if (this.isUpdating) {
return __('Updating');
2019-03-02 22:35:43 +05:30
}
2019-09-30 21:07:59 +05:30
return this.updateSuccessful ? __('Updated to') : __('Updated');
2019-03-02 22:35:43 +05:30
},
2019-09-04 21:01:54 +05:30
updateFailureDescription() {
2019-07-07 11:18:12 +05:30
return s__('ClusterIntegration|Update failed. Please check the logs and try again.');
2019-03-02 22:35:43 +05:30
},
2019-09-04 21:01:54 +05:30
updateSuccessDescription() {
return sprintf(s__('ClusterIntegration|%{title} updated successfully.'), {
2019-03-02 22:35:43 +05:30
title: this.title,
});
},
2019-09-04 21:01:54 +05:30
updateButtonLabel() {
2019-03-02 22:35:43 +05:30
let label;
2019-09-04 21:01:54 +05:30
if (this.updateAvailable && !this.updateFailed && !this.isUpdating) {
label = __('Update');
} else if (this.isUpdating) {
label = __('Updating');
2019-07-31 22:56:46 +05:30
} else if (this.updateFailed) {
2019-09-04 21:01:54 +05:30
label = __('Retry update');
2019-03-02 22:35:43 +05:30
}
return label;
},
2019-09-04 21:01:54 +05:30
isUpdating() {
2019-03-02 22:35:43 +05:30
// Since upgrading is handled asynchronously on the backend we need this check to prevent any delay on the frontend
2019-07-31 22:56:46 +05:30
return this.status === APPLICATION_STATUS.UPDATING;
2019-03-02 22:35:43 +05:30
},
2019-09-04 21:01:54 +05:30
shouldShowUpdateDetails() {
2019-07-07 11:18:12 +05:30
// This method only returns true when;
2019-09-04 21:01:54 +05:30
// Update was successful OR Update failed
// AND new update is unavailable AND version information is present.
return (this.updateSuccessful || this.updateFailed) && !this.updateAvailable && this.version;
2019-07-31 22:56:46 +05:30
},
uninstallSuccessDescription() {
return sprintf(s__('ClusterIntegration|%{title} uninstalled successfully.'), {
title: this.title,
});
2019-07-07 11:18:12 +05:30
},
2019-03-02 22:35:43 +05:30
},
watch: {
2019-07-31 22:56:46 +05:30
updateSuccessful(updateSuccessful) {
if (updateSuccessful) {
2019-09-04 21:01:54 +05:30
this.$toast.show(this.updateSuccessDescription);
2019-07-31 22:56:46 +05:30
}
},
uninstallSuccessful(uninstallSuccessful) {
if (uninstallSuccessful) {
this.$toast.show(this.uninstallSuccessDescription);
2019-03-02 22:35:43 +05:30
}
},
2018-12-13 13:39:08 +05:30
},
methods: {
installClicked() {
eventHub.$emit('installApplication', {
id: this.id,
params: this.installApplicationRequestParams,
});
},
2019-09-04 21:01:54 +05:30
updateClicked() {
eventHub.$emit('updateApplication', {
2019-03-02 22:35:43 +05:30
id: this.id,
params: this.installApplicationRequestParams,
});
},
2019-07-31 22:56:46 +05:30
uninstallConfirmed() {
eventHub.$emit('uninstallApplication', {
id: this.id,
});
2019-03-02 22:35:43 +05:30
},
2018-12-13 13:39:08 +05:30
},
};
2018-03-17 18:26:18 +05:30
</script>
<template>
<div
2018-12-05 23:21:45 +05:30
:class="[
rowJsClass,
2019-07-31 22:56:46 +05:30
installed && 'cluster-application-installed',
2019-02-15 15:39:39 +05:30
disabled && 'cluster-application-disabled',
2018-12-05 23:21:45 +05:30
]"
class="cluster-application-row gl-responsive-table-row gl-responsive-table-row-col-span"
2018-03-17 18:26:18 +05:30
>
2019-02-15 15:39:39 +05:30
<div class="gl-responsive-table-row-layout" role="row">
<div class="table-section append-right-8 section-align-top" 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"
/>
2019-02-15 15:39:39 +05:30
<identicon v-else :entity-id="identiconId" :entity-name="title" size-class="s40" />
2018-12-05 23:21:45 +05:30
</div>
2019-02-15 15:39:39 +05:30
<div class="table-section cluster-application-description section-wrap" 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"
2019-07-31 22:56:46 +05:30
>{{ title }}</a
2018-12-05 23:21:45 +05:30
>
2019-07-31 22:56:46 +05:30
<span v-else class="js-cluster-application-title">{{ title }}</span>
2018-12-05 23:21:45 +05:30
</strong>
2019-12-21 20:55:43 +05:30
<span
v-if="installedVia"
class="js-cluster-application-installed-via"
v-html="installedVia"
></span>
2018-03-27 19:54:05 +05:30
<slot name="description"></slot>
2019-07-31 22:56:46 +05:30
<div v-if="hasError" class="cluster-application-error text-danger prepend-top-10">
2018-12-05 23:21:45 +05:30
<p class="js-cluster-application-general-error-message append-bottom-0">
{{ generalErrorDescription }}
</p>
<ul v-if="statusReason || requestReason">
2019-02-15 15:39:39 +05:30
<li v-if="statusReason" class="js-cluster-application-status-error-message">
2018-12-05 23:21:45 +05:30
{{ statusReason }}
</li>
2019-02-15 15:39:39 +05:30
<li v-if="requestReason" class="js-cluster-application-request-error-message">
2018-12-05 23:21:45 +05:30
{{ requestReason }}
</li>
</ul>
</div>
2019-03-02 22:35:43 +05:30
2019-09-04 21:01:54 +05:30
<div v-if="updateable">
<div
v-if="shouldShowUpdateDetails"
class="form-text text-muted label p-0 js-cluster-application-update-details"
2019-03-02 22:35:43 +05:30
>
2019-09-04 21:01:54 +05:30
{{ versionLabel }}
<gl-link
v-if="updateSuccessful"
:href="chartRepo"
target="_blank"
class="js-cluster-application-update-version"
>chart v{{ version }}</gl-link
>
</div>
<div
v-if="updateFailed && !isUpdating"
class="bs-callout bs-callout-danger cluster-application-banner mt-2 mb-0 js-cluster-application-update-details"
>
{{ updateFailureDescription }}
</div>
<loading-button
v-if="updateAvailable || updateFailed || isUpdating"
class="btn btn-primary js-cluster-application-update-button mt-2"
:loading="isUpdating"
:disabled="isUpdating"
:label="updateButtonLabel"
@click="updateClicked"
/>
2019-03-02 22:35:43 +05:30
</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"
>
2019-02-15 15:39:39 +05:30
<div v-if="showManageButton" class="btn-group table-action-buttons">
2019-07-31 22:56:46 +05:30
<a :href="manageLink" :class="{ disabled: disabled }" class="btn">{{
manageButtonLabel
}}</a>
2018-03-17 18:26:18 +05:30
</div>
<div class="btn-group table-action-buttons">
<loading-button
2019-07-31 22:56:46 +05:30
v-if="displayInstallButton"
2018-03-17 18:26:18 +05:30
: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"
/>
2019-07-31 22:56:46 +05:30
<uninstall-application-button
v-if="displayUninstallButton"
v-gl-modal-directive="'uninstall-' + id"
:status="status"
class="js-cluster-application-uninstall-button"
/>
<uninstall-application-confirmation-modal
:application="id"
:application-title="title"
@confirm="uninstallConfirmed()"
/>
2018-03-17 18:26:18 +05:30
</div>
</div>
</div>
</div>
</template>