mirror of
https://github.com/unraid/api.git
synced 2026-01-06 08:39:54 -06:00
## Summary Introduces a new Vue-based Docker container management interface replacing the legacy webgui table. ### Container Management - Start, stop, pause, resume, and remove containers via GraphQL mutations - Bulk actions for managing multiple containers at once - Container update detection with one-click updates - Real-time container statistics (CPU, memory, I/O) ### Organization & Navigation - Folder-based container organization with drag-and-drop support - Accessible reordering via keyboard controls - Customizable column visibility with persistent preferences - Column resizing and reordering - Filtering and search across container properties ### Auto-start Configuration - Dedicated autostart view with delay configuration - Drag-and-drop reordering of start/stop sequences ### Logs & Console - Integrated log viewer with filtering and download - Persistent console sessions with shell selection - Slideover panel for quick access ### Networking - Port conflict detection and alerts - Tailscale integration for container networking status - LAN IP and port information display ### Additional Features - Orphaned container detection and cleanup - Template mapping management - Critical notifications system - WebUI visit links with Tailscale support <sub>PR Summary by Claude Opus 4.5</sub>
391 lines
12 KiB
HTML
391 lines
12 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>All Components - Unraid Component Test</title>
|
|
<script src="https://code.jquery.com/jquery-3.7.1.min.js"></script>
|
|
<style>
|
|
body {
|
|
font-family: system-ui, -apple-system, sans-serif;
|
|
margin: 0;
|
|
padding: 20px;
|
|
background: #f3f4f6;
|
|
}
|
|
.container {
|
|
max-width: 1200px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
}
|
|
.component-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 20px;
|
|
margin-top: 20px;
|
|
}
|
|
.component-card {
|
|
background: white;
|
|
border-radius: 8px;
|
|
padding: 20px;
|
|
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
|
|
}
|
|
.component-card h3 {
|
|
margin: 0 0 10px 0;
|
|
color: #1f2937;
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
}
|
|
.component-card .selector {
|
|
font-family: monospace;
|
|
font-size: 12px;
|
|
color: #6b7280;
|
|
margin-bottom: 15px;
|
|
background: #f3f4f6;
|
|
padding: 4px 8px;
|
|
border-radius: 4px;
|
|
display: inline-block;
|
|
}
|
|
.component-mount {
|
|
min-height: 50px;
|
|
border: 1px dashed #e5e7eb;
|
|
border-radius: 4px;
|
|
padding: 10px;
|
|
position: relative;
|
|
}
|
|
.status {
|
|
position: absolute;
|
|
top: 5px;
|
|
right: 5px;
|
|
width: 8px;
|
|
height: 8px;
|
|
border-radius: 50%;
|
|
background: #10b981;
|
|
}
|
|
.category-header {
|
|
background: #1f2937;
|
|
color: white;
|
|
padding: 10px 15px;
|
|
border-radius: 4px;
|
|
margin: 30px 0 15px 0;
|
|
font-weight: 600;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="category-header">🔔 Notifications</div>
|
|
<div class="component-card" style="grid-column: 1 / -1;">
|
|
<h3>Critical Notifications</h3>
|
|
<span class="selector"><unraid-critical-notifications></span>
|
|
<div class="component-mount">
|
|
<unraid-critical-notifications></unraid-critical-notifications>
|
|
</div>
|
|
</div>
|
|
<!-- Docker -->
|
|
<div class="category-header">🐳 Docker</div>
|
|
<div class="component-grid">
|
|
<div class="component-card" style="grid-column: 1 / -1;">
|
|
<h3>Docker Container Overview</h3>
|
|
<span class="selector"><unraid-docker-container-overview></span>
|
|
<div class="component-mount">
|
|
<unraid-docker-container-overview></unraid-docker-container-overview>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Authentication & User -->
|
|
<div class="category-header">👤 Authentication & User</div>
|
|
<div class="component-grid">
|
|
<div class="component-card">
|
|
<h3>Authentication</h3>
|
|
<span class="selector"><unraid-auth></span>
|
|
<div class="component-mount">
|
|
<unraid-auth></unraid-auth>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="component-card">
|
|
<h3>User Profile</h3>
|
|
<span class="selector"><unraid-user-profile></span>
|
|
<div class="component-mount">
|
|
<unraid-user-profile></unraid-user-profile>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="component-card">
|
|
<h3>SSO Button</h3>
|
|
<span class="selector"><unraid-sso-button></span>
|
|
<div class="component-mount">
|
|
<unraid-sso-button></unraid-sso-button>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="component-card">
|
|
<h3>Registration</h3>
|
|
<span class="selector"><unraid-registration></span>
|
|
<div class="component-mount">
|
|
<unraid-registration></unraid-registration>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- System & Settings -->
|
|
<div class="category-header">⚙️ System & Settings</div>
|
|
<div class="component-grid">
|
|
<div class="component-card">
|
|
<h3>Connect Settings</h3>
|
|
<span class="selector"><unraid-connect-settings></span>
|
|
<div class="component-mount">
|
|
<unraid-connect-settings></unraid-connect-settings>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="component-card">
|
|
<h3>Theme Switcher</h3>
|
|
<span class="selector"><unraid-theme-switcher></span>
|
|
<div class="component-mount">
|
|
<unraid-theme-switcher current="white"></unraid-theme-switcher>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="component-card">
|
|
<h3>Header OS Version</h3>
|
|
<span class="selector"><unraid-header-os-version></span>
|
|
<div class="component-mount">
|
|
<unraid-header-os-version></unraid-header-os-version>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="component-card">
|
|
<h3>WAN IP Check</h3>
|
|
<span class="selector"><unraid-wan-ip-check></span>
|
|
<div class="component-mount">
|
|
<unraid-wan-ip-check php-wan-ip="192.168.1.1"></unraid-wan-ip-check>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- OS Management -->
|
|
<div class="category-header">💿 OS Management</div>
|
|
<div class="component-grid">
|
|
<div class="component-card">
|
|
<h3>Update OS</h3>
|
|
<span class="selector"><unraid-update-os></span>
|
|
<div class="component-mount">
|
|
<unraid-update-os></unraid-update-os>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="component-card">
|
|
<h3>Downgrade OS</h3>
|
|
<span class="selector"><unraid-downgrade-os></span>
|
|
<div class="component-mount">
|
|
<unraid-downgrade-os></unraid-downgrade-os>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- API & Developer -->
|
|
<div class="category-header">🔧 API & Developer</div>
|
|
<div class="component-grid">
|
|
<div class="component-card">
|
|
<h3>API Key Manager</h3>
|
|
<span class="selector"><unraid-api-key-manager></span>
|
|
<div class="component-mount">
|
|
<unraid-api-key-manager></unraid-api-key-manager>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="component-card">
|
|
<h3>API Key Authorize</h3>
|
|
<span class="selector"><unraid-api-key-authorize></span>
|
|
<div class="component-mount">
|
|
<unraid-api-key-authorize></unraid-api-key-authorize>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="component-card">
|
|
<h3>Download API Logs</h3>
|
|
<span class="selector"><unraid-download-api-logs></span>
|
|
<div class="component-mount">
|
|
<unraid-download-api-logs></unraid-download-api-logs>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="component-card">
|
|
<h3>Log Viewer</h3>
|
|
<span class="selector"><unraid-log-viewer></span>
|
|
<div class="component-mount">
|
|
<unraid-log-viewer></unraid-log-viewer>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- UI Components -->
|
|
<div class="category-header">🎨 UI Components</div>
|
|
<div class="component-grid">
|
|
<div class="component-card">
|
|
<h3>Modals</h3>
|
|
<span class="selector"><unraid-modals></span>
|
|
<div class="component-mount">
|
|
<unraid-modals></unraid-modals>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="component-card">
|
|
<h3>Welcome Modal</h3>
|
|
<span class="selector"><unraid-welcome-modal></span>
|
|
<div class="component-mount">
|
|
<unraid-welcome-modal></unraid-welcome-modal>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="component-card">
|
|
<h3>Dev Modal Test</h3>
|
|
<span class="selector"><unraid-dev-modal-test></span>
|
|
<div class="component-mount">
|
|
<unraid-dev-modal-test></unraid-dev-modal-test>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="component-card">
|
|
<h3>Toaster</h3>
|
|
<span class="selector"><unraid-toaster></span>
|
|
<div class="component-mount">
|
|
<unraid-toaster></unraid-toaster>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Test Controls -->
|
|
<div class="category-header">🎮 Test Controls</div>
|
|
<div style="background: white; padding: 20px; border-radius: 8px; margin-top: 15px;">
|
|
<h3>Language Selection</h3>
|
|
<div style="margin-bottom: 20px;">
|
|
<unraid-locale-switcher></unraid-locale-switcher>
|
|
</div>
|
|
|
|
<h3>jQuery Interaction Tests</h3>
|
|
<div style="display: flex; gap: 10px; flex-wrap: wrap; margin-top: 15px;">
|
|
<button id="test-notification" class="test-btn">Trigger Notification</button>
|
|
<button id="test-modal" class="test-btn">Open Test Modal</button>
|
|
<button id="test-theme" class="test-btn">Toggle Theme</button>
|
|
<button id="test-update-profile" class="test-btn">Update Profile Data</button>
|
|
<button id="test-settings" class="test-btn">Update Settings</button>
|
|
</div>
|
|
|
|
<div style="margin-top: 20px;">
|
|
<h4>Console Output</h4>
|
|
<div id="test-output" style="background: #1f2937; color: #10b981; padding: 10px; border-radius: 4px; font-family: monospace; font-size: 12px; min-height: 100px; max-height: 200px; overflow-y: auto;">
|
|
> Ready for testing...
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.test-btn {
|
|
padding: 8px 16px;
|
|
background: #3b82f6;
|
|
color: white;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
font-size: 14px;
|
|
}
|
|
.test-btn:hover {
|
|
background: #2563eb;
|
|
}
|
|
</style>
|
|
|
|
<!-- Load the manifest and inject resources -->
|
|
<script src="/test-pages/load-manifest.js"></script>
|
|
<script src="/test-pages/test-server-state.js"></script>
|
|
<script src="/test-pages/shared-header.js"></script>
|
|
|
|
<!-- Test interactions -->
|
|
<script>
|
|
$(document).ready(function() {
|
|
const output = $('#test-output');
|
|
|
|
function log(message) {
|
|
// Use shared header's testLog if available, otherwise local log
|
|
if (window.testLog) {
|
|
window.testLog(message);
|
|
}
|
|
if (output.length) {
|
|
const timestamp = new Date().toLocaleTimeString();
|
|
output.append('\n> [' + timestamp + '] ' + message);
|
|
output.scrollTop(output[0].scrollHeight);
|
|
}
|
|
}
|
|
|
|
// Test notification
|
|
$('#test-notification').on('click', function() {
|
|
log('Triggering notification...');
|
|
const event = new CustomEvent('unraid:notification', {
|
|
detail: {
|
|
title: 'Test Notification',
|
|
message: 'This is a test from jQuery!',
|
|
type: 'success'
|
|
}
|
|
});
|
|
document.dispatchEvent(event);
|
|
});
|
|
|
|
// Test modal
|
|
$('#test-modal').on('click', function() {
|
|
log('Opening test modal...');
|
|
// This would trigger the modal system
|
|
window.dispatchEvent(new CustomEvent('unraid:open-modal', {
|
|
detail: { modalId: 'test-modal' }
|
|
}));
|
|
});
|
|
|
|
// Test theme toggle
|
|
$('#test-theme').on('click', function() {
|
|
log('Toggling theme...');
|
|
const currentTheme = $('body').hasClass('dark') ? 'light' : 'dark';
|
|
$('body').toggleClass('dark');
|
|
log('Theme changed to: ' + currentTheme);
|
|
});
|
|
|
|
// Test profile update
|
|
$('#test-update-profile').on('click', function() {
|
|
log('Updating profile data...');
|
|
const profileData = {
|
|
name: 'Test User ' + Math.floor(Math.random() * 100),
|
|
email: 'test' + Math.floor(Math.random() * 100) + '@example.com',
|
|
username: 'testuser'
|
|
};
|
|
$('unraid-user-profile').attr('server', JSON.stringify(profileData));
|
|
log('Profile updated: ' + JSON.stringify(profileData));
|
|
});
|
|
|
|
// Test settings update
|
|
$('#test-settings').on('click', function() {
|
|
log('Updating connect settings...');
|
|
const settings = {
|
|
enabled: Math.random() > 0.5,
|
|
url: 'https://connect.unraid.net',
|
|
lastSync: new Date().toISOString()
|
|
};
|
|
$('unraid-connect-settings').attr('initial-settings', JSON.stringify(settings));
|
|
log('Settings updated: ' + JSON.stringify(settings));
|
|
});
|
|
|
|
// Listen for component events
|
|
$(document).on('unraid:theme-changed', function(e, data) {
|
|
log('Theme changed event received: ' + JSON.stringify(data));
|
|
});
|
|
|
|
$(document).on('unraid:settings-saved', function(e, data) {
|
|
log('Settings saved event received: ' + JSON.stringify(data));
|
|
});
|
|
|
|
log('Test page initialized - all components loaded');
|
|
});
|
|
</script>
|
|
</body>
|
|
</html>
|