mirror of https://github.com/rancher/dashboard.git
96 lines
2.1 KiB
Vue
96 lines
2.1 KiB
Vue
<script>
|
|
import ProgressBarMulti from '@/components/ProgressBarMulti';
|
|
import { ucFirst } from '@/utils/string';
|
|
import { colorForState, stateSort } from '@/plugins/steve/resource-class';
|
|
import { sortBy } from '@/utils/sort';
|
|
|
|
export default {
|
|
components: { ProgressBarMulti },
|
|
|
|
props: {
|
|
row: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
},
|
|
|
|
computed: {
|
|
summary() {
|
|
return this.row.status?.resourceCounts || {};
|
|
},
|
|
|
|
show() {
|
|
return this.stateParts.length > 0 && this.row.targetClusters?.length;
|
|
},
|
|
|
|
stateParts() {
|
|
const keys = Object.keys(this.summary).filter(x => !x.startsWith('desired'));
|
|
|
|
const out = keys.map((key) => {
|
|
const textColor = colorForState(key);
|
|
|
|
return {
|
|
label: ucFirst(key),
|
|
color: textColor.replace(/text-/, 'bg-'),
|
|
textColor,
|
|
value: this.summary[key],
|
|
sort: stateSort(textColor, key),
|
|
};
|
|
}).filter(x => x.value > 0);
|
|
|
|
return sortBy(out, 'sort:desc');
|
|
},
|
|
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<v-popover
|
|
v-if="show"
|
|
class="text-center hand"
|
|
placement="top"
|
|
:open-group="row.id"
|
|
:trigger="show ? 'click' : 'manual'"
|
|
offset="1"
|
|
>
|
|
<ProgressBarMulti :values="stateParts" class="mb-5" />
|
|
<span v-if="summary.desiredReady === summary.ready">{{ summary.ready }}</span>
|
|
<span v-else>{{ summary.ready }} of {{ summary.desiredReady }}</span>
|
|
|
|
<template #popover>
|
|
<table v-if="show" class="fixed">
|
|
<tbody>
|
|
<tr v-for="obj in stateParts" :key="obj.label">
|
|
<td class="text-left pr-20" :class="{[obj.textColor]: true}">
|
|
{{ obj.label }}
|
|
</td>
|
|
<td class="text-right">
|
|
{{ obj.value }}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</template>
|
|
</v-popover>
|
|
<div v-else class="text-center text-muted">
|
|
—
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
.col-scale {
|
|
position: relative;
|
|
|
|
.trigger {
|
|
width: 100%;
|
|
}
|
|
}
|
|
|
|
.scale {
|
|
margin: 0;
|
|
padding: 0;
|
|
line-height: initial;
|
|
}
|
|
</style>
|