debian-mirror-gitlab/app/assets/javascripts/clusters/clusters_bundle.js

330 lines
10 KiB
JavaScript
Raw Normal View History

2018-03-17 18:26:18 +05:30
import Visibility from 'visibilityjs';
import Vue from 'vue';
2019-07-31 22:56:46 +05:30
import { GlToast } from '@gitlab/ui';
2019-02-15 15:39:39 +05:30
import PersistentUserCallout from '../persistent_user_callout';
2018-03-17 18:26:18 +05:30
import { s__, sprintf } from '../locale';
import Flash from '../flash';
import Poll from '../lib/utils/poll';
import initSettingsPanels from '../settings_panels';
import eventHub from './event_hub';
2019-07-31 22:56:46 +05:30
import { APPLICATION_STATUS, INGRESS, INGRESS_DOMAIN_SUFFIX } from './constants';
2018-03-17 18:26:18 +05:30
import ClustersService from './services/clusters_service';
import ClustersStore from './stores/clusters_store';
2019-02-15 15:39:39 +05:30
import Applications from './components/applications.vue';
2018-03-17 18:26:18 +05:30
import setupToggleButtons from '../toggle_buttons';
2019-07-31 22:56:46 +05:30
Vue.use(GlToast);
2018-03-17 18:26:18 +05:30
/**
* Cluster page has 2 separate parts:
* Toggle button and applications section
*
* - Polling status while creating or scheduled
* - Update status area with the response result
*/
export default class Clusters {
constructor() {
const {
statusPath,
installHelmPath,
installIngressPath,
2019-02-15 15:39:39 +05:30
installCertManagerPath,
2018-03-17 18:26:18 +05:30
installRunnerPath,
2018-11-08 19:23:39 +05:30
installJupyterPath,
2018-12-13 13:39:08 +05:30
installKnativePath,
2019-07-07 11:18:12 +05:30
updateKnativePath,
2018-03-17 18:26:18 +05:30
installPrometheusPath,
managePrometheusPath,
2019-02-15 15:39:39 +05:30
hasRbac,
clusterType,
2018-03-17 18:26:18 +05:30
clusterStatus,
clusterStatusReason,
helpPath,
ingressHelpPath,
2018-03-27 19:54:05 +05:30
ingressDnsHelpPath,
2018-03-17 18:26:18 +05:30
} = document.querySelector('.js-edit-cluster-form').dataset;
this.store = new ClustersStore();
2018-03-27 19:54:05 +05:30
this.store.setHelpPaths(helpPath, ingressHelpPath, ingressDnsHelpPath);
2018-03-17 18:26:18 +05:30
this.store.setManagePrometheusPath(managePrometheusPath);
this.store.updateStatus(clusterStatus);
this.store.updateStatusReason(clusterStatusReason);
2019-02-15 15:39:39 +05:30
this.store.updateRbac(hasRbac);
2018-03-17 18:26:18 +05:30
this.service = new ClustersService({
endpoint: statusPath,
installHelmEndpoint: installHelmPath,
installIngressEndpoint: installIngressPath,
2019-02-15 15:39:39 +05:30
installCertManagerEndpoint: installCertManagerPath,
2018-03-17 18:26:18 +05:30
installRunnerEndpoint: installRunnerPath,
installPrometheusEndpoint: installPrometheusPath,
2018-11-08 19:23:39 +05:30
installJupyterEndpoint: installJupyterPath,
2018-12-13 13:39:08 +05:30
installKnativeEndpoint: installKnativePath,
2019-07-07 11:18:12 +05:30
updateKnativeEndpoint: updateKnativePath,
2018-03-17 18:26:18 +05:30
});
this.installApplication = this.installApplication.bind(this);
this.showToken = this.showToken.bind(this);
this.errorContainer = document.querySelector('.js-cluster-error');
this.successContainer = document.querySelector('.js-cluster-success');
this.creatingContainer = document.querySelector('.js-cluster-creating');
this.errorReasonContainer = this.errorContainer.querySelector('.js-error-reason');
this.successApplicationContainer = document.querySelector('.js-cluster-application-notice');
this.showTokenButton = document.querySelector('.js-show-cluster-token');
this.tokenField = document.querySelector('.js-cluster-token');
2019-07-07 11:18:12 +05:30
this.ingressDomainHelpText = document.querySelector('.js-ingress-domain-help-text');
this.ingressDomainSnippet = this.ingressDomainHelpText.querySelector(
'.js-ingress-domain-snippet',
);
2018-03-17 18:26:18 +05:30
2019-02-15 15:39:39 +05:30
Clusters.initDismissableCallout();
2018-03-17 18:26:18 +05:30
initSettingsPanels();
setupToggleButtons(document.querySelector('.js-cluster-enable-toggle-area'));
2019-02-15 15:39:39 +05:30
this.initApplications(clusterType);
2018-03-17 18:26:18 +05:30
if (this.store.state.status !== 'created') {
this.updateContainer(null, this.store.state.status, this.store.state.statusReason);
}
this.addListeners();
if (statusPath) {
this.initPolling();
}
}
2019-02-15 15:39:39 +05:30
initApplications(type) {
2018-11-08 19:23:39 +05:30
const { store } = this;
2018-03-17 18:26:18 +05:30
const el = document.querySelector('#js-cluster-applications');
this.applications = new Vue({
el,
data() {
return {
state: store.state,
};
},
render(createElement) {
2019-02-15 15:39:39 +05:30
return createElement(Applications, {
2018-03-17 18:26:18 +05:30
props: {
2019-02-15 15:39:39 +05:30
type,
2018-03-17 18:26:18 +05:30
applications: this.state.applications,
helpPath: this.state.helpPath,
ingressHelpPath: this.state.ingressHelpPath,
managePrometheusPath: this.state.managePrometheusPath,
2018-03-27 19:54:05 +05:30
ingressDnsHelpPath: this.state.ingressDnsHelpPath,
2019-02-15 15:39:39 +05:30
rbac: this.state.rbac,
2018-03-17 18:26:18 +05:30
},
});
},
});
}
2019-02-15 15:39:39 +05:30
static initDismissableCallout() {
const callout = document.querySelector('.js-cluster-security-warning');
2019-07-07 11:18:12 +05:30
PersistentUserCallout.factory(callout);
2019-02-15 15:39:39 +05:30
}
2018-03-17 18:26:18 +05:30
addListeners() {
if (this.showTokenButton) this.showTokenButton.addEventListener('click', this.showToken);
eventHub.$on('installApplication', this.installApplication);
2019-03-02 22:35:43 +05:30
eventHub.$on('upgradeApplication', data => this.upgradeApplication(data));
eventHub.$on('dismissUpgradeSuccess', appId => this.dismissUpgradeSuccess(appId));
2019-07-07 11:18:12 +05:30
eventHub.$on('saveKnativeDomain', data => this.saveKnativeDomain(data));
eventHub.$on('setKnativeHostname', data => this.setKnativeHostname(data));
2019-07-31 22:56:46 +05:30
eventHub.$on('uninstallApplication', data => this.uninstallApplication(data));
2018-03-17 18:26:18 +05:30
}
removeListeners() {
if (this.showTokenButton) this.showTokenButton.removeEventListener('click', this.showToken);
eventHub.$off('installApplication', this.installApplication);
2019-03-02 22:35:43 +05:30
eventHub.$off('upgradeApplication', this.upgradeApplication);
eventHub.$off('dismissUpgradeSuccess', this.dismissUpgradeSuccess);
2019-07-07 11:18:12 +05:30
eventHub.$off('saveKnativeDomain');
eventHub.$off('setKnativeHostname');
2019-07-31 22:56:46 +05:30
eventHub.$off('uninstallApplication');
2018-03-17 18:26:18 +05:30
}
initPolling() {
this.poll = new Poll({
resource: this.service,
method: 'fetchData',
successCallback: data => this.handleSuccess(data),
errorCallback: () => Clusters.handleError(),
});
if (!Visibility.hidden()) {
this.poll.makeRequest();
} else {
2018-11-20 20:47:30 +05:30
this.service
.fetchData()
2018-03-17 18:26:18 +05:30
.then(data => this.handleSuccess(data))
.catch(() => Clusters.handleError());
}
Visibility.change(() => {
if (!Visibility.hidden() && !this.destroyed) {
this.poll.restart();
} else {
this.poll.stop();
}
});
}
static handleError() {
Flash(s__('ClusterIntegration|Something went wrong on our end.'));
}
handleSuccess(data) {
const prevStatus = this.store.state.status;
const prevApplicationMap = Object.assign({}, this.store.state.applications);
this.store.updateStateFromServer(data.data);
this.checkForNewInstalls(prevApplicationMap, this.store.state.applications);
this.updateContainer(prevStatus, this.store.state.status, this.store.state.statusReason);
2019-07-07 11:18:12 +05:30
this.toggleIngressDomainHelpText(
prevApplicationMap[INGRESS],
this.store.state.applications[INGRESS],
);
2018-03-17 18:26:18 +05:30
}
showToken() {
const type = this.tokenField.getAttribute('type');
if (type === 'password') {
this.tokenField.setAttribute('type', 'text');
2018-11-18 11:00:15 +05:30
this.showTokenButton.textContent = s__('ClusterIntegration|Hide');
2018-03-17 18:26:18 +05:30
} else {
this.tokenField.setAttribute('type', 'password');
2018-11-18 11:00:15 +05:30
this.showTokenButton.textContent = s__('ClusterIntegration|Show');
2018-03-17 18:26:18 +05:30
}
}
hideAll() {
this.errorContainer.classList.add('hidden');
this.successContainer.classList.add('hidden');
this.creatingContainer.classList.add('hidden');
}
checkForNewInstalls(prevApplicationMap, newApplicationMap) {
const appTitles = Object.keys(newApplicationMap)
2018-11-20 20:47:30 +05:30
.filter(
appId =>
newApplicationMap[appId].status === APPLICATION_STATUS.INSTALLED &&
prevApplicationMap[appId].status !== APPLICATION_STATUS.INSTALLED &&
prevApplicationMap[appId].status !== null,
)
2018-03-17 18:26:18 +05:30
.map(appId => newApplicationMap[appId].title);
if (appTitles.length > 0) {
2018-11-20 20:47:30 +05:30
const text = sprintf(
s__('ClusterIntegration|%{appList} was successfully installed on your Kubernetes cluster'),
{
appList: appTitles.join(', '),
},
);
2018-03-17 18:26:18 +05:30
Flash(text, 'notice', this.successApplicationContainer);
}
}
updateContainer(prevStatus, status, error) {
this.hideAll();
// We poll all the time but only want the `created` banner to show when newly created
if (this.store.state.status !== 'created' || prevStatus !== this.store.state.status) {
switch (status) {
case 'created':
this.successContainer.classList.remove('hidden');
break;
case 'errored':
this.errorContainer.classList.remove('hidden');
this.errorReasonContainer.textContent = error;
break;
case 'scheduled':
case 'creating':
this.creatingContainer.classList.remove('hidden');
break;
default:
this.hideAll();
}
}
}
2019-07-31 22:56:46 +05:30
installApplication({ id: appId, params }) {
2018-03-17 18:26:18 +05:30
this.store.updateAppProperty(appId, 'requestReason', null);
2019-03-02 22:35:43 +05:30
this.store.updateAppProperty(appId, 'statusReason', null);
2019-07-31 22:56:46 +05:30
this.store.installApplication(appId);
return this.service.installApplication(appId, params).catch(() => {
this.store.notifyInstallFailure(appId);
2019-03-02 22:35:43 +05:30
this.store.updateAppProperty(
appId,
'requestReason',
s__('ClusterIntegration|Request to begin installing failed'),
);
});
}
2019-07-31 22:56:46 +05:30
uninstallApplication({ id: appId }) {
this.store.updateAppProperty(appId, 'requestReason', null);
this.store.updateAppProperty(appId, 'statusReason', null);
this.store.uninstallApplication(appId);
return this.service.uninstallApplication(appId).catch(() => {
this.store.notifyUninstallFailure(appId);
this.store.updateAppProperty(
appId,
'requestReason',
s__('ClusterIntegration|Request to begin uninstalling failed'),
);
});
}
2019-03-02 22:35:43 +05:30
upgradeApplication(data) {
const appId = data.id;
2019-07-31 22:56:46 +05:30
this.store.updateApplication(appId);
this.service.installApplication(appId, data.params).catch(() => {
this.store.notifyUpdateFailure(appId);
});
2019-03-02 22:35:43 +05:30
}
2018-03-17 18:26:18 +05:30
2019-03-02 22:35:43 +05:30
dismissUpgradeSuccess(appId) {
2019-07-31 22:56:46 +05:30
this.store.acknowledgeSuccessfulUpdate(appId);
2018-03-17 18:26:18 +05:30
}
2019-07-31 22:56:46 +05:30
toggleIngressDomainHelpText({ externalIp }, { externalIp: newExternalIp }) {
if (externalIp !== newExternalIp) {
this.ingressDomainHelpText.classList.toggle('hide', !newExternalIp);
this.ingressDomainSnippet.textContent = `${newExternalIp}${INGRESS_DOMAIN_SUFFIX}`;
2019-07-07 11:18:12 +05:30
}
}
saveKnativeDomain(data) {
const appId = data.id;
this.store.updateAppProperty(appId, 'status', APPLICATION_STATUS.UPDATING);
this.service.updateApplication(appId, data.params);
}
setKnativeHostname(data) {
const appId = data.id;
this.store.updateAppProperty(appId, 'isEditingHostName', true);
this.store.updateAppProperty(appId, 'hostname', data.hostname);
}
2018-03-17 18:26:18 +05:30
destroy() {
this.destroyed = true;
this.removeListeners();
if (this.poll) {
this.poll.stop();
}
this.applications.$destroy();
}
}