mirror of https://github.com/rancher/dashboard.git
78 lines
1.3 KiB
Vue
78 lines
1.3 KiB
Vue
<script>
|
|
|
|
export default {
|
|
name: 'FleetApplicationClustersReady',
|
|
|
|
components: {},
|
|
|
|
props: {
|
|
value: {
|
|
type: Number,
|
|
default: 0
|
|
},
|
|
|
|
row: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
|
|
col: {
|
|
type: Object,
|
|
default: () => {}
|
|
},
|
|
|
|
rowKey: {
|
|
type: String,
|
|
default: '',
|
|
},
|
|
|
|
getCustomDetailLink: {
|
|
type: Function,
|
|
default: null
|
|
},
|
|
},
|
|
|
|
methods: {
|
|
parseTargetMode(row) {
|
|
return row.targetInfo?.mode === 'clusterGroup' ? this.t('fleet.application.warningTooltip.clusterGroup') : this.t('fleet.application.warningTooltip.cluster');
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<span
|
|
v-if="!row.clusterInfo"
|
|
class="text-muted"
|
|
>—</span>
|
|
<span
|
|
v-else-if="row.clusterInfo.unready"
|
|
class="text-warning"
|
|
>{{ row.clusterInfo.ready }}/{{
|
|
row.clusterInfo.total }}</span>
|
|
<span
|
|
v-else
|
|
class="cluster-count-info"
|
|
>
|
|
{{ row.clusterInfo.ready }}/{{ row.clusterInfo.total }}
|
|
<i
|
|
v-if="!row.clusterInfo.total"
|
|
v-clean-tooltip.bottom="parseTargetMode(row)"
|
|
class="icon icon-warning"
|
|
/>
|
|
</span>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.cluster-count-info {
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
i {
|
|
margin-left: 5px;
|
|
font-size: 22px;
|
|
color: var(--warning);
|
|
}
|
|
}
|
|
</style>
|