mirror of https://github.com/rancher/dashboard.git
131 lines
3.2 KiB
Vue
131 lines
3.2 KiB
Vue
<script>
|
|
import SortableTable from '@/components/SortableTable';
|
|
import ButtonGroup from '@/components/ButtonGroup';
|
|
import { get } from '@/utils/object';
|
|
import { mapPref, GROUP_RESOURCES } from '@/store/prefs';
|
|
|
|
import {
|
|
AGE,
|
|
STATE,
|
|
NAME,
|
|
WORKSPACE
|
|
} from '@/config/table-headers';
|
|
import { removeObject } from '@/utils/array';
|
|
|
|
export default {
|
|
name: 'ListClusterGroup',
|
|
components: { SortableTable, ButtonGroup },
|
|
|
|
props: {
|
|
schema: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
|
|
rows: {
|
|
type: Array,
|
|
required: true,
|
|
},
|
|
},
|
|
|
|
computed: {
|
|
headers() {
|
|
const out = [
|
|
STATE,
|
|
NAME,
|
|
WORKSPACE,
|
|
{
|
|
name: 'clusters',
|
|
labelKey: 'tableHeaders.clusters',
|
|
value: 'status.display.readyClusters',
|
|
sort: 'status.display.readyClusters',
|
|
search: ['status.nonReadyClusterCount', 'status.clusterCount'],
|
|
},
|
|
// {
|
|
// name: 'gitRepos',
|
|
// labelKey: 'tableHeaders.gitRepos',
|
|
// value: 'status.display.readyBundles',
|
|
// sort: 'status.display.readyBundles',
|
|
// search: ['status.summary.ready','status.summary.desiredReady'],
|
|
// },
|
|
{
|
|
name: 'ready',
|
|
labelKey: 'tableHeaders.summary',
|
|
value: 'status.summary',
|
|
sort: false,
|
|
search: false,
|
|
formatter: 'FleetSummary',
|
|
width: 100,
|
|
},
|
|
AGE
|
|
];
|
|
|
|
if ( this.groupBy || !this.groupable ) {
|
|
removeObject(out, WORKSPACE);
|
|
}
|
|
|
|
return out;
|
|
},
|
|
|
|
group: mapPref(GROUP_RESOURCES),
|
|
|
|
groupable() {
|
|
return true;
|
|
},
|
|
|
|
groupBy() {
|
|
// The value of the preference is "namespace" but we take that to mean group by workspace here...
|
|
if ( this.groupable && this.group === 'namespace') {
|
|
return 'groupByLabel';
|
|
}
|
|
|
|
return null;
|
|
},
|
|
|
|
groupOptions() {
|
|
return [
|
|
{ value: 'none', icon: 'icon-list-flat' },
|
|
{ value: 'namespace', icon: 'icon-list-grouped' }
|
|
];
|
|
},
|
|
|
|
pagingParams() {
|
|
return {
|
|
singularLabel: this.$store.getters['type-map/labelFor'](this.schema),
|
|
pluralLabel: this.$store.getters['type-map/labelFor'](this.schema, 99),
|
|
};
|
|
},
|
|
},
|
|
|
|
methods: { get },
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<SortableTable
|
|
v-bind="$attrs"
|
|
:headers="headers"
|
|
:rows="rows"
|
|
:group-by="groupBy"
|
|
:paging="true"
|
|
paging-label="sortableTable.paging.resource"
|
|
:paging-params="pagingParams"
|
|
key-field="_key"
|
|
v-on="$listeners"
|
|
>
|
|
<template v-if="groupable" #header-middle>
|
|
<slot name="more-header-middle" />
|
|
<ButtonGroup v-model="group" :options="groupOptions" />
|
|
</template>
|
|
|
|
<template #cell:clusters="{row}">
|
|
<span v-if="row.status.nonReadyClusterCount" class="text-warning">{{ row.status.clusterCount - row.status.nonReadyClusterCount }}/{{ row.status.clusterCount }}</span>
|
|
<span v-else>{{ row.status.clusterCount }}</span>
|
|
</template>
|
|
|
|
<template #group-by="{group: thisGroup}">
|
|
<div class="group-tab" v-html="thisGroup.ref" />
|
|
</template>
|
|
</SortableTable>
|
|
</template>
|