Compare commits
6 Commits
804f049111
...
e11217e28a
Author | SHA1 | Date | |
---|---|---|---|
|
e11217e28a | ||
|
4ca93fcc9a | ||
|
0200df7b16 | ||
|
d581d17273 | ||
|
5b691d0e5b | ||
|
745d554768 |
@ -1,368 +0,0 @@
|
||||
/* Global spacing adjustments */
|
||||
.content-grid {
|
||||
gap: 0.25rem !important;
|
||||
}
|
||||
|
||||
.main-content {
|
||||
padding-top: 0.25rem;
|
||||
}
|
||||
|
||||
/* Reduce space between page title and content */
|
||||
.content-grid > *:first-child + * {
|
||||
margin-top: 0.375rem !important;
|
||||
}
|
||||
|
||||
/* Target the specific space between title underline and first card */
|
||||
.content-grid > div:first-child {
|
||||
margin-bottom: 0.375rem !important;
|
||||
}
|
||||
|
||||
/* Reduce space after PageTitle component */
|
||||
.page-title {
|
||||
margin-bottom: 0.25rem !important;
|
||||
}
|
||||
|
||||
/* Remove left padding from node tabs */
|
||||
.nav-tabs {
|
||||
padding-left: 0 !important;
|
||||
margin-left: 0 !important;
|
||||
}
|
||||
|
||||
/* Ensure node content aligns with left edge */
|
||||
.node-content, .tab-content {
|
||||
padding-left: 0 !important;
|
||||
margin-left: 0 !important;
|
||||
}
|
||||
|
||||
/* Target the specific element causing the padding */
|
||||
div.node-tabs {
|
||||
padding-left: 0 !important;
|
||||
padding-right: 0 !important;
|
||||
}
|
||||
|
||||
/* More aggressive targeting for node tabs */
|
||||
.node-overview .nav,
|
||||
.node-overview .nav-tabs,
|
||||
.node-overview ul.nav,
|
||||
.node-overview ul.nav-tabs {
|
||||
padding-left: 0 !important;
|
||||
margin-left: 0 !important;
|
||||
border-left: 0 !important;
|
||||
}
|
||||
|
||||
/* Target the first tab item specifically */
|
||||
.node-overview .nav-item:first-child,
|
||||
.node-overview .nav-link:first-child {
|
||||
margin-left: 0 !important;
|
||||
padding-left: 0 !important;
|
||||
}
|
||||
|
||||
/* Target any container that might be wrapping the tabs */
|
||||
.node-overview > div,
|
||||
.node-overview > ul {
|
||||
padding-left: 0 !important;
|
||||
margin-left: 0 !important;
|
||||
}
|
||||
|
||||
/* Style VM search bar section like node tabs */
|
||||
.vm-search-container,
|
||||
.vm-list-header,
|
||||
.vm-controls {
|
||||
border: none !important;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.125) !important;
|
||||
border-radius: 0 !important;
|
||||
background-color: transparent !important;
|
||||
padding: 0.5rem 0 !important;
|
||||
margin-bottom: 1rem !important;
|
||||
}
|
||||
|
||||
/* Remove any box shadow from VM search elements */
|
||||
.vm-search-container *,
|
||||
.vm-list-header *,
|
||||
.vm-controls * {
|
||||
box-shadow: none !important;
|
||||
}
|
||||
|
||||
/* Ensure search input has proper styling */
|
||||
.vm-search-input {
|
||||
border: 1px solid rgba(0, 0, 0, 0.2) !important;
|
||||
border-radius: 0.25rem !important;
|
||||
}
|
||||
|
||||
/* Target the specific VM list controls more directly */
|
||||
.vm-overview .list-vms-container,
|
||||
.vm-overview .vm-controls-container {
|
||||
border: none !important;
|
||||
box-shadow: none !important;
|
||||
background: transparent !important;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.125) !important;
|
||||
border-radius: 0 !important;
|
||||
padding-left: 0 !important;
|
||||
}
|
||||
|
||||
/* Target the buttons and inputs directly */
|
||||
.vm-overview .btn-group,
|
||||
.vm-overview .input-group {
|
||||
margin: 0 !important;
|
||||
background: transparent !important;
|
||||
}
|
||||
|
||||
/* Target the List VMs button specifically */
|
||||
.vm-overview .btn-secondary,
|
||||
.vm-overview button[type="button"] {
|
||||
background-color: #6c757d !important;
|
||||
border-color: #6c757d !important;
|
||||
}
|
||||
|
||||
/* Super aggressive targeting for VM search container */
|
||||
.vm-list-container > div:first-child,
|
||||
.vm-overview > div:first-child,
|
||||
div[class*="vm-"] > div:first-child {
|
||||
border: none !important;
|
||||
background: transparent !important;
|
||||
box-shadow: none !important;
|
||||
border-radius: 0 !important;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.125) !important;
|
||||
padding: 0.5rem 0 !important;
|
||||
}
|
||||
|
||||
/* Target the actual search box and buttons */
|
||||
.input-group,
|
||||
.btn-group {
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
|
||||
/* Target any card or container in the VM list header */
|
||||
.card,
|
||||
.card-header,
|
||||
.card-body {
|
||||
/* Target only VM list cards, not ValueCards */
|
||||
.vm-list-container .card,
|
||||
.vm-list-container .card-header,
|
||||
.vm-list-container .card-body,
|
||||
.vm-controls-container .card,
|
||||
.vm-controls-container .card-header,
|
||||
.vm-controls-container .card-body {
|
||||
border: none !important;
|
||||
background: transparent !important;
|
||||
box-shadow: none !important;
|
||||
padding: 0.5rem 0 !important;
|
||||
}
|
||||
}
|
||||
|
||||
/* Target the specific vm-controls-container element */
|
||||
div.vm-controls-container {
|
||||
background-color: transparent !important;
|
||||
border-radius: 0 !important;
|
||||
box-shadow: none !important;
|
||||
padding: 0.5rem 0 !important;
|
||||
}
|
||||
|
||||
/* Target the light blue background */
|
||||
div.vm-controls-container[data-v-8e678963] {
|
||||
background-color: transparent !important;
|
||||
}
|
||||
|
||||
/* Adjust spacing after page title on VM page */
|
||||
.vm-overview .page-title,
|
||||
.vm-overview .page-title-container {
|
||||
margin-bottom: 0.05rem !important;
|
||||
}
|
||||
|
||||
/* Ensure consistent spacing between title and controls */
|
||||
.vm-overview .content-grid > *:first-child + * {
|
||||
margin-top: 0.05rem !important;
|
||||
}
|
||||
|
||||
/* Remove lines under VM names */
|
||||
.vm-list-item,
|
||||
.vm-item {
|
||||
border-bottom: none !important;
|
||||
}
|
||||
|
||||
/* Ensure only the controls container has the bottom border */
|
||||
.vm-list-container > div:not(:first-child),
|
||||
.vm-overview > div:not(:first-child) {
|
||||
border-bottom: none !important;
|
||||
}
|
||||
|
||||
/* Further reduce spacing between title and controls */
|
||||
.content-grid > div:first-child {
|
||||
margin-bottom: 0.05rem !important;
|
||||
}
|
||||
|
||||
/* Extremely aggressive spacing reduction */
|
||||
.page-title + *,
|
||||
.page-title-container + * {
|
||||
margin-top: 0 !important;
|
||||
}
|
||||
|
||||
/* Specifically target VM list items to remove bottom borders */
|
||||
.vm-list > div,
|
||||
.vm-list-item,
|
||||
.vm-item,
|
||||
div[class*="vm-list"] > div {
|
||||
border-bottom: none !important;
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
/* Target the VM list container to remove any borders from its children except the first */
|
||||
.vm-list-container > div:not(:first-child) *,
|
||||
.vm-overview > div:not(:first-child) * {
|
||||
border-bottom: none !important;
|
||||
}
|
||||
|
||||
/* Zero out all margins between title and controls */
|
||||
.page-title,
|
||||
.page-title-container,
|
||||
.content-grid > div:first-child {
|
||||
margin-bottom: 0 !important;
|
||||
}
|
||||
|
||||
/* Reduce padding above the VM controls container */
|
||||
div.vm-controls-container,
|
||||
.vm-list-container > div:first-child {
|
||||
margin-top: 0.05rem !important;
|
||||
padding-top: 0 !important;
|
||||
}
|
||||
|
||||
/* Fix double border issue - ensure only one border appears below search */
|
||||
.vm-list-container > div:first-child,
|
||||
.vm-overview > div:first-child,
|
||||
div[class*="vm-"] > div:first-child {
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.125) !important;
|
||||
}
|
||||
|
||||
/* Remove ALL borders from VM list items - extremely aggressive */
|
||||
.vm-list-container .vm-list-item,
|
||||
.vm-list-container .vm-item,
|
||||
.vm-list-container li,
|
||||
.vm-list-container tr,
|
||||
.vm-list-container div[class*="vm-"],
|
||||
.vm-list > div,
|
||||
.vm-list > li,
|
||||
.vm-list > tr,
|
||||
.vm-list-item,
|
||||
.vm-item,
|
||||
div[class*="vm-list"] > div,
|
||||
div[class*="vm-list"] div {
|
||||
border: none !important;
|
||||
border-bottom: none !important;
|
||||
border-top: none !important;
|
||||
border-left: none !important;
|
||||
border-right: none !important;
|
||||
}
|
||||
|
||||
/* Ensure VM list container itself doesn't have a border */
|
||||
.vm-list-container {
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
/* Target the actual VM list to remove borders */
|
||||
.vm-list {
|
||||
border: none !important;
|
||||
}
|
||||
|
||||
/* Override any hr elements that might be creating lines */
|
||||
.vm-list-container hr,
|
||||
.vm-list hr,
|
||||
.vm-item + hr,
|
||||
.vm-list-item + hr {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
/* Single border under search bar */
|
||||
.vm-controls-container {
|
||||
border: none !important;
|
||||
background: transparent !important;
|
||||
}
|
||||
|
||||
/* Target VM list items specifically */
|
||||
.vm-list-container .vm-list-item {
|
||||
border: none !important;
|
||||
background: transparent !important;
|
||||
padding-top: 0.25rem !important;
|
||||
padding-bottom: 0.25rem !important;
|
||||
}
|
||||
|
||||
/* Target the VM item content to reduce spacing */
|
||||
.vm-item-content,
|
||||
.vm-list-item > div,
|
||||
button.vm-list-item {
|
||||
padding-top: 0.25rem !important;
|
||||
padding-bottom: 0.25rem !important;
|
||||
}
|
||||
|
||||
/* Also target any nested content */
|
||||
.vm-name,
|
||||
.vm-status {
|
||||
padding-top: 0.25rem !important;
|
||||
padding-bottom: 0.25rem !important;
|
||||
}
|
||||
|
||||
/* Remove any dividers between VM items */
|
||||
.vm-list-container .divider,
|
||||
.vm-list-container hr,
|
||||
.vm-list-item::after,
|
||||
.vm-list-item::before {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
/* Adjust spacing between title and search */
|
||||
.page-title + .vm-controls-container {
|
||||
margin-top: 0 !important;
|
||||
}
|
||||
|
||||
/* Let's also clean up any duplicate rules */
|
||||
.controls-row {
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.125) !important;
|
||||
}
|
||||
|
||||
/* Remove border from vm-name elements */
|
||||
.vm-name {
|
||||
border: none !important;
|
||||
border-bottom: none !important;
|
||||
}
|
||||
|
||||
/* Target both instances of the border */
|
||||
div[class*="vm-"] > div:first-child div[class*="vm-"] > div:first-child,
|
||||
.vm-list-container > div:first-child div[class*="vm-"] > div:first-child {
|
||||
border: none !important;
|
||||
border-bottom: none !important;
|
||||
}
|
||||
|
||||
/* Super specific targeting for the border issue */
|
||||
div[class*="vm-"] > div:first-child H {
|
||||
border: none !important;
|
||||
border-bottom: none !important;
|
||||
}
|
||||
|
||||
/* Keep node tabs close to title but adjust content below tabs */
|
||||
.node-overview .node-tabs-wrapper {
|
||||
margin-top: 0.25rem !important;
|
||||
}
|
||||
|
||||
/* Adjust spacing below tabs to match overview spacing */
|
||||
.node-overview .node-tabs-wrapper + * {
|
||||
margin-top: 0.375rem !important;
|
||||
}
|
||||
|
||||
/* Ensure consistent spacing in overview page */
|
||||
.overview-container > *:first-child {
|
||||
margin-top: 0.375rem !important;
|
||||
}
|
||||
|
||||
/* Override spacing specifically for node tabs - keep tight to title */
|
||||
.node-overview .content-grid > *:first-child + * {
|
||||
margin-top: 0.25rem !important; /* Keep tabs close to title */
|
||||
}
|
||||
|
||||
/* Adjust spacing between tabs and content below */
|
||||
.node-overview .node-tabs-wrapper {
|
||||
margin-bottom: 0.375rem !important; /* Match overview spacing */
|
||||
}
|
||||
|
||||
/* Remove any extra spacing that might be added by other elements */
|
||||
.node-overview .node-details {
|
||||
margin-top: 0 !important;
|
||||
}
|
@ -4,7 +4,7 @@
|
||||
<div v-if="!isExpanded" class="section-content-wrapper">
|
||||
<div class="section-content">
|
||||
<div class="collapsed-section-header">
|
||||
<h6 class="card-title mb-0 metric-label">{{ title }}</h6>
|
||||
<h5 class="section-title" v-if="title">{{ title }}</h5>
|
||||
</div>
|
||||
</div>
|
||||
<div class="toggle-column">
|
||||
@ -137,4 +137,20 @@ const toggleSection = () => {
|
||||
.section-container.collapsed .section-content-wrapper {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
.section-header h6 {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 0.5rem 0;
|
||||
cursor: pointer;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
||||
margin-bottom: 0.75rem;
|
||||
}
|
||||
|
||||
.section-title {
|
||||
margin: 0;
|
||||
font-size: 0.95rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
</style>
|
@ -1,14 +1,16 @@
|
||||
<template>
|
||||
<div class="node-select-bar">
|
||||
<button
|
||||
v-for="node in nodes"
|
||||
:key="node"
|
||||
class="node-tab"
|
||||
:class="{ 'active': modelValue === node }"
|
||||
@click="selectNode(node)"
|
||||
>
|
||||
{{ node }}
|
||||
</button>
|
||||
<div class="node-select-row">
|
||||
<button
|
||||
v-for="node in nodes"
|
||||
:key="node"
|
||||
class="node-tab"
|
||||
:class="{ 'active': modelValue === node }"
|
||||
@click="selectNode(node)"
|
||||
>
|
||||
{{ node }}
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -38,17 +40,23 @@ const selectNode = (node) => {
|
||||
<style scoped>
|
||||
.node-select-bar {
|
||||
display: flex;
|
||||
gap: 0.25rem;
|
||||
padding: 0.5rem;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
background-color: white;
|
||||
border-radius: 0.25rem;
|
||||
overflow-x: auto;
|
||||
padding-top: 0.25rem;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.node-select-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
padding-bottom: 0.75rem !important;
|
||||
}
|
||||
|
||||
.node-tab {
|
||||
padding: 0.375rem 0.75rem;
|
||||
padding: 0.45rem 0.75rem;
|
||||
border: none;
|
||||
background: none;
|
||||
color: #495057;
|
||||
@ -66,5 +74,7 @@ const selectNode = (node) => {
|
||||
.node-tab.active {
|
||||
color: #0d6efd;
|
||||
background-color: rgba(13, 110, 253, 0.1);
|
||||
border-bottom: 4px solid rgba(13, 110, 253, 0.25);
|
||||
margin-bottom: -4px;
|
||||
}
|
||||
</style>
|
@ -21,7 +21,6 @@ defineProps({
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 1rem;
|
||||
padding-bottom: 0.5rem;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
<template>
|
||||
<div class="controls-bar" ref="controlsBar">
|
||||
<div class="controls-row">
|
||||
<div class="vm-selector-bar" ref="controlsBar">
|
||||
<div class="vm-selector-row">
|
||||
<button
|
||||
class="btn btn-outline-secondary list-toggle-btn"
|
||||
@click="toggleList"
|
||||
@ -46,7 +46,7 @@
|
||||
</button>
|
||||
<div class="filter-menu" v-show="showFilterMenu" ref="filterMenu">
|
||||
<div class="filter-section">
|
||||
<h6>Status</h6>
|
||||
<h6>State</h6>
|
||||
<div class="filter-options-dropdown">
|
||||
<div class="filter-pills">
|
||||
<button
|
||||
@ -104,10 +104,14 @@
|
||||
<div v-if="selectedVM === vm.name || vmFromUrl === vm.name" class="active-indicator"></div>
|
||||
<div class="vm-item-content">
|
||||
<div class="vm-name">{{ vm.name }}</div>
|
||||
<div class="vm-status" :class="getStatusClass(vm.state)">
|
||||
<i class="fas fa-circle status-indicator"></i>
|
||||
<div class="vm-state" :class="getStateClass(vm.state)">
|
||||
<i class="fas fa-circle state-indicator"></i>
|
||||
<span>{{ vm.state }}</span>
|
||||
</div>
|
||||
<div v-if="vm.node" class="vm-node">
|
||||
<i class="fas fa-server node-icon"></i>
|
||||
<span>{{ vm.node }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</button>
|
||||
</div>
|
||||
@ -186,6 +190,9 @@ onMounted(() => {
|
||||
searchText.value = savedSearchText;
|
||||
}
|
||||
|
||||
// Load saved filters
|
||||
loadFiltersFromLocalStorage();
|
||||
|
||||
// Initialize input value based on selected VM
|
||||
if (!props.showList && (props.selectedVM || props.vmFromUrl)) {
|
||||
inputValue.value = props.selectedVM || props.vmFromUrl;
|
||||
@ -328,8 +335,11 @@ const clearSearch = () => {
|
||||
emit('update:modelValue', '');
|
||||
emit('clear');
|
||||
|
||||
// Focus the search input after clearing
|
||||
// Scroll to selected VM after clearing search
|
||||
nextTick(() => {
|
||||
scrollToSelectedVM();
|
||||
|
||||
// Focus the search input after clearing
|
||||
const searchInput = document.querySelector('.search-input');
|
||||
if (searchInput) {
|
||||
searchInput.focus();
|
||||
@ -377,6 +387,7 @@ const toggleFilterMenu = () => {
|
||||
// Filter toggle
|
||||
const handleFilterToggle = (type, value) => {
|
||||
appliedFilters.value[type][value] = !appliedFilters.value[type][value];
|
||||
saveFiltersToLocalStorage();
|
||||
};
|
||||
|
||||
// Reset filters
|
||||
@ -387,6 +398,7 @@ const handleResetFilters = () => {
|
||||
Object.keys(appliedFilters.value.nodes).forEach(node => {
|
||||
appliedFilters.value.nodes[node] = false;
|
||||
});
|
||||
saveFiltersToLocalStorage();
|
||||
showFilterMenu.value = false;
|
||||
};
|
||||
|
||||
@ -427,7 +439,24 @@ const availableStates = computed(() => {
|
||||
props.vmList.forEach(vm => {
|
||||
if (vm.state) states.add(vm.state);
|
||||
});
|
||||
return Array.from(states).sort();
|
||||
|
||||
// Convert to array and ensure all important states are included
|
||||
const statesArray = Array.from(states);
|
||||
const importantStates = ['start', 'disable', 'migrate', 'unmigrate', 'provision', 'mirror', 'stop', 'fail', 'shutdown', 'restart'];
|
||||
|
||||
// Add any missing important states
|
||||
importantStates.forEach(state => {
|
||||
if (!statesArray.includes(state)) {
|
||||
statesArray.push(state);
|
||||
}
|
||||
});
|
||||
|
||||
// Sort with 'start' first, then alphabetically
|
||||
return statesArray.sort((a, b) => {
|
||||
if (a.toLowerCase() === 'start') return -1;
|
||||
if (b.toLowerCase() === 'start') return 1;
|
||||
return a.localeCompare(b);
|
||||
});
|
||||
});
|
||||
|
||||
// Calculate available nodes from vmList
|
||||
@ -454,6 +483,9 @@ watch([availableStates, availableNodes], ([states, nodes]) => {
|
||||
appliedFilters.value.nodes[node] = false;
|
||||
}
|
||||
});
|
||||
|
||||
// Save updated filters
|
||||
saveFiltersToLocalStorage();
|
||||
});
|
||||
|
||||
// Count active filters
|
||||
@ -468,15 +500,39 @@ const activeFiltersCount = computed(() => {
|
||||
return count;
|
||||
});
|
||||
|
||||
// Status class helper
|
||||
const getStatusClass = (state) => {
|
||||
// Update function name from getStatusClass to getStateClass
|
||||
const getStateClass = (state) => {
|
||||
if (!state) return 'status-unknown';
|
||||
switch(state.toLowerCase()) {
|
||||
case 'start': return 'status-running';
|
||||
case 'stop': return 'status-stopped';
|
||||
case 'disable': return 'status-paused';
|
||||
default: return 'status-unknown';
|
||||
|
||||
const lowerState = state.toLowerCase();
|
||||
|
||||
// Green for running VMs
|
||||
if (lowerState === 'start') {
|
||||
return 'status-running';
|
||||
}
|
||||
|
||||
// Blue for provisioning, migration, etc.
|
||||
if (['disable', 'migrate', 'unmigrate', 'provision'].includes(lowerState)) {
|
||||
return 'status-provisioning';
|
||||
}
|
||||
|
||||
// Purple for mirror
|
||||
if (lowerState === 'mirror') {
|
||||
return 'status-mirror';
|
||||
}
|
||||
|
||||
// Red for stopped or failed VMs
|
||||
if (['stop', 'fail'].includes(lowerState)) {
|
||||
return 'status-stopped';
|
||||
}
|
||||
|
||||
// Yellow for shutdown or restart
|
||||
if (['shutdown', 'restart'].includes(lowerState)) {
|
||||
return 'status-restarting';
|
||||
}
|
||||
|
||||
// Default to unknown (black) for any other states
|
||||
return 'status-unknown';
|
||||
};
|
||||
|
||||
// Watch for changes in showList
|
||||
@ -532,22 +588,45 @@ const scrollToSelectedVM = () => {
|
||||
}
|
||||
});
|
||||
};
|
||||
|
||||
// Add localStorage persistence for filters
|
||||
const saveFiltersToLocalStorage = () => {
|
||||
localStorage.setItem('vmFilters', JSON.stringify(appliedFilters.value));
|
||||
};
|
||||
|
||||
const loadFiltersFromLocalStorage = () => {
|
||||
const savedFilters = localStorage.getItem('vmFilters');
|
||||
if (savedFilters) {
|
||||
try {
|
||||
const parsedFilters = JSON.parse(savedFilters);
|
||||
// Merge saved filters with current filters to handle new states/nodes
|
||||
appliedFilters.value = {
|
||||
states: { ...appliedFilters.value.states, ...parsedFilters.states },
|
||||
nodes: { ...appliedFilters.value.nodes, ...parsedFilters.nodes }
|
||||
};
|
||||
} catch (e) {
|
||||
console.error('Error parsing saved filters:', e);
|
||||
}
|
||||
}
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.controls-bar {
|
||||
.vm-selector-bar {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
background-color: white;
|
||||
border-radius: 0.25rem;
|
||||
padding: 1rem;
|
||||
padding-top: 0.25rem;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
|
||||
}
|
||||
|
||||
.controls-row {
|
||||
.vm-selector-row {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
padding-bottom: 0.75rem !important;
|
||||
}
|
||||
|
||||
.search-box {
|
||||
@ -622,7 +701,8 @@ const scrollToSelectedVM = () => {
|
||||
background-color: white;
|
||||
border-radius: 0.25rem;
|
||||
overflow: hidden;
|
||||
margin-top: 0.5rem;
|
||||
margin-top: -0.5rem;
|
||||
padding-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.vm-list {
|
||||
@ -631,6 +711,7 @@ const scrollToSelectedVM = () => {
|
||||
width: 100%;
|
||||
max-height: calc(100vh - 200px);
|
||||
overflow-y: auto;
|
||||
padding-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.vm-list-item {
|
||||
@ -638,7 +719,6 @@ const scrollToSelectedVM = () => {
|
||||
align-items: center;
|
||||
padding: 0.75rem 1rem;
|
||||
border: none !important;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
|
||||
background-color: white;
|
||||
text-align: left;
|
||||
cursor: pointer;
|
||||
@ -648,6 +728,7 @@ const scrollToSelectedVM = () => {
|
||||
|
||||
.vm-list-item:last-child {
|
||||
border-bottom: none !important;
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.vm-list-item:hover {
|
||||
@ -671,12 +752,12 @@ const scrollToSelectedVM = () => {
|
||||
z-index: 2 !important;
|
||||
}
|
||||
|
||||
.controls-bar .vm-list-container .vm-list .vm-list-item.active {
|
||||
.vm-selector-bar .vm-list-container .vm-list .vm-list-item.active {
|
||||
background-color: rgba(13, 110, 253, 0.15) !important;
|
||||
position: relative !important;
|
||||
}
|
||||
|
||||
.controls-bar .vm-list-container .vm-list .vm-list-item.active::before {
|
||||
.vm-selector-bar .vm-list-container .vm-list .vm-list-item.active::before {
|
||||
content: '';
|
||||
position: absolute !important;
|
||||
left: 0 !important;
|
||||
@ -688,45 +769,60 @@ const scrollToSelectedVM = () => {
|
||||
|
||||
.vm-item-content {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
width: 100%;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.vm-name {
|
||||
font-weight: 500;
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.vm-status {
|
||||
.vm-state {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
font-size: 0.875rem;
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
.status-indicator {
|
||||
.vm-node {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
font-size: 0.875rem;
|
||||
color: #6c757d;
|
||||
width: 100px;
|
||||
}
|
||||
|
||||
.node-icon {
|
||||
font-size: 0.75rem;
|
||||
}
|
||||
|
||||
.state-indicator {
|
||||
font-size: 0.625rem;
|
||||
}
|
||||
|
||||
/* Status colors */
|
||||
/* Status colors - updated */
|
||||
.status-running {
|
||||
color: #28a745;
|
||||
color: #28a745; /* Green */
|
||||
}
|
||||
|
||||
.status-stopped {
|
||||
color: #6c757d;
|
||||
color: #dc3545; /* Red */
|
||||
}
|
||||
|
||||
.status-paused {
|
||||
color: #ffc107;
|
||||
.status-provisioning {
|
||||
color: #0d6efd; /* Blue */
|
||||
}
|
||||
|
||||
.status-error {
|
||||
color: #dc3545;
|
||||
.status-mirror {
|
||||
color: #6f42c1; /* Purple */
|
||||
}
|
||||
|
||||
.status-unknown {
|
||||
color: #6c757d;
|
||||
.status-restarting {
|
||||
color: #ffc107; /* Yellow */
|
||||
}
|
||||
|
||||
.no-vms-message {
|
||||
@ -741,7 +837,7 @@ const scrollToSelectedVM = () => {
|
||||
top: 100%;
|
||||
right: 0;
|
||||
z-index: 1000;
|
||||
min-width: 250px;
|
||||
min-width: 350px;
|
||||
padding: 1rem;
|
||||
margin-top: 0.5rem;
|
||||
background-color: white;
|
||||
@ -757,12 +853,11 @@ const scrollToSelectedVM = () => {
|
||||
margin-bottom: 0.5rem;
|
||||
font-weight: 600;
|
||||
color: #495057;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
|
||||
padding-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.filter-options-dropdown {
|
||||
max-height: 150px;
|
||||
max-height: 200px;
|
||||
overflow-y: auto;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
@ -1,185 +1,163 @@
|
||||
<template>
|
||||
<div class="overview-container">
|
||||
<NodeSelectBar
|
||||
v-model="selectedNode"
|
||||
:nodes="availableNodes"
|
||||
@select="handleNodeSelect"
|
||||
/>
|
||||
<NodeSelectBar
|
||||
v-model="selectedNode"
|
||||
:nodes="availableNodes"
|
||||
@select="handleNodeSelect"
|
||||
/>
|
||||
|
||||
<!-- Node Details -->
|
||||
<div v-if="selectedNodeData" class="node-details">
|
||||
<!-- Information Cards Section -->
|
||||
<CollapsibleSection title="Node Information" :initially-expanded="sections.info">
|
||||
<div class="info-row">
|
||||
<!-- Card 1: Daemon State -->
|
||||
<ValueCard
|
||||
title="Daemon State"
|
||||
:value="selectedNodeData.daemon_state || 'Unknown'"
|
||||
:bg-color="getDaemonStateColor(selectedNodeData.daemon_state)"
|
||||
/>
|
||||
<!-- Node Details -->
|
||||
<div v-if="selectedNodeData" class="content-container">
|
||||
<!-- Information Cards Section -->
|
||||
<CollapsibleSection title="Node Information" :initially-expanded="sections.info">
|
||||
<div class="info-row">
|
||||
<!-- Card 1: Daemon State -->
|
||||
<ValueCard
|
||||
title="Daemon State"
|
||||
:value="selectedNodeData.daemon_state || 'Unknown'"
|
||||
:bg-color="getDaemonStateColor(selectedNodeData.daemon_state)"
|
||||
/>
|
||||
|
||||
<!-- Card 2: Coordinator State -->
|
||||
<ValueCard
|
||||
title="Coordinator State"
|
||||
:value="selectedNodeData.coordinator_state || 'Unknown'"
|
||||
:bg-color="getCoordinatorStateColor(selectedNodeData.coordinator_state)"
|
||||
/>
|
||||
<!-- Card 2: Coordinator State -->
|
||||
<ValueCard
|
||||
title="Coordinator State"
|
||||
:value="selectedNodeData.coordinator_state || 'Unknown'"
|
||||
:bg-color="getCoordinatorStateColor(selectedNodeData.coordinator_state)"
|
||||
/>
|
||||
|
||||
<!-- Card 3: Domain State -->
|
||||
<ValueCard
|
||||
title="Domain State"
|
||||
:value="selectedNodeData.domain_state || 'Unknown'"
|
||||
:bg-color="getDomainStateColor(selectedNodeData.domain_state)"
|
||||
/>
|
||||
<!-- Card 3: Domain State -->
|
||||
<ValueCard
|
||||
title="Domain State"
|
||||
:value="selectedNodeData.domain_state || 'Unknown'"
|
||||
:bg-color="getDomainStateColor(selectedNodeData.domain_state)"
|
||||
/>
|
||||
|
||||
<!-- Card 4: PVC Version -->
|
||||
<ValueCard
|
||||
title="PVC Version"
|
||||
:value="selectedNodeData.pvc_version || 'Unknown'"
|
||||
/>
|
||||
<!-- Card 4: PVC Version -->
|
||||
<ValueCard
|
||||
title="PVC Version"
|
||||
:value="selectedNodeData.pvc_version || 'Unknown'"
|
||||
/>
|
||||
|
||||
<!-- Card 5: Kernel Version -->
|
||||
<ValueCard
|
||||
title="Kernel Version"
|
||||
:value="selectedNodeData.kernel || 'Unknown'"
|
||||
/>
|
||||
<!-- Card 5: Kernel Version -->
|
||||
<ValueCard
|
||||
title="Kernel Version"
|
||||
:value="selectedNodeData.kernel || 'Unknown'"
|
||||
/>
|
||||
|
||||
<!-- Card 6: VM Count -->
|
||||
<ValueCard
|
||||
title="VM Count"
|
||||
:value="selectedNodeData.domains_count || 0"
|
||||
/>
|
||||
</div>
|
||||
</CollapsibleSection>
|
||||
<!-- Card 6: VM Count -->
|
||||
<ValueCard
|
||||
title="VM Count"
|
||||
:value="selectedNodeData.domains_count || 0"
|
||||
/>
|
||||
</div>
|
||||
</CollapsibleSection>
|
||||
|
||||
<!-- Utilization Graphs Section -->
|
||||
<CollapsibleSection title="Health & Utilization Graphs" :initially-expanded="sections.graphs">
|
||||
<div class="graphs-row">
|
||||
<!-- Health Chart -->
|
||||
<HealthChart
|
||||
title="Node Health"
|
||||
:value="selectedNodeData.health || 0"
|
||||
:chart-data="nodeHealthChartData"
|
||||
:maintenance="isMaintenanceMode"
|
||||
/>
|
||||
<!-- Utilization Graphs Section -->
|
||||
<CollapsibleSection title="Health & Utilization Graphs" :initially-expanded="sections.graphs">
|
||||
<div class="graphs-row">
|
||||
<!-- Health Chart -->
|
||||
<HealthChart
|
||||
title="Node Health"
|
||||
:value="selectedNodeData.health || 0"
|
||||
:chart-data="nodeHealthChartData"
|
||||
:maintenance="isMaintenanceMode"
|
||||
/>
|
||||
|
||||
<!-- CPU Utilization Chart -->
|
||||
<CPUChart
|
||||
title="CPU Utilization"
|
||||
:value="calculateCpuUtilization(selectedNodeData)"
|
||||
:chart-data="nodeCpuChartData"
|
||||
/>
|
||||
<!-- CPU Utilization Chart -->
|
||||
<CPUChart
|
||||
title="CPU Utilization"
|
||||
:value="calculateCpuUtilization(selectedNodeData)"
|
||||
:chart-data="nodeCpuChartData"
|
||||
/>
|
||||
|
||||
<!-- Memory Utilization Chart -->
|
||||
<MemoryChart
|
||||
title="Memory Utilization"
|
||||
:value="calculateMemoryUtilization(selectedNodeData)"
|
||||
:chart-data="nodeMemoryChartData"
|
||||
/>
|
||||
<!-- Memory Utilization Chart -->
|
||||
<MemoryChart
|
||||
title="Memory Utilization"
|
||||
:value="calculateMemoryUtilization(selectedNodeData)"
|
||||
:chart-data="nodeMemoryChartData"
|
||||
/>
|
||||
|
||||
<!-- Allocated Memory Chart -->
|
||||
<StorageChart
|
||||
title="Allocated Memory"
|
||||
:value="calculateAllocatedMemory(selectedNodeData)"
|
||||
:chart-data="nodeAllocatedMemoryChartData"
|
||||
/>
|
||||
</div>
|
||||
</CollapsibleSection>
|
||||
<!-- Allocated Memory Chart -->
|
||||
<StorageChart
|
||||
title="Allocated Memory"
|
||||
:value="calculateAllocatedMemory(selectedNodeData)"
|
||||
:chart-data="nodeAllocatedMemoryChartData"
|
||||
/>
|
||||
</div>
|
||||
</CollapsibleSection>
|
||||
|
||||
<!-- CPU Resources Section -->
|
||||
<CollapsibleSection title="CPU Resources" :initially-expanded="sections.cpu">
|
||||
<div class="resources-row-cpu">
|
||||
<!-- Card 1: Host CPUs -->
|
||||
<ValueCard
|
||||
title="Host CPUs"
|
||||
:value="selectedNodeData.cpu_count || 0"
|
||||
/>
|
||||
<!-- CPU Resources Section -->
|
||||
<CollapsibleSection title="CPU Resources" :initially-expanded="sections.cpu">
|
||||
<div class="resources-row-cpu">
|
||||
<!-- Card 1: Host CPUs -->
|
||||
<ValueCard
|
||||
title="Host CPUs"
|
||||
:value="selectedNodeData.cpu_count || 0"
|
||||
/>
|
||||
|
||||
<!-- Card 2: Guest CPUs -->
|
||||
<ValueCard
|
||||
title="Guest CPUs"
|
||||
:value="selectedNodeData.vcpu?.allocated || 0"
|
||||
/>
|
||||
<!-- Card 2: Guest CPUs -->
|
||||
<ValueCard
|
||||
title="Guest CPUs"
|
||||
:value="selectedNodeData.vcpu?.allocated || 0"
|
||||
/>
|
||||
|
||||
<!-- Card 3: Load -->
|
||||
<ValueCard
|
||||
title="Load"
|
||||
:value="selectedNodeData.load || 0"
|
||||
/>
|
||||
</div>
|
||||
</CollapsibleSection>
|
||||
<!-- Card 3: Load -->
|
||||
<ValueCard
|
||||
title="Load"
|
||||
:value="selectedNodeData.load || 0"
|
||||
/>
|
||||
</div>
|
||||
</CollapsibleSection>
|
||||
|
||||
<!-- Memory Resources Section -->
|
||||
<CollapsibleSection title="Memory Resources" :initially-expanded="sections.resources">
|
||||
<div class="resources-row-memory">
|
||||
<!-- Total Memory -->
|
||||
<ValueCard
|
||||
title="Total Memory"
|
||||
:value="formatMemory(selectedNodeData.memory?.total)"
|
||||
/>
|
||||
<!-- Memory Resources Section -->
|
||||
<CollapsibleSection title="Memory Resources" :initially-expanded="sections.resources">
|
||||
<div class="resources-row-memory">
|
||||
<!-- Total Memory -->
|
||||
<ValueCard
|
||||
title="Total Memory"
|
||||
:value="formatMemory(selectedNodeData.memory?.total)"
|
||||
/>
|
||||
|
||||
<!-- Used Memory -->
|
||||
<ValueCard
|
||||
title="Used Memory"
|
||||
:value="formatMemory(selectedNodeData.memory?.used)"
|
||||
/>
|
||||
<!-- Used Memory -->
|
||||
<ValueCard
|
||||
title="Used Memory"
|
||||
:value="formatMemory(selectedNodeData.memory?.used)"
|
||||
/>
|
||||
|
||||
<!-- Free Memory -->
|
||||
<ValueCard
|
||||
title="Free Memory"
|
||||
:value="formatMemory(selectedNodeData.memory?.free)"
|
||||
/>
|
||||
<!-- Free Memory -->
|
||||
<ValueCard
|
||||
title="Free Memory"
|
||||
:value="formatMemory(selectedNodeData.memory?.free)"
|
||||
/>
|
||||
|
||||
<!-- Allocated Memory -->
|
||||
<ValueCard
|
||||
title="Allocated Memory"
|
||||
:value="formatMemory(selectedNodeData.memory?.allocated)"
|
||||
/>
|
||||
<!-- Allocated Memory -->
|
||||
<ValueCard
|
||||
title="Allocated Memory"
|
||||
:value="formatMemory(selectedNodeData.memory?.allocated)"
|
||||
/>
|
||||
|
||||
<!-- Provisioned Memory -->
|
||||
<ValueCard
|
||||
title="Provisioned Memory"
|
||||
:value="formatMemory(selectedNodeData.memory?.provisioned)"
|
||||
/>
|
||||
</div>
|
||||
</CollapsibleSection>
|
||||
<!-- Provisioned Memory -->
|
||||
<ValueCard
|
||||
title="Provisioned Memory"
|
||||
:value="formatMemory(selectedNodeData.memory?.provisioned)"
|
||||
/>
|
||||
</div>
|
||||
</CollapsibleSection>
|
||||
|
||||
<!-- Running VMs Section -->
|
||||
<CollapsibleSection title="Running VMs" :initially-expanded="sections.vms">
|
||||
<div class="vms-container">
|
||||
<div class="vms-card">
|
||||
<div class="card-header">
|
||||
<h6 class="card-title mb-0">
|
||||
<span class="metric-label">Running VMs</span>
|
||||
</h6>
|
||||
</div>
|
||||
<div class="card-body">
|
||||
<div v-if="!selectedNodeData.running_domains || selectedNodeData.running_domains.length === 0" class="no-vms">
|
||||
<p>No VMs running on this node</p>
|
||||
</div>
|
||||
<div v-else class="vm-list" :style="{
|
||||
'grid-template-columns': `repeat(auto-fill, minmax(${calculateVmItemMinWidth}px, 1fr))`
|
||||
}">
|
||||
<div
|
||||
v-for="vm in selectedNodeData.running_domains"
|
||||
:key="vm"
|
||||
class="vm-item"
|
||||
@click="handleVmClick(vm)"
|
||||
title="View VM details"
|
||||
>
|
||||
{{ vm }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</CollapsibleSection>
|
||||
</div>
|
||||
<!-- Running VMs Section -->
|
||||
<CollapsibleSection title="Running VMs" :initially-expanded="sections.vms">
|
||||
<div class="vm-list-row">
|
||||
<NodeVMList
|
||||
:vmData="props.vmData"
|
||||
:nodeData="props.nodeData"
|
||||
:nodeName="selectedNode"
|
||||
/>
|
||||
</div>
|
||||
</CollapsibleSection>
|
||||
</div>
|
||||
|
||||
<!-- No node selected message -->
|
||||
<div v-else class="no-node-selected">
|
||||
<p>Select a node to view details</p>
|
||||
</div>
|
||||
<!-- No node selected message -->
|
||||
<div v-else class="no-node-selected">
|
||||
<p>Select a node to view details</p>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -193,6 +171,8 @@ import HealthChart from '../../charts/HealthChart.vue';
|
||||
import ValueCard from '../../general/ValueCard.vue';
|
||||
import CollapsibleSection from '../../general/CollapsibleSection.vue';
|
||||
import NodeSelectBar from '../../general/NodeSelectBar.vue';
|
||||
import NodeVMList from './NodeVMList.vue';
|
||||
import { useRouter, useRoute } from 'vue-router';
|
||||
|
||||
// Move all the props, refs, computed properties, and functions from Nodes.vue
|
||||
const props = defineProps({
|
||||
@ -210,6 +190,11 @@ const props = defineProps({
|
||||
type: Object,
|
||||
required: true,
|
||||
default: () => ({})
|
||||
},
|
||||
vmData: {
|
||||
type: Array,
|
||||
required: true,
|
||||
default: () => []
|
||||
}
|
||||
});
|
||||
|
||||
@ -430,28 +415,6 @@ const getDomainStateColor = (state) => {
|
||||
return 'gray';
|
||||
};
|
||||
|
||||
// Handle VM click (placeholder until VMs page is implemented)
|
||||
const handleVmClick = (vmName) => {
|
||||
console.log(`VM clicked: ${vmName}`);
|
||||
alert(`The VMs page is not yet implemented. You clicked on VM: ${vmName}`);
|
||||
};
|
||||
|
||||
// Calculate the minimum width for VM items based on the longest VM name
|
||||
const calculateVmItemMinWidth = computed(() => {
|
||||
if (!selectedNodeData.value || !selectedNodeData.value.running_domains || !selectedNodeData.value.running_domains.length) {
|
||||
return 100; // Default minimum width
|
||||
}
|
||||
|
||||
// Find the longest VM name
|
||||
const longestVmName = selectedNodeData.value.running_domains.reduce((longest, current) => {
|
||||
return current.length > longest.length ? current : longest;
|
||||
}, '');
|
||||
|
||||
// Calculate width based on character count (approx 8px per character plus padding)
|
||||
const minWidth = Math.max(100, longestVmName.length * 8 + 32);
|
||||
return minWidth;
|
||||
});
|
||||
|
||||
// Initialize the component
|
||||
onMounted(() => {
|
||||
// Select the first node by default if available
|
||||
@ -492,172 +455,22 @@ const handleNodeSelect = (node) => {
|
||||
|
||||
<style scoped>
|
||||
/* Add these missing styles from the original Nodes.vue */
|
||||
.overview-container {
|
||||
.content-container {
|
||||
background-color: white;
|
||||
border-radius: 0.25rem;
|
||||
width: 100%;
|
||||
padding-top: 0.25rem;
|
||||
}
|
||||
|
||||
.loading-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Node tabs styling */
|
||||
.node-tabs-wrapper {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
|
||||
.node-tabs {
|
||||
display: flex;
|
||||
overflow-x: auto;
|
||||
scrollbar-width: none; /* Hide scrollbar for Firefox */
|
||||
-ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
|
||||
scroll-behavior: smooth;
|
||||
padding: 0 40px; /* Make room for scroll buttons */
|
||||
}
|
||||
|
||||
.node-tabs::-webkit-scrollbar {
|
||||
display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
|
||||
}
|
||||
|
||||
.node-tab {
|
||||
padding: 0.5rem 1rem;
|
||||
background: none;
|
||||
border: none;
|
||||
border-bottom: 2px solid transparent;
|
||||
cursor: pointer;
|
||||
white-space: nowrap;
|
||||
transition: all 0.2s;
|
||||
color: #495057;
|
||||
}
|
||||
|
||||
.node-tab:hover {
|
||||
background-color: rgba(0, 0, 0, 0.03);
|
||||
}
|
||||
|
||||
.node-tab.active {
|
||||
border-bottom: 2px solid #0d6efd;
|
||||
color: #0d6efd;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.tab-scroll-button {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
height: 100%;
|
||||
width: 40px;
|
||||
background: rgba(255, 255, 255, 0.9);
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
z-index: 10;
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
.tab-scroll-button.left {
|
||||
left: 0;
|
||||
box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.tab-scroll-button.right {
|
||||
right: 0;
|
||||
box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
/* Node details styling */
|
||||
.node-details {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.no-node-selected {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 200px;
|
||||
background-color: rgba(0, 0, 0, 0.03);
|
||||
border-radius: 0.25rem;
|
||||
color: #666;
|
||||
}
|
||||
|
||||
/* Section styling */
|
||||
.section-container {
|
||||
position: relative;
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.section-content-wrapper {
|
||||
display: flex;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.section-content {
|
||||
flex: 1;
|
||||
min-width: 0;
|
||||
padding-right: 40px;
|
||||
}
|
||||
|
||||
.toggle-column {
|
||||
position: absolute;
|
||||
top: 4px;
|
||||
right: 0;
|
||||
width: 40px;
|
||||
height: 30px;
|
||||
z-index: 10;
|
||||
padding-left: 6px;
|
||||
}
|
||||
|
||||
.section-toggle {
|
||||
background: none;
|
||||
border: none;
|
||||
color: #666;
|
||||
cursor: pointer;
|
||||
padding: 0.25rem;
|
||||
border-radius: 0.25rem;
|
||||
transition: all 0.2s;
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
background-color: rgba(255, 255, 255, 0.8);
|
||||
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.section-toggle:hover {
|
||||
background-color: rgba(0, 0, 0, 0.05);
|
||||
color: #333;
|
||||
}
|
||||
|
||||
.section-toggle:focus {
|
||||
outline: none;
|
||||
box-shadow: none;
|
||||
}
|
||||
|
||||
.collapsed-section-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 0.5rem;
|
||||
background-color: rgba(0, 0, 0, 0.03);
|
||||
border: 1px solid rgba(0, 0, 0, 0.125);
|
||||
border-radius: 0.25rem;
|
||||
height: 38px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.collapsed-section-header .card-title {
|
||||
margin: 0;
|
||||
color: #495057;
|
||||
font-size: 0.95rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.metrics-row, .graphs-row, .resources-row-cpu, .resources-row-memory, .info-row {
|
||||
.info-row, .graphs-row, .resources-row-cpu, .resources-row-memory, .vm-list-row {
|
||||
display: grid;
|
||||
gap: 0.5rem;
|
||||
width: 100%;
|
||||
@ -665,10 +478,6 @@ const handleNodeSelect = (node) => {
|
||||
|
||||
/* Responsive grid layouts */
|
||||
@media (min-width: 1201px) {
|
||||
.metrics-row {
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
}
|
||||
|
||||
.info-row {
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
}
|
||||
@ -687,10 +496,6 @@ const handleNodeSelect = (node) => {
|
||||
}
|
||||
|
||||
@media (min-width: 801px) and (max-width: 1200px) {
|
||||
.metrics-row {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
|
||||
.info-row {
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
@ -709,7 +514,6 @@ const handleNodeSelect = (node) => {
|
||||
}
|
||||
|
||||
@media (max-width: 800px) {
|
||||
.metrics-row,
|
||||
.info-row,
|
||||
.graphs-row,
|
||||
.resources-row-cpu,
|
||||
@ -718,245 +522,4 @@ const handleNodeSelect = (node) => {
|
||||
}
|
||||
}
|
||||
|
||||
.metric-card {
|
||||
min-width: 180px;
|
||||
background: white;
|
||||
border: 1px solid rgba(0,0,0,0.125);
|
||||
border-radius: 0.25rem;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-width: 0;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.metric-card .card-header {
|
||||
background-color: rgba(0, 0, 0, 0.03);
|
||||
padding: 0.5rem;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
|
||||
height: 38px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.card-header h6 {
|
||||
font-size: 0.95rem;
|
||||
font-weight: 600;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.metric-card .card-body {
|
||||
flex: 1;
|
||||
padding: 0.5rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
overflow: visible;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.metric-card .metric-value {
|
||||
font-size: 1.25rem;
|
||||
font-weight: bold;
|
||||
color: #333;
|
||||
line-height: 1;
|
||||
margin: 0;
|
||||
text-align: center;
|
||||
white-space: nowrap;
|
||||
min-width: fit-content;
|
||||
}
|
||||
|
||||
/* Add back the VM-specific styles */
|
||||
.vms-container {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.vms-card {
|
||||
background: white;
|
||||
border: 1px solid rgba(0,0,0,0.125);
|
||||
border-radius: 0.25rem;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.vms-card .card-header {
|
||||
background-color: rgba(0, 0, 0, 0.03);
|
||||
padding: 0.5rem;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
|
||||
height: 38px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.vms-card .card-body {
|
||||
flex: 1;
|
||||
padding: 0.5rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
position: relative;
|
||||
width: 100%;
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.no-vms {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100px;
|
||||
color: #6c757d;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.vm-list {
|
||||
display: grid;
|
||||
gap: 0.5rem;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.vm-item {
|
||||
padding: 0.5rem;
|
||||
background-color: rgba(0, 0, 0, 0.015);
|
||||
border: 1px solid rgba(0, 0, 0, 0.05);
|
||||
border-radius: 0.25rem;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
font-weight: 500;
|
||||
color: #333;
|
||||
transition: all 0.2s;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.vm-item:hover {
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
border-color: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
/* Also add back these missing utility styles */
|
||||
.metric-percentage {
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
background: rgba(255, 255, 255, 0.8);
|
||||
padding: 0.25rem 0.75rem;
|
||||
border-radius: 0.5rem;
|
||||
box-shadow: 0 0 10px rgba(0,0,0,0.1);
|
||||
z-index: 2;
|
||||
}
|
||||
|
||||
.metric-percentage .metric-value {
|
||||
font-size: 2.5rem;
|
||||
font-weight: 500;
|
||||
color: #333;
|
||||
line-height: 1;
|
||||
margin: 0;
|
||||
text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
.chart-wrapper {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 160px;
|
||||
min-height: 160px;
|
||||
overflow: hidden;
|
||||
border: none;
|
||||
border-radius: 0;
|
||||
background-color: white;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/* Status colors */
|
||||
.status-healthy { color: #28a745; }
|
||||
.status-warning { color: #ffc107; }
|
||||
.status-error { color: #dc3545; }
|
||||
|
||||
/* Chart colors */
|
||||
.chart-cpu {
|
||||
background: white;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.chart-memory {
|
||||
background: white;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.chart-storage, .chart-allocated {
|
||||
background: white;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.chart-health {
|
||||
background: white;
|
||||
border: none;
|
||||
}
|
||||
|
||||
/* Toggle column styles */
|
||||
.toggle-column.expanded {
|
||||
top: 0;
|
||||
right: 0;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
padding-top: 4px;
|
||||
}
|
||||
|
||||
/* Section container styles */
|
||||
.section-container.collapsed {
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.section-container.collapsed .section-content-wrapper {
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
/* Target the specific element causing the padding */
|
||||
ul.nav.nav-tabs {
|
||||
padding-left: 0 !important;
|
||||
margin-left: 0 !important;
|
||||
}
|
||||
|
||||
/* Target Bootstrap's default tab styling */
|
||||
.nav-tabs {
|
||||
padding-left: 0 !important;
|
||||
margin-left: 0 !important;
|
||||
}
|
||||
|
||||
/* Target any list items in the tabs */
|
||||
.nav-tabs > li {
|
||||
margin-left: 0 !important;
|
||||
padding-left: 0 !important;
|
||||
}
|
||||
|
||||
/* Target the tab container */
|
||||
.tab-container {
|
||||
padding-left: 0 !important;
|
||||
margin-left: 0 !important;
|
||||
}
|
||||
|
||||
/* Target the content grid in nodes view */
|
||||
.nodes-view .content-grid {
|
||||
padding-left: 0 !important;
|
||||
margin-left: 0 !important;
|
||||
}
|
||||
|
||||
/* Target all direct children of content-grid in nodes view */
|
||||
.nodes-view .content-grid > * {
|
||||
padding-left: 0 !important;
|
||||
margin-left: 0 !important;
|
||||
}
|
||||
</style>
|
164
pvc-vue/src/components/pages/nodes/NodeVMList.vue
Normal file
164
pvc-vue/src/components/pages/nodes/NodeVMList.vue
Normal file
@ -0,0 +1,164 @@
|
||||
<template>
|
||||
<div class="vms-container">
|
||||
<div class="card-header">
|
||||
<h6 class="card-title mb-0">
|
||||
<span class="metric-label">Running VMs</span>
|
||||
</h6>
|
||||
</div>
|
||||
<div v-if="!runningDomains || runningDomains.length === 0" class="no-vms">
|
||||
No VMs running on this node
|
||||
</div>
|
||||
<div v-else class="vm-list" :style="{
|
||||
'grid-template-columns': `repeat(auto-fill, minmax(150px, 1fr))`
|
||||
}">
|
||||
<div
|
||||
v-for="vmName in runningDomains"
|
||||
:key="vmName"
|
||||
class="vm-item"
|
||||
@click="selectVM(vmName)"
|
||||
>
|
||||
{{ vmName }}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import { computed } from 'vue';
|
||||
import { useRouter } from 'vue-router';
|
||||
|
||||
const props = defineProps({
|
||||
vmData: {
|
||||
type: Array,
|
||||
required: true,
|
||||
default: () => []
|
||||
},
|
||||
nodeData: {
|
||||
type: Array,
|
||||
required: true,
|
||||
default: () => []
|
||||
},
|
||||
nodeName: {
|
||||
type: String,
|
||||
required: true
|
||||
}
|
||||
});
|
||||
|
||||
const router = useRouter();
|
||||
|
||||
// Get the selected node data
|
||||
const nodeData = computed(() => {
|
||||
if (!props.nodeName || !props.nodeData || props.nodeData.length === 0) {
|
||||
console.log('No node selected or no node data available');
|
||||
return null;
|
||||
}
|
||||
|
||||
const node = props.nodeData.find(node => node.name === props.nodeName);
|
||||
console.log(`Node data for ${props.nodeName}:`, node);
|
||||
return node;
|
||||
});
|
||||
|
||||
// Get running domains from the node data
|
||||
const runningDomains = computed(() => {
|
||||
if (!nodeData.value || !nodeData.value.running_domains) {
|
||||
console.log('No running domains found for node:', props.nodeName);
|
||||
return [];
|
||||
}
|
||||
|
||||
console.log(`Found ${nodeData.value.running_domains.length} running domains on node ${props.nodeName}:`, nodeData.value.running_domains);
|
||||
return nodeData.value.running_domains;
|
||||
});
|
||||
|
||||
// Navigate to VM details
|
||||
const selectVM = (vmName) => {
|
||||
console.log('Navigating to VM:', vmName);
|
||||
|
||||
// Find the full VM data if available
|
||||
const vmData = props.vmData.find(vm => vm.name === vmName);
|
||||
console.log('Found VM data:', vmData);
|
||||
|
||||
router.push({
|
||||
path: '/vms',
|
||||
query: { vm: vmName }
|
||||
});
|
||||
};
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.vms-container {
|
||||
min-width: 180px;
|
||||
background: white;
|
||||
border: 1px solid rgba(0,0,0,0.125);
|
||||
border-radius: 0.25rem;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
min-width: 0;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
.card-header {
|
||||
background-color: rgba(0, 0, 0, 0.03);
|
||||
padding: 0.5rem;
|
||||
border-bottom: 1px solid rgba(0, 0, 0, 0.125);
|
||||
height: 38px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.card-header h6 {
|
||||
font-size: 0.95rem;
|
||||
font-weight: 600;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.no-vms {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100px;
|
||||
color: #6c757d;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
.vm-list {
|
||||
display: grid;
|
||||
gap: 0.5rem;
|
||||
width: 100%;
|
||||
padding: 0.5rem;
|
||||
border-radius: 0.25rem;
|
||||
}
|
||||
|
||||
.vm-item {
|
||||
padding: 0.5rem;
|
||||
background-color: rgba(0, 0, 0, 0.015);
|
||||
border: 1px solid rgba(0, 0, 0, 0.05);
|
||||
border-radius: 0.25rem;
|
||||
cursor: pointer;
|
||||
text-align: center;
|
||||
font-weight: 500;
|
||||
color: #333;
|
||||
transition: all 0.2s;
|
||||
white-space: nowrap;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
position: relative;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.vm-item:hover {
|
||||
background-color: rgba(0, 0, 0, 0.04);
|
||||
border-color: rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
.vm-node {
|
||||
font-size: 0.7rem;
|
||||
color: #6c757d;
|
||||
margin-top: 0.25rem;
|
||||
}
|
||||
</style>
|
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div class="overview-container">
|
||||
<div class="content-container">
|
||||
<!-- Information Cards Section -->
|
||||
<CollapsibleSection title="Cluster Information" :initially-expanded="sections.info">
|
||||
<div class="metrics-row">
|
||||
@ -870,11 +870,12 @@ const isMaintenanceMode = computed(() => {
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.overview-container {
|
||||
.content-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
width: 100%;
|
||||
padding-top: 0.25rem;
|
||||
}
|
||||
|
||||
.metrics-row {
|
||||
|
@ -1,117 +1,115 @@
|
||||
<template>
|
||||
<div class="overview-container">
|
||||
<VMSearchBar
|
||||
:key="`vm-search-${selectedVM}`"
|
||||
v-model="searchQuery"
|
||||
:selected-vm="selectedVM"
|
||||
:vm-from-url="route.query.vm"
|
||||
:show-list="showVMList"
|
||||
:show-clear-button="true"
|
||||
:vm-list="props.vmData"
|
||||
@search="handleSearch"
|
||||
@focus="handleSearchFocus"
|
||||
@blur="handleSearchBlur"
|
||||
@clear="clearSearch"
|
||||
@toggle-list="toggleVMList"
|
||||
@select-vm="selectVM"
|
||||
/>
|
||||
<VMSearchBar
|
||||
:key="`vm-search-${selectedVM}`"
|
||||
v-model="searchQuery"
|
||||
:selected-vm="selectedVM"
|
||||
:vm-from-url="route.query.vm"
|
||||
:show-list="showVMList"
|
||||
:show-clear-button="true"
|
||||
:vm-list="props.vmData"
|
||||
@search="handleSearch"
|
||||
@focus="handleSearchFocus"
|
||||
@blur="handleSearchBlur"
|
||||
@clear="clearSearch"
|
||||
@toggle-list="toggleVMList"
|
||||
@select-vm="selectVM"
|
||||
/>
|
||||
|
||||
<!-- VM Details -->
|
||||
<div v-if="selectedVMData && !showVMList" class="content-container">
|
||||
<CollapsibleSection title="VM Information" :initially-expanded="sections.info">
|
||||
<div class="info-grid">
|
||||
<ValueCard
|
||||
title="State"
|
||||
:value="selectedVMData.state || 'Unknown'"
|
||||
:status="getStateColor(selectedVMData.state)"
|
||||
/>
|
||||
<ValueCard
|
||||
title="Node"
|
||||
:value="selectedVMData.node || 'N/A'"
|
||||
/>
|
||||
<ValueCard
|
||||
title="CPUs"
|
||||
:value="selectedVMData.vcpus || 0"
|
||||
/>
|
||||
<ValueCard
|
||||
title="Memory"
|
||||
:value="formatMemory(selectedVMData.memory)"
|
||||
/>
|
||||
</div>
|
||||
</CollapsibleSection>
|
||||
|
||||
<!-- Resources Section -->
|
||||
<CollapsibleSection title="Resources" :initially-expanded="sections.resources">
|
||||
<div class="info-grid-2">
|
||||
<ValueCard
|
||||
title="Disk Size"
|
||||
:value="formatStorage(selectedVMData.disk_size)"
|
||||
/>
|
||||
<ValueCard
|
||||
title="Network IPs"
|
||||
:value="selectedVMData.ips?.join(', ') || 'None'"
|
||||
/>
|
||||
</div>
|
||||
</CollapsibleSection>
|
||||
|
||||
<!-- Networks Section -->
|
||||
<CollapsibleSection
|
||||
v-if="selectedVMData.networks?.length"
|
||||
title="Network Interfaces"
|
||||
:initially-expanded="sections.networks"
|
||||
>
|
||||
<div class="cards-stack">
|
||||
<div v-for="network in selectedVMData.networks"
|
||||
:key="network.vni"
|
||||
class="detail-card"
|
||||
>
|
||||
<ValueCard title="Interface" :value="network.vni" />
|
||||
<ValueCard title="Type" :value="network.type" />
|
||||
<ValueCard title="MAC" :value="network.mac" />
|
||||
<ValueCard title="Source" :value="network.source" />
|
||||
</div>
|
||||
</div>
|
||||
</CollapsibleSection>
|
||||
|
||||
<!-- Storage Section -->
|
||||
<CollapsibleSection
|
||||
v-if="selectedVMData.disks?.length"
|
||||
title="Storage"
|
||||
:initially-expanded="sections.storage"
|
||||
>
|
||||
<div class="cards-stack">
|
||||
<div v-for="disk in selectedVMData.disks"
|
||||
:key="disk.dev"
|
||||
class="detail-card"
|
||||
>
|
||||
<ValueCard title="Device" :value="disk.dev" />
|
||||
<ValueCard title="Type" :value="disk.type" />
|
||||
<ValueCard title="Bus" :value="disk.bus" />
|
||||
<ValueCard title="Source" :value="disk.name" />
|
||||
</div>
|
||||
</div>
|
||||
</CollapsibleSection>
|
||||
</div>
|
||||
|
||||
<!-- Loading and no-selection states -->
|
||||
<div v-if="!selectedVMData && !showVMList" class="content-container">
|
||||
<div v-if="isLoading" class="loading-container">
|
||||
<div class="spinner-border text-primary" role="status">
|
||||
<span class="visually-hidden">Loading...</span>
|
||||
</div>
|
||||
<p class="mt-2 text-muted">Loading VM details...</p>
|
||||
<!-- VM Details -->
|
||||
<div v-if="selectedVMData && !showVMList" class="content-container">
|
||||
<CollapsibleSection title="VM Information" :initially-expanded="sections.info">
|
||||
<div class="info-grid-general">
|
||||
<ValueCard
|
||||
title="State"
|
||||
:value="selectedVMData.state || 'Unknown'"
|
||||
:status="getStateColor(selectedVMData.state)"
|
||||
/>
|
||||
<ValueCard
|
||||
title="Node"
|
||||
:value="selectedVMData.node || 'N/A'"
|
||||
/>
|
||||
<ValueCard
|
||||
title="CPUs"
|
||||
:value="selectedVMData.vcpus || 0"
|
||||
/>
|
||||
<ValueCard
|
||||
title="Memory"
|
||||
:value="formatMemory(selectedVMData.memory)"
|
||||
/>
|
||||
</div>
|
||||
<div v-else class="no-content-message">
|
||||
<div class="alert alert-info">
|
||||
<i class="fas fa-info-circle me-2"></i>
|
||||
<span v-if="invalidVMSelected">
|
||||
Selected VM does not exist
|
||||
</span>
|
||||
<span v-else>
|
||||
Please select a VM from the list to view its details
|
||||
</span>
|
||||
</CollapsibleSection>
|
||||
|
||||
<!-- Resources Section -->
|
||||
<CollapsibleSection title="Resources" :initially-expanded="sections.resources">
|
||||
<div class="info-grid-resources">
|
||||
<ValueCard
|
||||
title="Disk Size"
|
||||
:value="formatStorage(selectedVMData.disk_size)"
|
||||
/>
|
||||
<ValueCard
|
||||
title="Network IPs"
|
||||
:value="selectedVMData.ips?.join(', ') || 'None'"
|
||||
/>
|
||||
</div>
|
||||
</CollapsibleSection>
|
||||
|
||||
<!-- Networks Section -->
|
||||
<CollapsibleSection
|
||||
v-if="selectedVMData.networks?.length"
|
||||
title="Network Interfaces"
|
||||
:initially-expanded="sections.networks"
|
||||
>
|
||||
<div class="cards-stack">
|
||||
<div v-for="network in selectedVMData.networks"
|
||||
:key="network.vni"
|
||||
class="detail-card"
|
||||
>
|
||||
<ValueCard title="Interface" :value="network.vni" />
|
||||
<ValueCard title="Type" :value="network.type" />
|
||||
<ValueCard title="MAC" :value="network.mac" />
|
||||
<ValueCard title="Source" :value="network.source" />
|
||||
</div>
|
||||
</div>
|
||||
</CollapsibleSection>
|
||||
|
||||
<!-- Storage Section -->
|
||||
<CollapsibleSection
|
||||
v-if="selectedVMData.disks?.length"
|
||||
title="Storage"
|
||||
:initially-expanded="sections.storage"
|
||||
>
|
||||
<div class="cards-stack">
|
||||
<div v-for="disk in selectedVMData.disks"
|
||||
:key="disk.dev"
|
||||
class="detail-card"
|
||||
>
|
||||
<ValueCard title="Device" :value="disk.dev" />
|
||||
<ValueCard title="Type" :value="disk.type" />
|
||||
<ValueCard title="Bus" :value="disk.bus" />
|
||||
<ValueCard title="Source" :value="disk.name" />
|
||||
</div>
|
||||
</div>
|
||||
</CollapsibleSection>
|
||||
</div>
|
||||
|
||||
<!-- Loading and no-selection states -->
|
||||
<div v-if="!selectedVMData && !showVMList" class="content-container">
|
||||
<div v-if="isLoading" class="loading-container">
|
||||
<div class="spinner-border text-primary" role="status">
|
||||
<span class="visually-hidden">Loading...</span>
|
||||
</div>
|
||||
<p class="mt-2 text-muted">Loading VM details...</p>
|
||||
</div>
|
||||
<div v-else class="no-content-message">
|
||||
<div class="alert alert-info">
|
||||
<i class="fas fa-info-circle me-2"></i>
|
||||
<span v-if="invalidVMSelected">
|
||||
Selected VM does not exist
|
||||
</span>
|
||||
<span v-else>
|
||||
Please select a VM from the list to view its details
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
@ -318,17 +316,12 @@ const formatStorage = (sizeGB) => {
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.overview-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.content-container {
|
||||
background-color: white;
|
||||
border-radius: 0.25rem;
|
||||
padding: 1rem;
|
||||
width: 100%;
|
||||
padding-top: 0.25rem;
|
||||
}
|
||||
|
||||
.loading-container {
|
||||
@ -344,37 +337,33 @@ const formatStorage = (sizeGB) => {
|
||||
padding: 2rem;
|
||||
}
|
||||
|
||||
/* Keep only the styles needed for VM details display */
|
||||
.info-grid {
|
||||
.info-grid-general {
|
||||
display: grid;
|
||||
gap: 1rem;
|
||||
gap: 0.5rem;
|
||||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||||
}
|
||||
|
||||
.info-grid-2 {
|
||||
.info-grid-resources {
|
||||
display: grid;
|
||||
gap: 1rem;
|
||||
gap: 0.5rem;
|
||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
||||
}
|
||||
|
||||
.cards-stack {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 1rem;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.detail-card {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
|
||||
gap: 1rem;
|
||||
padding: 1rem;
|
||||
background-color: rgba(0, 0, 0, 0.02);
|
||||
border-radius: 0.25rem;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.info-grid,
|
||||
.info-grid-2 {
|
||||
.info-grid-general,
|
||||
.info-grid-resources {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
|
@ -13,7 +13,7 @@
|
||||
import PageTitle from '../components/general/PageTitle.vue';
|
||||
import NodeOverview from '../components/pages/nodes/NodeOverview.vue';
|
||||
|
||||
defineProps({
|
||||
const props = defineProps({
|
||||
nodeData: {
|
||||
type: Array,
|
||||
required: true,
|
||||
@ -39,9 +39,4 @@ defineProps({
|
||||
gap: 0.5rem;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Remove top margin from first child (usually PageTitle) */
|
||||
.content-grid > :first-child {
|
||||
margin-top: 0 !important;
|
||||
}
|
||||
</style>
|
@ -14,7 +14,6 @@
|
||||
import PageTitle from '../components/general/PageTitle.vue';
|
||||
import VMOverview from '../components/pages/vms/VMOverview.vue';
|
||||
|
||||
// Define props to receive data from App.vue
|
||||
const props = defineProps({
|
||||
vmData: {
|
||||
type: Array,
|
||||
@ -45,9 +44,4 @@ const props = defineProps({
|
||||
gap: 0.5rem;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
/* Remove top margin from first child (usually PageTitle) */
|
||||
.content-grid > :first-child {
|
||||
margin-top: 0 !important;
|
||||
}
|
||||
</style>
|
Loading…
x
Reference in New Issue
Block a user