dashboard/components/dialog/RollbackWorkloadDialog.vue

306 lines
8.5 KiB
Vue

<script>
import AsyncButton from '@/components/AsyncButton';
import day from 'dayjs';
import Card from '@/components/Card';
import { exceptionToErrorsArray } from '@/utils/error';
import LabeledSelect from '@/components/form/LabeledSelect';
import Banner from '@/components/Banner';
import YamlEditor, { EDITOR_MODES } from '@/components/YamlEditor';
import { WORKLOAD_TYPES } from '@/config/types';
import { diffFrom } from '@/utils/time';
import { mapGetters } from 'vuex';
import { ACTIVELY_REMOVE, NEVER_ADD } from '@/utils/create-yaml';
const HIDE = [
'metadata.labels.pod-template-hash',
'spec.selector.matchLabels.pod-template-hash',
'spec.template.metadata.labels.pod-template-hash',
'metadata.fields'
];
const REMOVE = [...ACTIVELY_REMOVE, ...NEVER_ADD, ...HIDE];
const REMOVE_KEYS = REMOVE.reduce((obj, item) => {
obj[item] = true;
return obj;
}, {});
export default {
components: {
Card,
AsyncButton,
LabeledSelect,
Banner,
YamlEditor,
},
props: {
resources: {
type: Array,
required: true
}
},
data() {
return {
errors: [],
selectedRevision: null,
currentRevision: null,
revisions: [],
editorMode: EDITOR_MODES.DIFF_CODE,
showDiff: false,
};
},
computed: {
...mapGetters({ t: 'i18n/t' }),
workload() {
return this.resources[0];
},
workloadName() {
return this.workload.metadata.name;
},
workloadNamespace() {
return this.workload.metadata.namespace;
},
currentRevisionNumber() {
return this.workload.metadata.annotations['deployment.kubernetes.io/revision'];
},
rollbackRequestBody() {
if (!this.selectedRevision) {
return null;
}
// Build the request body in the same format that kubectl
// uses to call the Kubernetes API to roll back a workload.
// To see an example request body, run:
// kubectl rollout undo deployment/[deployment name] --to-revision=[revision number] -v=8
const body = [
{
op: 'replace',
path: '/spec/template',
value: {
metadata: {
creationTimestamp: null,
labels: { 'workload.user.cattle.io/workloadselector': this.selectedRevision.spec.template.metadata.labels['workload.user.cattle.io/workloadselector'] }
},
spec: this.selectedRevision.spec.template.spec
}
}, {
op: 'replace',
path: '/metadata/annotations',
value: { 'deployment.kubernetes.io/revision': this.selectedRevision.metadata.annotations['deployment.kubernetes.io/revision'] }
}
];
return body;
},
selectedRevisionId() {
return this.selectedRevision.id;
},
sanitizedSelectedRevision() {
return this.sanitizeYaml(this.selectedRevision);
}
},
fetch() {
// Fetch revisions of the current workload
this.$store.dispatch('cluster/findAll', { type: WORKLOAD_TYPES.REPLICA_SET })
.then(( response ) => {
const allReplicaSets = response;
const hasRelationshipWithCurrentWorkload = ( replicaSet ) => {
const relationshipsOfReplicaSet = replicaSet.metadata.relationships;
const revisionsOfCurrentWorkload = relationshipsOfReplicaSet.filter(( relationship ) => {
const isRevisionOfCurrentWorkload = relationship.fromId && relationship.fromId === `${ this.workloadNamespace }/${ this.workloadName }`;
return isRevisionOfCurrentWorkload;
});
return revisionsOfCurrentWorkload.length > 0;
};
const workloadRevisions = allReplicaSets.filter(( replicaSet ) => {
return hasRelationshipWithCurrentWorkload( replicaSet );
});
const revisionOptions = workloadRevisions
.map( (revision ) => {
const isCurrentRevision = this.getRevisionNumber(revision) === this.currentRevisionNumber;
if (isCurrentRevision) {
this.currentRevision = revision;
}
return this.buildRevisionOption( revision );
})
.sort((a, b) => b.revisionNumber - a.revisionNumber);
this.revisions = revisionOptions;
})
.catch(( err ) => {
this.errors = exceptionToErrorsArray(err);
});
},
methods: {
close() {
this.$emit('close');
},
async save() {
try {
await this.workload.rollBackWorkload(this.workload, this.rollbackRequestBody);
this.close();
} catch (err) {
this.errors = exceptionToErrorsArray(err);
}
},
getRevisionNumber( revision ) {
return revision.metadata.annotations['deployment.kubernetes.io/revision'];
},
buildRevisionOption( revision ) {
const revisionNumber = this.getRevisionNumber(revision);
const isCurrentRevision = revisionNumber === this.currentRevisionNumber;
const now = day();
const createdDate = day(revision.metadata.creationTimestamp);
const revisionAge = diffFrom(createdDate, now, this.t);
const units = this.t(revisionAge.unitsKey, { count: revisionAge.label });
const currentLabel = this.t('promptRollback.currentLabel');
const optionLabel = this.t('promptRollback.revisionOption', {
revisionNumber,
revisionAge: revisionAge.label,
units,
currentLabel: isCurrentRevision ? currentLabel : ''
});
return {
label: optionLabel,
value: revision,
disabled: isCurrentRevision,
revisionNumber
};
},
getOptionLabel(option) {
return option.label;
},
sizeDialog() {
const dialogs = document.getElementsByClassName('v--modal');
const width = this.showDiff ? '85%' : '600px';
if (dialogs.length === 1) {
dialogs[0].style.setProperty('--prompt-modal-width', width);
}
},
sanitizeYaml(obj, path = '') {
const res = {};
if (!obj) {
return obj;
}
Object.keys(obj).forEach((key) => {
const keyPath = !path ? key : `${ path }.${ key }`;
if (!REMOVE_KEYS[keyPath]) {
res[key] = obj[key];
if (typeof obj[key] === 'object' && !Array.isArray(obj[key])) {
res[key] = this.sanitizeYaml(obj[key], keyPath);
}
}
});
return res;
}
}
};
</script>
<template>
<Card
class="prompt-rollback"
:show-highlight-border="false"
>
<h4 slot="title" class="text-default-text">
{{ t('promptRollback.modalTitle', { workloadName }, true) }}
</h4>
<div slot="body" class="pl-10 pr-10 ">
<Banner v-if="revisions.length === 1" color="info" :label="t('promptRollback.singleRevisionBanner')" />
<form>
<LabeledSelect
v-model="selectedRevision"
class="provider"
:label="t('promptRollback.dropdownTitle')"
:placeholder="t('promptRollback.placeholder')"
:options="revisions"
:get-option-label="getOptionLabel"
/>
</form>
<Banner v-for="(error, i) in errors" :key="i" class="" color="error" :label="error" />
<YamlEditor
v-if="selectedRevision && showDiff"
:key="selectedRevisionId"
v-model="sanitizedSelectedRevision"
:initial-yaml-values="sanitizeYaml(currentRevision)"
class="mt-10 "
:editor-mode="editorMode"
:as-object="true"
/>
</div>
<div slot="actions" class="buttons ">
<div class="left">
<button
:disabled="!selectedRevision"
class="btn role-secondary diff"
@click="showDiff = !showDiff; sizeDialog()"
>
{{ showDiff ? t('resourceYaml.buttons.hideDiff') : t('resourceYaml.buttons.diff') }}
</button>
</div>
<div class="right">
<button class="btn role-secondary mr-10" @click="close">
{{ t('generic.cancel') }}
</button>
<AsyncButton
:action-label="t('asyncButton.rollback.action')"
:disabled="!selectedRevision"
get-option-label="getOptionLabel"
:right-align="true"
@click="save"
/>
</div>
</div>
</Card>
</template>
<style lang='scss' scoped>
.prompt-rollback {
margin: 0;
& ::v-deep .card-actions {
display: grid;
}
}
.yaml-editor {
max-height: 70vh;
& ::v-deep.root {
max-height: 65vh;
}
}
.diff {
&:disabled {
border: none;
}
&:focus {
background: transparent;
box-shadow: none;
}
}
::v-deep .card-body {
max-height: calc(95vh - 135px);
overflow: hidden;
}
</style>