dashboard/shell/components/fleet/FleetRepos.vue

183 lines
3.8 KiB
Vue

<script>
import ResourceTable from '@shell/components/ResourceTable';
import FleetIntro from '@shell/components/fleet/FleetIntro';
import {
AGE,
FLEET_REPO,
FLEET_REPO_CLUSTER_SUMMARY,
FLEET_REPO_CLUSTERS_READY,
FLEET_REPO_PER_CLUSTER_STATE,
FLEET_REPO_TARGET,
FLEET_SUMMARY,
NAME,
STATE,
} from '@shell/config/table-headers';
// i18n-ignore repoDisplay
export default {
name: 'FleetRepos',
components: {
FleetIntro,
ResourceTable,
},
props: {
rows: {
type: Array,
required: true,
},
workspace: {
type: String,
default: ''
},
clusterId: {
type: String,
required: false,
default: null,
},
schema: {
type: Object,
required: true,
},
loading: {
type: Boolean,
required: false,
},
useQueryParamsForSimpleFiltering: {
type: Boolean,
default: false
},
showIntro: {
type: Boolean,
default: true,
}
},
computed: {
filteredRows() {
if (!this.rows) {
return [];
}
const selectedNamespaces = this.$store.getters['namespaces']();
return this.rows.filter((row) => {
if (this.workspace) {
return this.workspace === row.metadata.namespace;
}
return !!selectedNamespaces[row.metadata.namespace];
});
},
isClusterView() {
return !!this.clusterId;
},
noRows() {
return !this.filteredRows.length;
},
headers() {
// Cluster summary is only shown in the cluster view
const summary = this.isClusterView ? [{
...FLEET_REPO_CLUSTER_SUMMARY,
formatterOpts: { clusterId: this.clusterId },
}] : [FLEET_REPO_CLUSTERS_READY, FLEET_SUMMARY];
// if hasPerClusterState then use the repo state
const state = this.isClusterView ? {
...FLEET_REPO_PER_CLUSTER_STATE,
value: (repo) => repo.clusterState(this.clusterId),
} : STATE;
return [
state,
NAME,
FLEET_REPO,
FLEET_REPO_TARGET,
...summary,
AGE
];
},
_showIntro() {
return this.showIntro && !this.filteredRows.length;
},
},
methods: {
parseTargetMode(row) {
return row.targetInfo?.mode === 'clusterGroup' ? this.t('fleet.gitRepo.warningTooltip.clusterGroup') : this.t('fleet.gitRepo.warningTooltip.cluster');
},
},
};
</script>
<template>
<div>
<FleetIntro v-if="_showIntro && !loading" />
<ResourceTable
v-if="!_showIntro"
v-bind="$attrs"
:schema="schema"
:headers="headers"
:rows="rows"
:loading="loading"
:use-query-params-for-simple-filtering="useQueryParamsForSimpleFiltering"
:namespaced="!workspace"
key-field="_key"
>
<template
v-if="!isClusterView"
#cell:clustersReady="{ row }"
>
<span
v-if="!row.clusterInfo"
class="text-muted"
>&mdash;</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>
<template #cell:target="{ row }">
{{ row.targetInfo.modeDisplay }}
</template>
</ResourceTable>
</div>
</template>
<style lang="scss" scoped>
.cluster-count-info {
display: flex;
align-items: center;
i {
margin-left: 5px;
font-size: 22px;
color: var(--warning);
}
}
</style>