frontend/components/monitorings/volumes/VolumeMonitoringConfigComponent.vue
2025-10-26 18:59:57 +01:00

35 lines
1.1 KiB
Vue

<template>
<div class="content-l">
<div class="content-s">
<h2>{{ createLabel(monitoring.type) }} Monitoring: {{ monitoring.configName }}</h2>
<p>{{ monitoring.volumeConfig!.mountPath }}</p>
</div>
<div class="col-3">
<MonitoredPodComponent class="tile-l" v-for="pod in pods" :pod="pod"></MonitoredPodComponent>
</div>
</div>
</template>
<script setup lang="ts">
import type { VolumeMonitoringConfig } from '../MonitoringConfig';
import MonitoredPodComponent from './VolumeMonitoredPodComponent.vue';
import { MonitoredResource } from '../MonitoredResource';
import type { Pod } from '~/classes/Pod';
const props = defineProps<{
monitoring: VolumeMonitoringConfig
}>();
const pods: Ref<MonitoredResource<Pod>[] | undefined> = ref(undefined);
onMounted(() => {
MonitoredResource.getMonitorings(props.monitoring.id, (_pods: MonitoredResource<Pod>[]) => {
pods.value = _pods;
});
});
function createLabel(input: string)
{
return input.at(0)?.toUpperCase() + input.substring(1, input.length).toLowerCase();
}
</script>