mirror of https://github.com/rancher/ui.git
99 lines
3.0 KiB
JavaScript
99 lines
3.0 KiB
JavaScript
import Resource from '@rancher/ember-api-store/models/resource';
|
|
import { reference } from '@rancher/ember-api-store/utils/denormalize';
|
|
import { computed, get } from '@ember/object';
|
|
import { parseHelmExternalId } from 'ui/utils/parse-externalid';
|
|
import { inject as service } from '@ember/service';
|
|
import { isEmpty } from '@ember/utils';
|
|
|
|
const MultiClusterApp = Resource.extend({
|
|
catalog: service(),
|
|
router: service(),
|
|
clusterStore: service(),
|
|
globalStore: service(),
|
|
|
|
canEdit: false,
|
|
|
|
templateVersion: reference('templateVersionId', 'templateversion', 'globalStore'),
|
|
catalogTemplate: reference('templateId', 'template', 'globalStore'),
|
|
|
|
externalIdInfo: computed('templateVersion.externalId', function() {
|
|
return parseHelmExternalId(get(this, 'templateVersion.externalId'));
|
|
}),
|
|
|
|
templateId: computed('externalIdInfo.{templateId}', function() {
|
|
return get(this, 'externalIdInfo.templateId');
|
|
}),
|
|
|
|
canUpgrade: computed('actionLinks.{upgrade}', 'catalogTemplate', 'templateVersion', function() {
|
|
const l = get(this, 'links') || {};
|
|
|
|
return !!l.update && !isEmpty(this.catalogTemplate);
|
|
}),
|
|
|
|
canClone: computed('catalogTemplate', 'templateVersion', function() {
|
|
return !isEmpty(this.catalogTemplate);
|
|
}),
|
|
|
|
canRollback: computed('catalogTemplate', 'templateVersion', function() {
|
|
return !isEmpty(this.catalogTemplate) && !!( this.actionLinks || {} ).rollback;
|
|
}),
|
|
|
|
availableActions: computed('actionLinks.{rollback}', 'links.{update}', 'canUpgrade', 'canRollback', function() {
|
|
return [
|
|
{
|
|
label: 'action.upgrade',
|
|
icon: 'icon icon-edit',
|
|
action: 'upgrade',
|
|
enabled: get(this, 'canUpgrade')
|
|
},
|
|
{
|
|
label: 'action.rollback',
|
|
icon: 'icon icon-history',
|
|
action: 'rollback',
|
|
enabled: get(this, 'canRollback')
|
|
}
|
|
];
|
|
}),
|
|
|
|
actions: {
|
|
upgrade() {
|
|
const templateId = get(this, 'externalIdInfo.templateId');
|
|
const catalogId = get(this, 'externalIdInfo.catalog');
|
|
const vKeys = Object.keys(get(this, 'catalogTemplate.versionLinks'));
|
|
const latestVersion = vKeys[vKeys.length - 1];
|
|
|
|
get(this, 'router').transitionTo('global-admin.multi-cluster-apps.catalog.launch', templateId, {
|
|
queryParams: {
|
|
appId: get(this, 'id'),
|
|
catalog: catalogId,
|
|
upgrade: latestVersion,
|
|
}
|
|
});
|
|
},
|
|
|
|
rollback() {
|
|
get(this, 'modalService').toggleModal('modal-rollback-mc-app', {
|
|
originalModel: this,
|
|
revisionsLink: this.links.revisions,
|
|
});
|
|
},
|
|
|
|
clone() {
|
|
const templateId = get(this, 'externalIdInfo.templateId');
|
|
const catalogId = get(this, 'externalIdInfo.catalog');
|
|
|
|
get(this, 'router').transitionTo('global-admin.multi-cluster-apps.catalog.launch', templateId, {
|
|
queryParams: {
|
|
appId: get(this, 'id'),
|
|
catalog: catalogId,
|
|
clone: true
|
|
}
|
|
});
|
|
}
|
|
|
|
},
|
|
|
|
})
|
|
|
|
export default MultiClusterApp;
|