harvester-ui-extension/pkg/harvester/list/harvesterhci.io.virtualmachineimage.vue
Francesco Torchia ea12a81174
Vue migration - remove Vuew.set & this.$set; add vue-migrate script
Signed-off-by: Francesco Torchia <francesco.torchia@suse.com>
2024-10-23 17:00:48 +02:00

81 lines
1.6 KiB
Vue

<script>
import ResourceTable from '@shell/components/ResourceTable';
import { Banner } from '@components/Banner';
import { defaultTableSortGenerationFn } from '@shell/components/ResourceTable.vue';
import FilterLabel from '../components/FilterLabel';
export default {
name: 'ListHarvesterImage',
components: {
ResourceTable,
Banner,
FilterLabel
},
props: {
schema: {
type: Object,
required: true,
},
rows: {
type: Array,
required: true,
},
},
data() {
return {
searchLabels: [],
filterRows: []
};
},
computed: {
uploadingImages() {
return this.$store.getters['harvester-common/uploadingImages'] || [];
},
},
methods: {
changeRows(filterRows, searchLabels) {
this['filterRows'] = filterRows;
this['searchLabels'] = searchLabels;
},
sortGenerationFn() {
let base = defaultTableSortGenerationFn(this.schema, this.$store);
this.searchLabels.map((label) => {
base += label.key;
base += label.value;
});
return base;
},
}
};
</script>
<template>
<div>
<Banner
v-if="uploadingImages.length > 0"
color="warning"
:label="t('harvester.image.warning.uploading', {count: uploadingImages.length} )"
/>
<ResourceTable
v-bind="$attrs"
:rows="filterRows"
:schema="schema"
:sort-generation-fn="sortGenerationFn"
key-field="_key"
v-on="$listeners"
>
<template #more-header-middle>
<FilterLabel ref="filterLabel" :rows="rows" @changeRows="changeRows" />
</template>
</ResourceTable>
</div>
</template>