❌ {{ channelsError }}
@@ -500,24 +652,117 @@
@@ -1951,31 +2025,724 @@ onUnmounted(() => {
flex-wrap: wrap;
}
-.audio-player-container {
- margin: 12px 0 24px;
- padding: 16px;
- border-radius: 8px;
- background: rgba(0, 0, 0, 0.2);
- border: 1px solid #333;
+/* Enhanced Media Player Section */
+.enhanced-player-section {
+ background: linear-gradient(135deg, #1a1a2e 0%, #0f0f1e 100%);
+ border-radius: 12px;
+ padding: 24px;
+ margin: 20px 0 32px;
+ border: 2px solid rgba(0, 212, 255, 0.4);
+ box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
+}
+
+.player-header {
display: flex;
- gap: 12px;
+ justify-content: space-between;
+ align-items: center;
+ margin-bottom: 20px;
+ padding-bottom: 16px;
+ border-bottom: 1px solid rgba(0, 212, 255, 0.2);
+}
+
+.player-header h3 {
+ margin: 0;
+ color: #00d4ff;
+ font-size: 1.3rem;
+}
+
+.player-controls-header {
+ display: flex;
+ gap: 10px;
align-items: center;
}
-.audio-error {
- margin: 0;
- color: #ff6b6b;
- flex: 1;
+.btn-refresh-meta {
+ background: rgba(0, 212, 255, 0.15);
+ border: 1px solid rgba(0, 212, 255, 0.4);
+ color: #00d4ff;
+ padding: 8px 12px;
+ border-radius: 6px;
+ cursor: pointer;
+ font-size: 1.1rem;
+ transition: all 0.2s;
+ min-width: 40px;
+ display: flex;
+ align-items: center;
+ justify-content: center;
+}
+
+.btn-refresh-meta:hover:not(:disabled) {
+ background: rgba(0, 212, 255, 0.25);
+ border-color: rgba(0, 212, 255, 0.6);
+}
+
+.btn-refresh-meta:disabled {
+ opacity: 0.5;
+ cursor: not-allowed;
}
.btn-stop {
padding: 8px 16px;
- border-radius: 4px;
- border: none;
+ border-radius: 6px;
+ border: 1px solid rgba(231, 76, 60, 0.4);
cursor: pointer;
- background: rgba(231, 76, 60, 0.2);
+ background: rgba(231, 76, 60, 0.15);
color: #e74c3c;
font-weight: bold;
+ transition: all 0.2s;
+}
+
+.btn-stop:hover {
+ background: rgba(231, 76, 60, 0.25);
+ border-color: rgba(231, 76, 60, 0.6);
+}
+
+.audio-error-banner {
+ background: rgba(255, 68, 68, 0.15);
+ border: 1px solid rgba(255, 68, 68, 0.4);
+ color: #ff6b6b;
+ padding: 16px;
+ border-radius: 8px;
+ margin-bottom: 16px;
+ font-weight: 500;
+}
+
+.player-content {
+ display: flex;
+ flex-direction: column;
+ gap: 20px;
+}
+
+.player-info {
+ display: flex;
+ gap: 24px;
+ align-items: flex-start;
+}
+
+.player-cover {
+ flex-shrink: 0;
+}
+
+.player-cover img {
+ width: 180px;
+ height: 180px;
+ object-fit: cover;
+ border-radius: 12px;
+ box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
+ border: 2px solid rgba(0, 212, 255, 0.2);
+}
+
+.player-metadata {
+ flex: 1;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ gap: 8px;
+ min-width: 0;
+}
+
+.metadata-display {
+ display: flex;
+ flex-direction: column;
+ gap: 8px;
+}
+
+.player-title {
+ font-size: 1.8rem;
+ font-weight: bold;
+ color: #ffffff;
+ line-height: 1.2;
+ word-wrap: break-word;
+}
+
+.player-artist {
+ font-size: 1.4rem;
+ color: #00d4ff;
+ font-weight: 600;
+ line-height: 1.3;
+}
+
+.player-album {
+ font-size: 1.1rem;
+ color: #9aa0a6;
+ font-style: italic;
+}
+
+.player-year {
+ font-size: 0.95rem;
+ color: #666;
+ background: rgba(255, 255, 255, 0.05);
+ padding: 4px 10px;
+ border-radius: 4px;
+ display: inline-block;
+ align-self: flex-start;
+ margin-top: 4px;
+}
+
+.metadata-loading {
+ color: #9aa0a6;
+ font-size: 1rem;
+ font-style: italic;
+}
+
+.player-audio-controls {
+ width: 100%;
+}
+
+.player-audio-controls audio {
+ width: 100%;
+ border-radius: 8px;
+ background: #0a0a0a;
+ outline: none;
+}
+
+.player-stream-info {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
+ gap: 12px;
+ padding: 16px;
+ background: rgba(0, 0, 0, 0.3);
+ border-radius: 8px;
+ border: 1px solid rgba(0, 212, 255, 0.15);
+}
+
+.stream-info-item {
+ display: flex;
+ flex-direction: column;
+ gap: 4px;
+}
+
+.info-label {
+ font-size: 0.75rem;
+ text-transform: uppercase;
+ letter-spacing: 0.05em;
+ color: #9aa0a6;
+ font-weight: 600;
+}
+
+.info-value {
+ font-size: 1rem;
+ color: #f5f5f5;
+ font-weight: 500;
+}
+
+/* Stream Controls Section */
+.stream-controls-section {
+ background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
+ border-radius: 8px;
+ padding: 20px;
+ margin-bottom: 20px;
+ border: 1px solid rgba(0, 212, 255, 0.3);
+}
+
+.stream-controls-section h3 {
+ margin-top: 0;
+ color: #00d4ff;
+ margin-bottom: 16px;
+}
+
+.stream-controls-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
+ gap: 20px;
+}
+
+.control-group {
+ display: flex;
+ flex-direction: column;
+ gap: 10px;
+}
+
+.control-group label {
+ font-weight: 600;
+ color: #9aa0a6;
+ font-size: 0.9rem;
+ text-transform: uppercase;
+ letter-spacing: 0.05em;
+}
+
+.format-chips,
+.mode-chips {
+ display: flex;
+ gap: 10px;
+ flex-wrap: wrap;
+}
+
+.format-chip,
+.mode-chip {
+ padding: 10px 18px;
+ border-radius: 6px;
+ border: 2px solid rgba(0, 212, 255, 0.3);
+ background: rgba(0, 212, 255, 0.08);
+ color: #00d4ff;
+ cursor: pointer;
+ font-weight: 600;
+ transition: all 0.2s;
+ font-size: 0.9rem;
+}
+
+.format-chip:hover,
+.mode-chip:hover {
+ background: rgba(0, 212, 255, 0.15);
+ border-color: rgba(0, 212, 255, 0.5);
+ transform: translateY(-2px);
+}
+
+.format-chip.active,
+.mode-chip.active {
+ background: rgba(0, 212, 255, 0.25);
+ border-color: #00d4ff;
+ box-shadow: 0 0 12px rgba(0, 212, 255, 0.3);
+}
+
+.format-description {
+ padding: 8px 12px;
+ background: rgba(0, 0, 0, 0.3);
+ border-radius: 4px;
+ font-size: 0.85rem;
+ color: #9aa0a6;
+ font-style: italic;
+}
+
+.client-id-input {
+ padding: 10px 12px;
+ border-radius: 6px;
+ border: 1px solid #333;
+ background: #0f0f0f;
+ color: #fff;
+ font-family: 'Courier New', monospace;
+ font-size: 0.9rem;
+}
+
+.client-id-input:focus {
+ outline: none;
+ border-color: #00d4ff;
+ box-shadow: 0 0 8px rgba(0, 212, 255, 0.2);
+}
+
+/* Stream Diagnostics Section */
+.stream-diagnostics-section {
+ background: #1a1a1a;
+ border-radius: 8px;
+ padding: 20px;
+ margin-bottom: 20px;
+ border: 1px solid #333;
+}
+
+.stream-diagnostics-section h3 {
+ margin-top: 0;
+ color: #00d4ff;
+}
+
+/* Stream Metadata Section */
+.stream-metadata-section {
+ background: #1a1a1a;
+ border-radius: 8px;
+ padding: 20px;
+ margin-bottom: 20px;
+ border: 1px solid #333;
+}
+
+.stream-metadata-section h3 {
+ margin-top: 0;
+ color: #00d4ff;
+}
+
+.playlist-events-section {
+ background: #141414;
+ border-radius: 8px;
+ padding: 20px;
+ margin: 20px 0;
+ border: 1px solid #333;
+}
+
+.status-chip {
+ padding: 6px 10px;
+ border-radius: 999px;
+ border: 1px solid #555;
+ color: #bbb;
+ font-size: 0.8rem;
+}
+
+.status-chip.connected {
+ border-color: rgba(46, 204, 113, 0.6);
+ color: #2ecc71;
+ background: rgba(46, 204, 113, 0.1);
+}
+
+.events-list {
+ display: flex;
+ flex-direction: column;
+ gap: 10px;
+ margin-top: 14px;
+}
+
+.event-item {
+ background: rgba(0, 0, 0, 0.25);
+ border: 1px solid rgba(255, 255, 255, 0.05);
+ border-radius: 8px;
+ padding: 12px;
+}
+
+.event-header {
+ display: flex;
+ flex-wrap: wrap;
+ gap: 10px;
+ align-items: center;
+ justify-content: space-between;
+ margin-bottom: 10px;
+}
+
+.event-kind {
+ text-transform: uppercase;
+ letter-spacing: 0.05em;
+ color: #00d4ff;
+ font-weight: 700;
+}
+
+.event-time {
+ color: #9aa0a6;
+ font-size: 0.9rem;
+}
+
+.event-source {
+ color: #9aa0a6;
+ font-style: italic;
+ font-size: 0.85rem;
+}
+
+.event-body {
+ display: flex;
+ flex-direction: column;
+ gap: 6px;
+}
+
+.event-row {
+ display: flex;
+ gap: 8px;
+ align-items: center;
+ flex-wrap: wrap;
+}
+
+.event-row .label {
+ min-width: 80px;
+}
+
+.metadata-content {
+ margin-top: 12px;
+}
+
+.metadata-json {
+ background: #0f0f0f;
+ border: 1px solid #333;
+ border-radius: 6px;
+ padding: 16px;
+ overflow-x: auto;
+ font-family: 'Courier New', monospace;
+ font-size: 0.85rem;
+ color: #00d4ff;
+ line-height: 1.5;
+ max-height: 400px;
+ overflow-y: auto;
+}
+
+.metadata-json::-webkit-scrollbar {
+ width: 8px;
+ height: 8px;
+}
+
+.metadata-json::-webkit-scrollbar-track {
+ background: #1a1a1a;
+ border-radius: 4px;
+}
+
+.metadata-json::-webkit-scrollbar-thumb {
+ background: #333;
+ border-radius: 4px;
+}
+
+.metadata-json::-webkit-scrollbar-thumb:hover {
+ background: #555;
+}
+
+/* Quick Test Section */
+.quick-test-section {
+ background: linear-gradient(135deg, #2a1a1a 0%, #1a1a1a 100%);
+ border-radius: 8px;
+ padding: 20px;
+ margin-bottom: 20px;
+ border: 1px solid rgba(255, 193, 7, 0.3);
+}
+
+.quick-test-section h3 {
+ margin-top: 0;
+ color: #ffc107;
+ margin-bottom: 8px;
+}
+
+.section-description {
+ color: #9aa0a6;
+ font-size: 0.9rem;
+ margin-bottom: 16px;
+}
+
+.test-commands {
+ display: flex;
+ flex-direction: column;
+ gap: 16px;
+}
+
+.command-group {
+ background: rgba(0, 0, 0, 0.3);
+ border: 1px solid rgba(255, 193, 7, 0.2);
+ border-radius: 6px;
+ padding: 12px;
+}
+
+.command-label {
+ display: flex;
+ justify-content: space-between;
+ align-items: center;
+ margin-bottom: 8px;
+}
+
+.command-label strong {
+ color: #ffc107;
+ font-size: 0.9rem;
+}
+
+.btn-copy-small {
+ background: rgba(255, 193, 7, 0.15);
+ border: 1px solid rgba(255, 193, 7, 0.3);
+ color: #ffc107;
+ padding: 4px 10px;
+ border-radius: 4px;
+ cursor: pointer;
+ font-size: 0.85rem;
+ transition: all 0.2s;
+}
+
+.btn-copy-small:hover {
+ background: rgba(255, 193, 7, 0.25);
+ border-color: rgba(255, 193, 7, 0.5);
+}
+
+.command-text {
+ display: block;
+ background: #0a0a0a;
+ padding: 10px 12px;
+ border-radius: 4px;
+ font-family: 'Courier New', monospace;
+ font-size: 0.85rem;
+ color: #00d4ff;
+ overflow-x: auto;
+ white-space: nowrap;
+ border: 1px solid #222;
+}
+
+.command-text::-webkit-scrollbar {
+ height: 6px;
+}
+
+.command-text::-webkit-scrollbar-track {
+ background: #111;
+ border-radius: 3px;
+}
+
+.command-text::-webkit-scrollbar-thumb {
+ background: #333;
+ border-radius: 3px;
+}
+
+.command-text::-webkit-scrollbar-thumb:hover {
+ background: #555;
+}
+
+.diagnostics-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
+ gap: 12px;
+ margin-bottom: 20px;
+}
+
+.diagnostic-card {
+ background: rgba(0, 212, 255, 0.05);
+ border: 1px solid rgba(0, 212, 255, 0.15);
+ border-radius: 6px;
+ padding: 12px;
+ display: flex;
+ flex-direction: column;
+ gap: 6px;
+}
+
+.diagnostic-label {
+ font-size: 0.75rem;
+ text-transform: uppercase;
+ letter-spacing: 0.05em;
+ color: #9aa0a6;
+ font-weight: 600;
+}
+
+.diagnostic-value {
+ font-size: 1rem;
+ font-weight: 600;
+ color: #f5f5f5;
+}
+
+.diagnostic-value code {
+ background: rgba(0, 0, 0, 0.4);
+ padding: 4px 8px;
+ border-radius: 4px;
+ font-family: 'Courier New', monospace;
+ font-size: 0.85rem;
+ color: #00d4ff;
+ word-break: break-all;
+ display: block;
+ margin-top: 4px;
+}
+
+.stream-urls-list {
+ display: flex;
+ flex-direction: column;
+ gap: 10px;
+ background: rgba(0, 0, 0, 0.3);
+ padding: 16px;
+ border-radius: 6px;
+}
+
+.url-item {
+ display: flex;
+ gap: 10px;
+ align-items: center;
+ flex-wrap: wrap;
+ padding: 8px;
+ border-bottom: 1px solid rgba(255, 255, 255, 0.05);
+}
+
+.url-item:last-child {
+ border-bottom: none;
+}
+
+.url-item strong {
+ color: #00d4ff;
+ min-width: 120px;
+}
+
+/* Test Endpoints Section */
+.test-endpoints-section {
+ background: linear-gradient(135deg, #1a2a1a 0%, #1a1a1a 100%);
+ border-radius: 8px;
+ padding: 20px;
+ margin: 30px 0;
+ border: 1px solid rgba(46, 204, 113, 0.3);
+}
+
+.test-endpoints-section h3 {
+ margin-top: 0;
+ color: #2ecc71;
+ margin-bottom: 16px;
+}
+
+.test-grid {
+ display: grid;
+ grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
+ gap: 20px;
+}
+
+.test-card {
+ background: rgba(0, 0, 0, 0.3);
+ border: 1px solid rgba(46, 204, 113, 0.2);
+ border-radius: 8px;
+ padding: 16px;
+ display: flex;
+ flex-direction: column;
+ gap: 12px;
+}
+
+.test-card h4 {
+ margin: 0 0 8px 0;
+ color: #2ecc71;
+ font-size: 1rem;
+ font-weight: 600;
+}
+
+.test-controls {
+ display: flex;
+ flex-direction: column;
+ gap: 10px;
+}
+
+.test-input {
+ padding: 8px 12px;
+ border-radius: 4px;
+ border: 1px solid #333;
+ background: #111;
+ color: #fff;
+ font-size: 0.9rem;
+}
+
+.test-input:focus {
+ outline: none;
+ border-color: #2ecc71;
+ box-shadow: 0 0 6px rgba(46, 204, 113, 0.2);
+}
+
+.test-result {
+ background: rgba(46, 204, 113, 0.05);
+ border: 1px solid rgba(46, 204, 113, 0.15);
+ border-radius: 6px;
+ padding: 12px;
+ display: flex;
+ flex-direction: column;
+ gap: 8px;
+ margin-top: 4px;
+}
+
+.result-item {
+ display: flex;
+ flex-direction: column;
+ gap: 4px;
+ font-size: 0.9rem;
+}
+
+.result-item strong {
+ color: #2ecc71;
+ font-size: 0.8rem;
+ text-transform: uppercase;
+ letter-spacing: 0.03em;
+}
+
+.text-muted {
+ color: #666;
+ font-style: italic;
+}
+
+.cover-preview {
+ margin-top: 8px;
+ display: flex;
+ justify-content: center;
+}
+
+.cover-preview img {
+ max-width: 100%;
+ max-height: 300px;
+ border-radius: 8px;
+ border: 2px solid rgba(46, 204, 113, 0.3);
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
+}
+
+.cover-preview-small {
+ margin-top: 8px;
+ display: flex;
+ justify-content: center;
+}
+
+.cover-preview-small img {
+ max-width: 150px;
+ max-height: 150px;
+ border-radius: 6px;
+ border: 2px solid rgba(46, 204, 113, 0.3);
+ box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
@@ -2005,5 +2772,61 @@ onUnmounted(() => {
flex-direction: column;
align-items: stretch;
}
+
+ .stream-controls-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .diagnostics-grid {
+ grid-template-columns: 1fr;
+ }
+
+ /* Enhanced Player Responsive */
+ .player-header {
+ flex-direction: column;
+ align-items: flex-start;
+ gap: 12px;
+ }
+
+ .player-controls-header {
+ width: 100%;
+ justify-content: flex-end;
+ }
+
+ .player-info {
+ flex-direction: column;
+ align-items: center;
+ text-align: center;
+ }
+
+ .player-cover img {
+ width: 150px;
+ height: 150px;
+ }
+
+ .player-title {
+ font-size: 1.4rem;
+ }
+
+ .player-artist {
+ font-size: 1.1rem;
+ }
+
+ .player-album {
+ font-size: 1rem;
+ }
+
+ .player-stream-info {
+ grid-template-columns: 1fr;
+ }
+
+ /* Test Section Responsive */
+ .test-grid {
+ grid-template-columns: 1fr;
+ }
+
+ .cover-preview img {
+ max-height: 200px;
+ }
}
diff --git a/pmoapp/webapp/src/components/pmocontrol/ActionMenu.vue b/pmoapp/webapp/src/components/pmocontrol/ActionMenu.vue
new file mode 100644
index 00000000..0ffb6cc6
--- /dev/null
+++ b/pmoapp/webapp/src/components/pmocontrol/ActionMenu.vue
@@ -0,0 +1,251 @@
+
+
+
+
+
+
+
diff --git a/pmoapp/webapp/src/components/pmocontrol/Breadcrumb.vue b/pmoapp/webapp/src/components/pmocontrol/Breadcrumb.vue
new file mode 100644
index 00000000..0011b839
--- /dev/null
+++ b/pmoapp/webapp/src/components/pmocontrol/Breadcrumb.vue
@@ -0,0 +1,156 @@
+
+
+
+
+
+
+
diff --git a/pmoapp/webapp/src/components/pmocontrol/ContainerItem.vue b/pmoapp/webapp/src/components/pmocontrol/ContainerItem.vue
new file mode 100644
index 00000000..51036efe
--- /dev/null
+++ b/pmoapp/webapp/src/components/pmocontrol/ContainerItem.vue
@@ -0,0 +1,173 @@
+
+
+
+
+
+
+
diff --git a/pmoapp/webapp/src/components/pmocontrol/CurrentTrack.vue b/pmoapp/webapp/src/components/pmocontrol/CurrentTrack.vue
new file mode 100644
index 00000000..77e9ef71
--- /dev/null
+++ b/pmoapp/webapp/src/components/pmocontrol/CurrentTrack.vue
@@ -0,0 +1,168 @@
+
+
+
+
+
+
+
![]()
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ currentTime }}
+ {{ totalTime }}
+
+
+
+
+
+
diff --git a/pmoapp/webapp/src/components/pmocontrol/MediaBrowser.vue b/pmoapp/webapp/src/components/pmocontrol/MediaBrowser.vue
new file mode 100644
index 00000000..10af54c8
--- /dev/null
+++ b/pmoapp/webapp/src/components/pmocontrol/MediaBrowser.vue
@@ -0,0 +1,331 @@
+
+
+
+
+
+
+
diff --git a/pmoapp/webapp/src/components/pmocontrol/MediaItem.vue b/pmoapp/webapp/src/components/pmocontrol/MediaItem.vue
new file mode 100644
index 00000000..1a309db3
--- /dev/null
+++ b/pmoapp/webapp/src/components/pmocontrol/MediaItem.vue
@@ -0,0 +1,185 @@
+
+
+
+
+
+
+
diff --git a/pmoapp/webapp/src/components/pmocontrol/MediaServerCard.vue b/pmoapp/webapp/src/components/pmocontrol/MediaServerCard.vue
new file mode 100644
index 00000000..fba4e0bd
--- /dev/null
+++ b/pmoapp/webapp/src/components/pmocontrol/MediaServerCard.vue
@@ -0,0 +1,162 @@
+
+
+
+
+
+
+
+
+
+
+ {{ statusLabel }}
+
+
+
+
+
+
+
+
diff --git a/pmoapp/webapp/src/components/pmocontrol/PlaylistBindingPanel.vue b/pmoapp/webapp/src/components/pmocontrol/PlaylistBindingPanel.vue
new file mode 100644
index 00000000..788c399a
--- /dev/null
+++ b/pmoapp/webapp/src/components/pmocontrol/PlaylistBindingPanel.vue
@@ -0,0 +1,182 @@
+
+
+
+
+
Synchronisation Playlist
+
+
+
+
+
+
+
Attachée à une playlist
+
+ Serveur:
+ {{ binding?.server_id }}
+
+
+ Container:
+ {{ binding?.container_id }}
+
+
+
+
+
+
+
+
+
+
+
+
+
Non attachée
+
+ La file d'attente n'est pas synchronisée avec une playlist.
+
+
+
+
+
+
+ 📌 Playlist Dynamique
+ La queue se synchronisera automatiquement avec la playlist/album du serveur.
+ Les pistes ajoutées ou retirées sur le serveur apparaîtront ici en temps réel.
+
+
+ 💡 Comment activer ?
+ Naviguez vers un serveur de médias, trouvez une playlist/album,
+ et cliquez sur ⋮ puis "Lire maintenant". Le binding se fera automatiquement !
+
+
+
+
+
+
+
diff --git a/pmoapp/webapp/src/components/pmocontrol/QueueItem.vue b/pmoapp/webapp/src/components/pmocontrol/QueueItem.vue
new file mode 100644
index 00000000..8dd7e808
--- /dev/null
+++ b/pmoapp/webapp/src/components/pmocontrol/QueueItem.vue
@@ -0,0 +1,129 @@
+
+
+
+
+
+
+
+
+
{{ item.index + 1 }}
+
+
+
+
![]()
(e.target as HTMLImageElement).style.display = 'none'"
+ />
+
+
+
+
+
+
+
+
+
diff --git a/pmoapp/webapp/src/components/pmocontrol/QueueViewer.vue b/pmoapp/webapp/src/components/pmocontrol/QueueViewer.vue
new file mode 100644
index 00000000..16c0eb90
--- /dev/null
+++ b/pmoapp/webapp/src/components/pmocontrol/QueueViewer.vue
@@ -0,0 +1,149 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Aucun élément dans la file d'attente
+
+
+
+
+
diff --git a/pmoapp/webapp/src/components/pmocontrol/RendererCard.vue b/pmoapp/webapp/src/components/pmocontrol/RendererCard.vue
new file mode 100644
index 00000000..3d411c80
--- /dev/null
+++ b/pmoapp/webapp/src/components/pmocontrol/RendererCard.vue
@@ -0,0 +1,332 @@
+
+
+
+
+
+
+
+
+
+
+ {{ badge.label }}
+
+
+
+
+
![]()
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
{{ state.volume }}
+
+
+
+
+
+
+
+
diff --git a/pmoapp/webapp/src/components/pmocontrol/StatusBadge.vue b/pmoapp/webapp/src/components/pmocontrol/StatusBadge.vue
new file mode 100644
index 00000000..39ecfdb3
--- /dev/null
+++ b/pmoapp/webapp/src/components/pmocontrol/StatusBadge.vue
@@ -0,0 +1,52 @@
+
+
+
+
+ {{ getStatusLabel(status) }}
+
+
+
+
diff --git a/pmoapp/webapp/src/components/pmocontrol/TransportControls.vue b/pmoapp/webapp/src/components/pmocontrol/TransportControls.vue
new file mode 100644
index 00000000..1b5c8fd4
--- /dev/null
+++ b/pmoapp/webapp/src/components/pmocontrol/TransportControls.vue
@@ -0,0 +1,99 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/pmoapp/webapp/src/components/pmocontrol/VolumeControl.vue b/pmoapp/webapp/src/components/pmocontrol/VolumeControl.vue
new file mode 100644
index 00000000..572248cd
--- /dev/null
+++ b/pmoapp/webapp/src/components/pmocontrol/VolumeControl.vue
@@ -0,0 +1,104 @@
+
+
+
+
+
+
+
+
+ {{ localVolume }}
+
+
+
+
diff --git a/pmoapp/webapp/src/composables/useMediaServers.ts b/pmoapp/webapp/src/composables/useMediaServers.ts
new file mode 100644
index 00000000..299b0e68
--- /dev/null
+++ b/pmoapp/webapp/src/composables/useMediaServers.ts
@@ -0,0 +1,183 @@
+/**
+ * Composable pour gérer les media servers
+ * Architecture simple : l'API est la source de vérité, SSE invalide le cache
+ */
+import { ref, computed } from 'vue'
+import { api } from '../services/pmocontrol/api'
+import { sse } from '../services/pmocontrol/sse'
+import type {
+ MediaServerSummary,
+ BrowseResponse
+} from '../services/pmocontrol/types'
+
+export interface BreadcrumbItem {
+ id: string
+ title: string
+}
+
+// Cache global partagé
+const serversCache = ref