Files
pmomusic/pmoapp/webapp/src/components/RadioParadiseExplorer.vue

2010 lines
50 KiB
Vue
Raw Normal View History

2025-10-19 01:01:33 +02:00
<template>
<div class="radio-paradise-explorer">
<div class="header">
2025-10-19 18:39:11 +02:00
<div class="title-block">
<h2>Radio Paradise Explorer</h2>
<div class="status-bar">
<span v-if="lastUpdated">Updated {{ formatTimestamp(lastUpdated) }}</span>
<span v-if="nowPlaying">Current block #{{ nowPlaying.event }}</span>
</div>
</div>
2025-10-19 01:01:33 +02:00
<div class="controls">
<button @click="refreshNowPlaying" :disabled="loading" class="btn-primary">
<span v-if="loading"></span>
<span v-else>🔄</span>
Refresh
</button>
2025-10-19 13:42:29 +02:00
<button
@click="togglePlayback"
:disabled="!nowPlaying || !nowPlaying.stream_url"
class="btn-play"
>
{{ isPlaying ? '⏹️ Stop' : '▶️ Play' }}
</button>
2025-10-19 01:01:33 +02:00
<select v-model="selectedChannel" @change="changeChannel" class="channel-select">
<option v-for="channel in channels" :key="channel.id" :value="channel.id">
{{ channel.name }}
</option>
</select>
2025-10-19 18:39:11 +02:00
<select
v-if="bitrates.length"
v-model="selectedBitrate"
@change="changeBitrate"
class="bitrate-select"
>
<option v-for="bitrate in bitrates" :key="bitrate.id" :value="bitrate.id">
{{ bitrate.name }}
</option>
</select>
2025-10-19 01:01:33 +02:00
</div>
</div>
2025-10-19 18:39:11 +02:00
<div v-if="bitrates.length" class="bitrate-tags">
<span
v-for="bitrate in bitrates"
:key="`chip-${bitrate.id}`"
:class="['bitrate-chip', { active: selectedBitrate === bitrate.id }]"
>
{{ bitrate.name }}
</span>
</div>
<div v-if="bitratesError" class="error-message inline-error">
{{ bitratesError }}
</div>
2025-10-19 13:42:29 +02:00
<!-- Audio Player -->
<div v-if="isPlaying || audioError" class="audio-player-container">
<audio
v-if="!audioError"
ref="audioPlayer"
controls
@ended="handleAudioEnded"
@error="handleAudioError"
></audio>
<p v-if="audioError" class="audio-error">{{ audioError }}</p>
<button @click="stopPlayback" class="btn-stop">
{{ audioError ? '✕ Close' : '⏹️ Stop' }}
</button>
</div>
2025-10-19 01:01:33 +02:00
<div v-if="error" class="error-message">
{{ error }}
</div>
<!-- Now Playing Section -->
<div v-if="nowPlaying" class="now-playing-section">
<h3>🎵 Now Playing</h3>
<div v-if="nowPlaying.current_song" class="current-song">
<div v-if="nowPlaying.current_song.cover_url" class="cover-art">
<img :src="nowPlaying.current_song.cover_url" :alt="`${nowPlaying.current_song.album} cover`">
</div>
<div class="song-details">
<div class="artist">{{ nowPlaying.current_song.artist }}</div>
<div class="title">{{ nowPlaying.current_song.title }}</div>
<div class="album">{{ nowPlaying.current_song.album }}</div>
<div class="metadata">
<span v-if="nowPlaying.current_song.year" class="year">{{ nowPlaying.current_song.year }}</span>
<span class="duration">{{ formatDuration(nowPlaying.current_song.duration_ms) }}</span>
<span v-if="nowPlaying.current_song.rating" class="rating"> {{ nowPlaying.current_song.rating.toFixed(1) }}</span>
</div>
</div>
</div>
</div>
<!-- Block Info -->
<div v-if="nowPlaying" class="block-info">
<h3>📦 Block Info</h3>
<div class="block-details">
<div class="info-row">
<span class="label">Event ID:</span>
<span class="value">{{ nowPlaying.event }}</span>
</div>
<div class="info-row">
<span class="label">Next Event:</span>
<span class="value">{{ nowPlaying.end_event }}</span>
</div>
<div class="info-row">
<span class="label">Block Length:</span>
<span class="value">{{ formatDuration(nowPlaying.block_length_ms) }}</span>
</div>
<div class="info-row">
<span class="label">Songs in Block:</span>
<span class="value">{{ nowPlaying.songs.length }}</span>
</div>
<div class="info-row">
<span class="label">Stream URL:</span>
<a :href="nowPlaying.stream_url" target="_blank" class="stream-link">{{ nowPlaying.stream_url }}</a>
</div>
</div>
</div>
2025-10-19 18:39:11 +02:00
<div v-if="nowPlaying" class="block-actions">
<button
class="btn-secondary"
@click="loadUpcomingBlock"
:disabled="upcomingLoading || !nowPlaying?.end_event"
>
<span v-if="upcomingLoading"> Loading next block</span>
<span v-else> Preview Next Block</span>
</button>
<div class="next-block-info">
<span>Next event:</span>
<code>{{ nowPlaying.end_event }}</code>
</div>
</div>
<div v-if="upcomingError" class="error-message">
{{ upcomingError }}
</div>
2025-10-19 01:01:33 +02:00
<!-- Songs List -->
<div v-if="nowPlaying && nowPlaying.songs" class="songs-section">
<h3>🎼 Songs in Current Block</h3>
<div class="songs-list">
<div
v-for="song in nowPlaying.songs"
:key="song.index"
:class="['song-item', { 'current': song.index === nowPlaying.current_song_index }]"
>
<div class="song-number">{{ song.index + 1 }}</div>
<div v-if="song.cover_url" class="song-cover-mini">
<img :src="song.cover_url" :alt="`${song.album} cover`">
</div>
<div class="song-info">
<div class="song-title">{{ song.title }}</div>
<div class="song-artist">{{ song.artist }}</div>
<div class="song-album">{{ song.album }}</div>
</div>
<div class="song-meta">
<div class="song-year" v-if="song.year">{{ song.year }}</div>
<div class="song-duration">{{ formatDuration(song.duration_ms) }}</div>
<div class="song-elapsed">@{{ formatDuration(song.elapsed_ms) }}</div>
<div v-if="song.rating" class="song-rating"> {{ song.rating.toFixed(1) }}</div>
</div>
</div>
</div>
</div>
2025-10-21 14:21:17 +02:00
<div class="channel-status-section">
2025-10-19 23:48:56 +02:00
<div class="section-header">
2025-10-21 14:21:17 +02:00
<h3>📡 Channel Status</h3>
<button class="btn-secondary" @click="fetchChannelStatus" :disabled="channelStatusLoading">
<span v-if="channelStatusLoading"> Refreshing</span>
<span v-else>Refresh Status</span>
2025-10-19 23:48:56 +02:00
</button>
</div>
2025-10-21 14:21:17 +02:00
<div v-if="channelStatusError" class="error-message">
{{ channelStatusError }}
</div>
<div v-else-if="channelStatus">
<div class="status-grid">
<div class="status-card">
<div class="status-label">Channel</div>
<div class="status-value">{{ channelStatus.slug }}</div>
</div>
<div class="status-card">
<div class="status-label">Active Clients</div>
<div class="status-value">{{ channelStatus.active_clients }}</div>
</div>
<div class="status-card">
<div class="status-label">Queue Length</div>
<div class="status-value">{{ channelStatus.queue_length }}</div>
</div>
<div class="status-card">
<div class="status-label">Update ID</div>
<div class="status-value">{{ channelStatus.update_id }}</div>
</div>
<div class="status-card">
<div class="status-label">Last Change</div>
<div class="status-value">
{{ channelStatus.last_change ? formatTimestamp(new Date(channelStatus.last_change)) : '—' }}
</div>
</div>
<div class="status-card">
<div class="status-label">History Entries</div>
<div class="status-value">
{{ channelStatus.history_entries }} / {{ channelStatus.history_max_tracks }}
</div>
</div>
<div class="status-card">
<div class="status-label">Cache Collection</div>
<div class="status-value">{{ channelStatus.cache_collection_id }}</div>
</div>
<div class="status-card">
<div class="status-label">Cache Tracks</div>
<div class="status-value">
{{ channelStatus.cache_cached_tracks }} / {{ channelStatus.cache_total_tracks }}
</div>
</div>
</div>
<div class="section-meta" v-if="channelStatusLastUpdated">
Last refresh: {{ formatTimestamp(channelStatusLastUpdated) }}
</div>
</div>
</div>
<div class="channel-tracks-section">
<div class="section-header">
<h3>🎧 Live Playlist</h3>
<div class="section-actions">
<button class="btn-tertiary" @click="refreshChannelData" :disabled="channelPlaylistLoading || channelStatusLoading">
<span v-if="channelPlaylistLoading || channelStatusLoading"> Refreshing</span>
<span v-else>Refresh All</span>
</button>
<button class="btn-secondary" @click="fetchChannelPlaylist" :disabled="channelPlaylistLoading">
<span v-if="channelPlaylistLoading"> Loading</span>
<span v-else>Refresh Playlist</span>
</button>
</div>
</div>
2025-10-19 23:48:56 +02:00
<div class="section-meta">
2025-10-21 14:21:17 +02:00
<span>Queue length:</span>
<strong>{{ channelPlaylist.queue_length }}</strong>
<span v-if="channelPlaylist.update_id">Update ID: {{ channelPlaylist.update_id }}</span>
<span v-if="channelPlaylistLastUpdated">
Last refresh: {{ formatTimestamp(channelPlaylistLastUpdated) }}
2025-10-20 16:23:50 +02:00
</span>
2025-10-19 23:48:56 +02:00
</div>
2025-10-21 14:21:17 +02:00
<div v-if="channelPlaylistError" class="error-message">
{{ channelPlaylistError }}
2025-10-19 23:48:56 +02:00
</div>
2025-10-21 14:21:17 +02:00
<div v-else-if="channelPlaylistLoading" class="loading-message">
Loading playlist
2025-10-19 23:48:56 +02:00
</div>
<div v-else>
2025-10-21 14:21:17 +02:00
<div v-if="channelPlaylist.items.length" class="track-grid">
2025-10-19 23:48:56 +02:00
<div
2025-10-21 14:21:17 +02:00
v-for="item in channelPlaylist.items"
:key="trackObjectId(item)"
:class="['track-card', { active: activeTrackId === trackObjectId(item) }]"
2025-10-19 23:48:56 +02:00
>
2025-10-20 16:23:50 +02:00
<div class="track-card-header">
2025-10-21 14:21:17 +02:00
<span :class="cacheStatusClass(item.cache_status)">
{{ cacheStatusLabel(item.cache_status) }}
2025-10-20 16:23:50 +02:00
</span>
2025-10-21 14:21:17 +02:00
<span class="track-metadata">Pending listeners: {{ item.pending_clients }}</span>
2025-10-20 16:23:50 +02:00
</div>
2025-10-19 23:48:56 +02:00
<div class="track-headline">
<div class="track-title">{{ item.title }}</div>
2025-10-21 14:21:17 +02:00
<div class="track-artist">{{ item.artist || 'Unknown artist' }}</div>
2025-10-19 23:48:56 +02:00
</div>
<div class="track-meta">
<span v-if="item.album">{{ item.album }}</span>
2025-10-21 14:21:17 +02:00
<span v-if="item.duration_ms"> {{ formatDuration(item.duration_ms) }}</span>
<span v-if="item.elapsed_ms"> @{{ formatDuration(item.elapsed_ms) }}</span>
<span v-if="item.started_at">🕒 {{ formatTimestamp(new Date(item.started_at)) }}</span>
<span v-if="item.cache_status?.size_bytes">💾 {{ formatBytes(item.cache_status.size_bytes) }}</span>
2025-10-19 23:48:56 +02:00
</div>
<div class="track-actions">
<button class="btn-secondary" @click="playTrackItem(item)"> Play Track</button>
2025-10-21 14:21:17 +02:00
<button
class="btn-secondary"
@click="requestCacheForTrack(item)"
:disabled="trackExtrasFor(item).cacheRequestLoading"
>
<span v-if="trackExtrasFor(item).cacheRequestLoading"> Caching</span>
<span v-else>💾 Request Cache</span>
</button>
<button
class="btn-tertiary"
@click="refreshTrackCacheStatus(item)"
:disabled="trackExtrasFor(item).cacheStatusLoading"
>
<span v-if="trackExtrasFor(item).cacheStatusLoading"> Updating</span>
<span v-else>🔄 Cache Status</span>
</button>
<button
class="btn-tertiary"
@click="fetchTrackFormats(item)"
:disabled="trackExtrasFor(item).formatsLoading"
>
<span v-if="trackExtrasFor(item).formatsLoading"> Formats</span>
<span v-else>🎚 Formats</span>
</button>
2025-10-19 23:48:56 +02:00
<a
2025-10-21 14:21:17 +02:00
v-if="trackExtrasFor(item).uri"
:href="trackExtrasFor(item).uri"
2025-10-19 23:48:56 +02:00
target="_blank"
class="stream-link"
>
2025-10-21 14:21:17 +02:00
Open resolved URI
2025-10-19 23:48:56 +02:00
</a>
</div>
2025-10-21 14:21:17 +02:00
<div v-if="trackExtrasFor(item).cacheRequestMessage" class="inline-success">
{{ trackExtrasFor(item).cacheRequestMessage }}
</div>
<div v-if="trackExtrasFor(item).cacheError" class="inline-error">
{{ trackExtrasFor(item).cacheError }}
</div>
<div v-if="trackExtrasFor(item).resolveError" class="inline-error">
Resolve error: {{ trackExtrasFor(item).resolveError }}
</div>
<div v-if="trackExtrasFor(item).formatsError" class="inline-error">
Formats error: {{ trackExtrasFor(item).formatsError }}
</div>
<div
v-if="trackExtrasFor(item).formats && trackExtrasFor(item).formats.length"
class="formats-list"
>
<div
v-for="format in trackExtrasFor(item).formats"
:key="format.format_id"
class="format-row"
>
<strong>{{ format.format_id }}</strong>
<span>{{ format.mime_type }}</span>
<span v-if="format.sample_rate">{{ format.sample_rate }} Hz</span>
<span v-if="format.bit_depth">{{ format.bit_depth }} bit</span>
<span v-if="format.bitrate">{{ format.bitrate }} kbps</span>
<span v-if="format.channels">{{ format.channels }} ch</span>
</div>
</div>
2025-10-19 23:48:56 +02:00
</div>
</div>
<div v-else class="empty-placeholder">
2025-10-21 14:21:17 +02:00
No tracks currently queued. Try refreshing after playback starts.
</div>
</div>
</div>
<div class="channel-history-section">
<div class="section-header">
<h3>🕰 Recent History</h3>
<button class="btn-secondary" @click="fetchChannelHistory" :disabled="channelHistoryLoading">
<span v-if="channelHistoryLoading"> Loading</span>
<span v-else>Refresh History</span>
</button>
</div>
<div class="section-meta" v-if="channelHistoryLastUpdated">
Last refresh: {{ formatTimestamp(channelHistoryLastUpdated) }}
</div>
<div v-if="channelHistoryError" class="error-message">
{{ channelHistoryError }}
</div>
<div v-else-if="channelHistoryLoading" class="loading-message">
Loading history
</div>
<div v-else class="history-list">
<div v-if="channelHistory.length === 0" class="empty-placeholder">
No history entries yet.
</div>
<div
v-for="entry in channelHistory"
:key="`${entry.track_id}-${entry.started_at}`"
class="history-item"
>
<div class="history-title">{{ entry.title }}</div>
<div class="history-meta">
<span>{{ entry.artist }}</span>
<span v-if="entry.album"> {{ entry.album }}</span>
<span> {{ formatDuration(entry.duration_ms) }}</span>
<span> {{ formatTimestamp(new Date(entry.started_at)) }}</span>
</div>
2025-10-19 23:48:56 +02:00
</div>
</div>
</div>
2025-10-19 18:39:11 +02:00
<div v-if="upcomingBlock" class="songs-section upcoming-section">
<div class="section-header">
<h3> Next Block Preview</h3>
<div class="section-meta">
<span>Event:</span>
<code>{{ upcomingBlock.event }}</code>
<span>Next event:</span>
<code>{{ upcomingBlock.end_event }}</code>
</div>
</div>
<div class="summary-row">
<span>{{ upcomingBlock.songs.length }} song(s)</span>
<span>Total duration: {{ formatDuration(upcomingBlock.length_ms) }}</span>
<a :href="upcomingBlock.url" target="_blank" class="stream-link">Open block stream</a>
</div>
<div class="songs-list">
<div v-for="song in upcomingBlock.songs" :key="`${upcomingBlock.event}-${song.index}`" class="song-item">
<div class="song-number">{{ song.index + 1 }}</div>
<div v-if="song.cover_url" class="song-cover-mini">
<img :src="song.cover_url" :alt="`${song.album} cover`">
</div>
<div class="song-info">
<div class="song-title">{{ song.title }}</div>
<div class="song-artist">{{ song.artist }}</div>
<div class="song-album">{{ song.album }}</div>
</div>
<div class="song-meta">
<div class="song-year" v-if="song.year">{{ song.year }}</div>
<div class="song-duration">{{ formatDuration(song.duration_ms) }}</div>
</div>
</div>
</div>
</div>
<div class="block-search">
<h3>🔎 Block Lookup</h3>
<div class="search-controls">
<input
v-model="blockSearchId"
type="number"
inputmode="numeric"
min="0"
placeholder="Enter an event ID (e.g. 123456)"
>
<button
class="btn-secondary"
@click="lookupBlockById"
:disabled="!blockSearchId || blockSearchLoading"
>
<span v-if="blockSearchLoading"> Loading</span>
<span v-else>Load Block</span>
</button>
<button class="btn-tertiary" @click="clearBlockSearch" :disabled="!blockSearchResult && !blockSearchError && !blockSearchId">
Clear
</button>
</div>
<div v-if="blockSearchError" class="error-message">
{{ blockSearchError }}
</div>
<div v-if="blockSearchResult" class="songs-section lookup-section">
<div class="section-header">
<h3>📂 Block {{ blockSearchResult.event }}</h3>
<div class="section-meta">
<span>Next event:</span>
<code>{{ blockSearchResult.end_event }}</code>
</div>
</div>
<div class="summary-row">
<span>{{ blockSearchResult.songs.length }} song(s)</span>
<span>Total duration: {{ formatDuration(blockSearchResult.length_ms) }}</span>
<a :href="blockSearchResult.url" target="_blank" class="stream-link">Open block stream</a>
</div>
<div class="songs-list">
<div v-for="song in blockSearchResult.songs" :key="`${blockSearchResult.event}-${song.index}`" class="song-item">
<div class="song-number">{{ song.index + 1 }}</div>
<div v-if="song.cover_url" class="song-cover-mini">
<img :src="song.cover_url" :alt="`${song.album} cover`">
</div>
<div class="song-info">
<div class="song-title">{{ song.title }}</div>
<div class="song-artist">{{ song.artist }}</div>
<div class="song-album">{{ song.album }}</div>
</div>
<div class="song-meta">
<div class="song-year" v-if="song.year">{{ song.year }}</div>
<div class="song-duration">{{ formatDuration(song.duration_ms) }}</div>
</div>
</div>
</div>
</div>
</div>
2025-10-19 01:01:33 +02:00
<!-- Available Channels -->
2025-10-19 18:39:11 +02:00
<div v-if="channelsError" class="error-message inline-error">
{{ channelsError }}
</div>
2025-10-19 01:01:33 +02:00
<div class="channels-section">
<h3>📻 Available Channels</h3>
<div class="channels-grid">
<div
v-for="channel in channels"
:key="channel.id"
:class="['channel-card', { 'active': channel.id === selectedChannel }]"
@click="selectChannel(channel.id)"
>
<div class="channel-name">{{ channel.name }}</div>
<div class="channel-description">{{ channel.description }}</div>
</div>
</div>
</div>
</div>
</template>
<script setup>
2025-10-19 18:39:11 +02:00
import { ref, onMounted, onUnmounted, nextTick } from 'vue'
2025-10-19 01:01:33 +02:00
const API_BASE = '/api/radioparadise'
2025-10-19 23:48:56 +02:00
const SOURCE_API_BASE = '/api/sources'
const SOURCE_ID = 'radio-paradise'
2025-10-19 01:01:33 +02:00
const loading = ref(false)
const error = ref(null)
const nowPlaying = ref(null)
const channels = ref([])
2025-10-19 18:39:11 +02:00
const bitrates = ref([])
2025-10-19 01:01:33 +02:00
const selectedChannel = ref(0)
2025-10-19 18:39:11 +02:00
const selectedBitrate = ref(null)
2025-10-19 13:42:29 +02:00
const audioPlayer = ref(null)
const isPlaying = ref(false)
const audioError = ref('')
2025-10-19 23:48:56 +02:00
const activeTrackId = ref(null)
2025-10-19 18:39:11 +02:00
const lastUpdated = ref(null)
const upcomingBlock = ref(null)
const upcomingLoading = ref(false)
const upcomingError = ref('')
const blockSearchId = ref('')
const blockSearchResult = ref(null)
const blockSearchLoading = ref(false)
const blockSearchError = ref('')
const channelsError = ref('')
const bitratesError = ref('')
2025-10-21 14:21:17 +02:00
const channelStatus = ref(null)
const channelStatusLoading = ref(false)
const channelStatusError = ref('')
const channelStatusLastUpdated = ref(null)
const channelPlaylist = ref({
2025-10-19 23:48:56 +02:00
items: [],
2025-10-21 14:21:17 +02:00
queue_length: 0,
update_id: 0,
slug: '',
channel_id: selectedChannel.value
2025-10-19 23:48:56 +02:00
})
2025-10-21 14:21:17 +02:00
const channelPlaylistLoading = ref(false)
const channelPlaylistError = ref('')
const channelPlaylistLastUpdated = ref(null)
const channelHistory = ref([])
const channelHistoryLoading = ref(false)
const channelHistoryError = ref('')
const channelHistoryLastUpdated = ref(null)
const trackExtras = ref({})
2025-10-19 18:39:11 +02:00
let refreshTimerId = null
2025-10-20 16:23:50 +02:00
let channelRefreshTimerId = null
2025-10-21 14:21:17 +02:00
const CHANNEL_REFRESH_INTERVAL = 7000
2025-10-19 01:01:33 +02:00
// Format duration from milliseconds to MM:SS
function formatDuration(ms) {
2025-10-19 18:39:11 +02:00
if (typeof ms !== 'number' || !Number.isFinite(ms)) {
return '--:--'
}
const seconds = Math.max(0, Math.floor(ms / 1000))
2025-10-19 01:01:33 +02:00
const minutes = Math.floor(seconds / 60)
const remainingSeconds = seconds % 60
return `${minutes}:${remainingSeconds.toString().padStart(2, '0')}`
}
2025-10-19 18:39:11 +02:00
function formatTimestamp(date) {
if (!date) return ''
return date.toLocaleTimeString()
}
function buildQuery(extra = {}) {
const params = new URLSearchParams()
if (selectedChannel.value != null) {
params.set('channel', selectedChannel.value.toString())
}
if (selectedBitrate.value != null) {
params.set('bitrate', selectedBitrate.value.toString())
}
Object.entries(extra).forEach(([key, value]) => {
if (value !== undefined && value !== null && value !== '') {
params.set(key, String(value))
}
})
const query = params.toString()
return query ? `?${query}` : ''
}
async function fetchBlockByEvent(eventId) {
const query = buildQuery()
const response = await fetch(`${API_BASE}/block/${eventId}${query}`)
if (!response.ok) {
throw new Error(`HTTP ${response.status}: ${response.statusText}`)
}
return await response.json()
}
2025-10-19 23:48:56 +02:00
function channelObjectId(channelId) {
return `${SOURCE_ID}:channel:${channelId}`
}
2025-10-21 14:21:17 +02:00
function trackObjectId(item) {
return item?.track_id || item?.id || item?.object_id || ''
}
2025-10-19 23:48:56 +02:00
function playAudio(url) {
if (!url) {
audioError.value = 'No audio URL available'
isPlaying.value = false
return
}
audioError.value = ''
isPlaying.value = true
nextTick(() => {
const player = audioPlayer.value
if (!player) {
return
}
player.src = url
player.play().catch((e) => {
console.error('Failed to start playback:', e)
audioError.value = `Cannot play stream: ${e.message}`
isPlaying.value = false
activeTrackId.value = null
})
})
}
2025-10-19 01:01:33 +02:00
// Fetch now playing info
async function refreshNowPlaying() {
loading.value = true
error.value = null
try {
2025-10-19 18:39:11 +02:00
const query = buildQuery()
const response = await fetch(`${API_BASE}/now-playing${query}`)
2025-10-19 01:01:33 +02:00
if (!response.ok) {
throw new Error(`HTTP ${response.status}: ${response.statusText}`)
}
nowPlaying.value = await response.json()
2025-10-19 18:39:11 +02:00
lastUpdated.value = new Date()
upcomingBlock.value = null
upcomingError.value = ''
2025-10-19 23:48:56 +02:00
if (isPlaying.value && !activeTrackId.value) {
2025-10-19 18:39:11 +02:00
playStream()
}
2025-10-19 01:01:33 +02:00
} catch (e) {
error.value = `Failed to fetch now playing: ${e.message}`
console.error('Error fetching now playing:', e)
} finally {
loading.value = false
}
}
2025-10-21 14:21:17 +02:00
function cacheStatusLabel(cacheInfo) {
const status = cacheInfo?.status || 'not_cached'
2025-10-20 16:23:50 +02:00
switch (status) {
case 'cached':
return 'Cached'
2025-10-21 14:21:17 +02:00
case 'caching':
return cacheInfo?.progress != null
? `Caching ${(cacheInfo.progress * 100).toFixed(0)}%`
: 'Caching'
case 'failed':
return 'Failed'
case 'not_cached':
2025-10-20 16:23:50 +02:00
default:
2025-10-21 14:21:17 +02:00
return 'Not cached'
2025-10-20 16:23:50 +02:00
}
}
2025-10-21 14:21:17 +02:00
function cacheStatusClass(cacheInfo) {
const status = cacheInfo?.status || 'not_cached'
2025-10-20 16:23:50 +02:00
return {
'status-badge': true,
cached: status === 'cached',
2025-10-21 14:21:17 +02:00
caching: status === 'caching',
failed: status === 'failed',
pending: status === 'not_cached'
2025-10-20 16:23:50 +02:00
}
}
2025-10-21 14:21:17 +02:00
function formatBytes(bytes) {
if (typeof bytes !== 'number' || !Number.isFinite(bytes) || bytes <= 0) {
return '0 B'
}
const units = ['B', 'KB', 'MB', 'GB']
let value = bytes
let unitIndex = 0
while (value >= 1024 && unitIndex < units.length - 1) {
value /= 1024
unitIndex += 1
}
return `${value.toFixed(value >= 10 || unitIndex === 0 ? 0 : 1)} ${units[unitIndex]}`
}
async function fetchChannelStatus({ silent = false } = {}) {
if (!silent) {
channelStatusLoading.value = true
}
channelStatusError.value = ''
try {
const response = await fetch(`${API_BASE}/channels/${selectedChannel.value}/status`)
if (!response.ok) {
throw new Error(`HTTP ${response.status}: ${response.statusText}`)
}
channelStatus.value = await response.json()
channelStatusLastUpdated.value = new Date()
} catch (e) {
channelStatusError.value = `Failed to load channel status: ${e.message}`
console.error('Error fetching channel status:', e)
} finally {
if (!silent) {
channelStatusLoading.value = false
}
2025-10-20 16:23:50 +02:00
}
2025-10-21 14:21:17 +02:00
}
async function fetchChannelPlaylist({ silent = false, limit = 24 } = {}) {
2025-10-20 16:23:50 +02:00
if (!silent) {
2025-10-21 14:21:17 +02:00
channelPlaylistLoading.value = true
2025-10-20 16:23:50 +02:00
}
2025-10-21 14:21:17 +02:00
channelPlaylistError.value = ''
try {
const params = new URLSearchParams()
if (limit != null) {
params.set('limit', String(limit))
}
const response = await fetch(
`${API_BASE}/channels/${selectedChannel.value}/playlist?${params.toString()}`
)
if (!response.ok) {
throw new Error(`HTTP ${response.status}: ${response.statusText}`)
}
const data = await response.json()
channelPlaylist.value = {
...data,
items: (data.items || []).map((item) => ({
...item,
cache_status: item.cache_status || { status: 'not_cached', progress: 0 }
}))
}
channelPlaylistLastUpdated.value = new Date()
const validIds = new Set(channelPlaylist.value.items.map((item) => trackObjectId(item)).filter(Boolean))
trackExtras.value = Object.fromEntries(
Object.entries(trackExtras.value).filter(([id]) => validIds.has(id))
)
} catch (e) {
channelPlaylistError.value = `Failed to load playlist: ${e.message}`
console.error('Error fetching channel playlist:', e)
} finally {
if (!silent) {
channelPlaylistLoading.value = false
}
}
}
2025-10-19 23:48:56 +02:00
2025-10-21 14:21:17 +02:00
async function fetchChannelHistory({ silent = false, limit = 25 } = {}) {
if (!silent) {
channelHistoryLoading.value = true
}
channelHistoryError.value = ''
2025-10-19 23:48:56 +02:00
try {
const params = new URLSearchParams()
2025-10-21 14:21:17 +02:00
if (limit != null) {
params.set('limit', String(limit))
}
const response = await fetch(
`${API_BASE}/channels/${selectedChannel.value}/history?${params.toString()}`
)
if (!response.ok) {
throw new Error(`HTTP ${response.status}: ${response.statusText}`)
}
const data = await response.json()
channelHistory.value = data.entries || []
channelHistoryLastUpdated.value = new Date()
} catch (e) {
channelHistoryError.value = `Failed to load history: ${e.message}`
console.error('Error fetching channel history:', e)
} finally {
if (!silent) {
channelHistoryLoading.value = false
}
}
}
async function refreshChannelData({ silent = false } = {}) {
await Promise.all([
fetchChannelStatus({ silent }),
fetchChannelPlaylist({ silent }),
fetchChannelHistory({ silent })
])
}
function updateTrackExtras(trackId, patch) {
if (!trackId) {
return
}
const current = trackExtras.value[trackId] || {
uri: '',
lastResolvedAt: null,
resolving: false,
resolveError: '',
formats: [],
formatsLoading: false,
formatsError: '',
cacheRequestLoading: false,
cacheRequestMessage: '',
cacheError: '',
cacheStatusLoading: false
}
trackExtras.value = {
...trackExtras.value,
[trackId]: {
...current,
...patch
}
}
}
function trackExtrasFor(item) {
const trackId = trackObjectId(item)
return trackExtras.value[trackId] || {}
}
async function resolveTrackUri(trackId) {
if (!trackId) {
throw new Error('Missing track identifier')
}
updateTrackExtras(trackId, { resolving: true, resolveError: '' })
try {
const params = new URLSearchParams()
params.set('object_id', trackId)
const response = await fetch(`${SOURCE_API_BASE}/${SOURCE_ID}/resolve?${params.toString()}`)
if (!response.ok) {
throw new Error(`HTTP ${response.status}: ${response.statusText}`)
}
const data = await response.json()
updateTrackExtras(trackId, {
resolving: false,
uri: data.uri,
lastResolvedAt: new Date()
})
return data.uri
} catch (e) {
updateTrackExtras(trackId, { resolving: false, resolveError: e.message })
throw e
}
}
2025-10-19 23:48:56 +02:00
2025-10-21 14:21:17 +02:00
async function refreshTrackCacheStatus(item) {
const trackId = trackObjectId(item)
if (!trackId) {
return
}
updateTrackExtras(trackId, { cacheStatusLoading: true, cacheError: '' })
try {
const params = new URLSearchParams()
params.set('object_id', trackId)
const response = await fetch(
`${SOURCE_API_BASE}/${SOURCE_ID}/cache/status?${params.toString()}`
)
2025-10-19 23:48:56 +02:00
if (!response.ok) {
throw new Error(`HTTP ${response.status}: ${response.statusText}`)
}
2025-10-21 14:21:17 +02:00
const data = await response.json()
const status = data.status || { status: 'not_cached' }
channelPlaylist.value = {
...channelPlaylist.value,
items: channelPlaylist.value.items.map((entry) =>
trackObjectId(entry) === trackId ? { ...entry, cache_status: status } : entry
)
}
updateTrackExtras(trackId, { cacheStatusLoading: false, cacheError: '', cacheStatus: status })
} catch (e) {
updateTrackExtras(trackId, { cacheStatusLoading: false, cacheError: e.message })
console.error('Error refreshing cache status:', e)
}
}
2025-10-19 23:48:56 +02:00
2025-10-21 14:21:17 +02:00
async function requestCacheForTrack(item) {
const trackId = trackObjectId(item)
if (!trackId) {
return
}
updateTrackExtras(trackId, {
cacheRequestLoading: true,
cacheRequestMessage: '',
cacheError: ''
})
try {
const response = await fetch(`${SOURCE_API_BASE}/${SOURCE_ID}/cache`, {
method: 'POST',
headers: {
'Content-Type': 'application/json'
},
body: JSON.stringify({ object_id: trackId })
})
if (!response.ok) {
const body = await response.json().catch(() => ({}))
const message = body?.error || response.statusText
throw new Error(message)
}
2025-10-19 23:48:56 +02:00
const data = await response.json()
2025-10-21 14:21:17 +02:00
const status = data.status || data?.cache_status
if (status) {
channelPlaylist.value = {
...channelPlaylist.value,
items: channelPlaylist.value.items.map((entry) =>
trackObjectId(entry) === trackId ? { ...entry, cache_status: status } : entry
)
}
2025-10-19 23:48:56 +02:00
}
2025-10-21 14:21:17 +02:00
updateTrackExtras(trackId, {
cacheRequestLoading: false,
cacheRequestMessage: 'Cache request accepted'
})
2025-10-19 23:48:56 +02:00
} catch (e) {
2025-10-21 14:21:17 +02:00
updateTrackExtras(trackId, {
cacheRequestLoading: false,
cacheRequestMessage: '',
cacheError: e.message
})
console.error('Error requesting cache:', e)
2025-10-19 23:48:56 +02:00
} finally {
2025-10-21 14:21:17 +02:00
await refreshTrackCacheStatus(item)
}
}
async function fetchTrackFormats(item) {
const trackId = trackObjectId(item)
if (!trackId) {
return
}
const extras = trackExtrasFor(item)
if (extras.formats?.length && !extras.formatsError) {
return
}
updateTrackExtras(trackId, { formatsLoading: true, formatsError: '' })
try {
const params = new URLSearchParams()
params.set('object_id', trackId)
const response = await fetch(
`${SOURCE_API_BASE}/${SOURCE_ID}/formats?${params.toString()}`
)
if (!response.ok) {
throw new Error(`HTTP ${response.status}: ${response.statusText}`)
2025-10-20 16:23:50 +02:00
}
2025-10-21 14:21:17 +02:00
const data = await response.json()
updateTrackExtras(trackId, {
formatsLoading: false,
formats: data.formats || []
})
} catch (e) {
updateTrackExtras(trackId, { formatsLoading: false, formatsError: e.message })
console.error('Error fetching track formats:', e)
2025-10-19 23:48:56 +02:00
}
}
2025-10-19 01:01:33 +02:00
// Fetch available channels
async function fetchChannels() {
try {
const response = await fetch(`${API_BASE}/channels`)
if (!response.ok) {
throw new Error(`HTTP ${response.status}: ${response.statusText}`)
}
2025-10-19 18:39:11 +02:00
const data = await response.json()
channels.value = data
channelsError.value = ''
if (channels.value.length > 0) {
const hasSelected = channels.value.some(channel => channel.id === selectedChannel.value)
if (!hasSelected) {
selectedChannel.value = channels.value[0].id
}
}
2025-10-19 01:01:33 +02:00
} catch (e) {
2025-10-19 18:39:11 +02:00
channelsError.value = `Failed to fetch channels: ${e.message}`
2025-10-19 01:01:33 +02:00
console.error('Error fetching channels:', e)
}
}
2025-10-19 18:39:11 +02:00
// Fetch available bitrates
async function fetchBitrates() {
try {
const response = await fetch(`${API_BASE}/bitrates`)
if (!response.ok) {
throw new Error(`HTTP ${response.status}: ${response.statusText}`)
}
const data = await response.json()
bitrates.value = data
bitratesError.value = ''
if (bitrates.value.length > 0 && selectedBitrate.value === null) {
const flac = bitrates.value.find(bitrate => /flac/i.test(bitrate.name))
selectedBitrate.value = (flac || bitrates.value[0]).id
}
} catch (e) {
bitratesError.value = `Failed to fetch bitrates: ${e.message}`
console.error('Error fetching bitrates:', e)
}
}
2025-10-19 01:01:33 +02:00
// Select a channel
function selectChannel(channelId) {
2025-10-19 18:39:11 +02:00
if (selectedChannel.value === channelId) {
return
}
2025-10-19 01:01:33 +02:00
selectedChannel.value = channelId
2025-10-19 18:39:11 +02:00
changeChannel()
2025-10-19 01:01:33 +02:00
}
2025-10-19 18:39:11 +02:00
async function changeChannel() {
2025-10-21 14:21:17 +02:00
trackExtras.value = {}
2025-10-19 18:39:11 +02:00
await refreshNowPlaying()
2025-10-21 14:21:17 +02:00
await refreshChannelData()
2025-10-19 18:39:11 +02:00
blockSearchResult.value = null
blockSearchError.value = ''
}
async function changeBitrate() {
2025-10-21 14:21:17 +02:00
trackExtras.value = {}
2025-10-19 18:39:11 +02:00
await refreshNowPlaying()
2025-10-21 14:21:17 +02:00
await refreshChannelData()
2025-10-19 18:39:11 +02:00
blockSearchResult.value = null
blockSearchError.value = ''
2025-10-19 01:01:33 +02:00
}
2025-10-19 13:42:29 +02:00
function playStream() {
if (!nowPlaying.value?.stream_url) {
audioError.value = 'No stream URL available'
2025-10-19 18:39:11 +02:00
isPlaying.value = false
2025-10-19 23:48:56 +02:00
activeTrackId.value = null
2025-10-19 13:42:29 +02:00
return
}
2025-10-19 23:48:56 +02:00
activeTrackId.value = null
playAudio(nowPlaying.value.stream_url)
2025-10-19 13:42:29 +02:00
}
function stopPlayback() {
if (audioPlayer.value) {
audioPlayer.value.pause()
audioPlayer.value.currentTime = 0
audioPlayer.value.src = ''
}
isPlaying.value = false
audioError.value = ''
2025-10-19 23:48:56 +02:00
activeTrackId.value = null
2025-10-19 13:42:29 +02:00
}
function togglePlayback() {
if (isPlaying.value) {
stopPlayback()
} else {
playStream()
}
}
function handleAudioEnded() {
isPlaying.value = false
2025-10-19 23:48:56 +02:00
activeTrackId.value = null
2025-10-19 13:42:29 +02:00
}
function handleAudioError() {
const audio = audioPlayer.value
if (audio?.error) {
audioError.value = `Audio playback error (code ${audio.error.code})`
} else {
audioError.value = 'Unknown audio playback error'
}
isPlaying.value = false
2025-10-19 23:48:56 +02:00
activeTrackId.value = null
2025-10-19 13:42:29 +02:00
}
2025-10-19 18:39:11 +02:00
async function loadUpcomingBlock() {
if (!nowPlaying.value?.end_event) {
return
}
upcomingLoading.value = true
upcomingError.value = ''
try {
upcomingBlock.value = await fetchBlockByEvent(nowPlaying.value.end_event)
} catch (e) {
console.error('Failed to fetch upcoming block:', e)
upcomingError.value = `Failed to load upcoming block: ${e.message}`
} finally {
upcomingLoading.value = false
}
}
async function lookupBlockById() {
if (!blockSearchId.value) {
return
}
const eventId = Number(blockSearchId.value)
if (!Number.isFinite(eventId) || eventId < 0) {
blockSearchError.value = 'Please enter a valid event ID'
return
}
blockSearchLoading.value = true
blockSearchError.value = ''
try {
blockSearchResult.value = await fetchBlockByEvent(eventId)
} catch (e) {
console.error('Failed to fetch block by ID:', e)
blockSearchError.value = `Failed to load block: ${e.message}`
blockSearchResult.value = null
} finally {
blockSearchLoading.value = false
}
}
function clearBlockSearch() {
blockSearchId.value = ''
blockSearchResult.value = null
blockSearchError.value = ''
}
2025-10-21 14:21:17 +02:00
async function playTrackItem(item) {
const trackId = trackObjectId(item)
if (!trackId) {
audioError.value = 'Unable to determine track identifier'
2025-10-19 23:48:56 +02:00
isPlaying.value = false
return
}
2025-10-21 14:21:17 +02:00
try {
let uri = null
try {
uri = await resolveTrackUri(trackId)
} catch (resolveError) {
console.warn('Falling back to direct resource due to resolve error:', resolveError)
}
if (!uri) {
const fallback = item?.resources?.find((res) => res.url)?.url
uri = fallback
}
if (!uri) {
throw new Error('No audio resource available for this track')
}
activeTrackId.value = trackId
playAudio(uri)
} catch (e) {
audioError.value = e.message
isPlaying.value = false
activeTrackId.value = null
}
2025-10-19 23:48:56 +02:00
}
2025-10-19 01:01:33 +02:00
// Initialize on mount
onMounted(async () => {
await fetchChannels()
2025-10-19 18:39:11 +02:00
await fetchBitrates()
2025-10-19 01:01:33 +02:00
await refreshNowPlaying()
2025-10-21 14:21:17 +02:00
await refreshChannelData()
2025-10-19 01:01:33 +02:00
// Auto-refresh every 30 seconds
2025-10-19 18:39:11 +02:00
refreshTimerId = window.setInterval(() => {
2025-10-19 01:01:33 +02:00
if (!loading.value) {
refreshNowPlaying()
}
}, 30000)
2025-10-20 16:23:50 +02:00
// Auto-refresh channel tracks every few seconds
channelRefreshTimerId = window.setInterval(() => {
2025-10-21 14:21:17 +02:00
if (!channelPlaylistLoading.value && !channelStatusLoading.value) {
refreshChannelData({ silent: true })
2025-10-20 16:23:50 +02:00
}
2025-10-21 14:21:17 +02:00
}, CHANNEL_REFRESH_INTERVAL)
2025-10-19 01:01:33 +02:00
})
2025-10-19 18:39:11 +02:00
onUnmounted(() => {
if (refreshTimerId) {
clearInterval(refreshTimerId)
}
2025-10-20 16:23:50 +02:00
if (channelRefreshTimerId) {
clearInterval(channelRefreshTimerId)
}
2025-10-19 18:39:11 +02:00
})
2025-10-19 01:01:33 +02:00
</script>
<style scoped>
.radio-paradise-explorer {
padding: 20px;
max-width: 1200px;
margin: 0 auto;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: 20px;
padding-bottom: 10px;
border-bottom: 2px solid #333;
}
.header h2 {
margin: 0;
color: #00d4ff;
}
2025-10-19 18:39:11 +02:00
.title-block {
display: flex;
flex-direction: column;
gap: 6px;
}
.status-bar {
display: flex;
flex-wrap: wrap;
gap: 16px;
font-size: 0.85rem;
color: #9aa0a6;
}
.status-bar span {
display: flex;
align-items: center;
gap: 6px;
}
2025-10-19 01:01:33 +02:00
.controls {
display: flex;
2025-10-19 18:39:11 +02:00
flex-wrap: wrap;
2025-10-19 01:01:33 +02:00
gap: 10px;
align-items: center;
2025-10-19 18:39:11 +02:00
justify-content: flex-end;
2025-10-19 01:01:33 +02:00
}
.btn-primary {
background: #00d4ff;
color: #000;
border: none;
padding: 8px 16px;
border-radius: 4px;
cursor: pointer;
font-weight: bold;
transition: background 0.3s;
}
.btn-primary:hover:not(:disabled) {
background: #00a8cc;
}
.btn-primary:disabled {
opacity: 0.5;
cursor: not-allowed;
}
2025-10-19 13:42:29 +02:00
.btn-play {
background: rgba(46, 204, 113, 0.2);
color: #2ecc71;
border: 1px solid rgba(46, 204, 113, 0.4);
padding: 8px 16px;
border-radius: 4px;
cursor: pointer;
font-weight: bold;
transition: background 0.3s;
}
.btn-play:hover:not(:disabled) {
background: rgba(46, 204, 113, 0.35);
}
.btn-play:disabled {
opacity: 0.5;
cursor: not-allowed;
}
2025-10-19 18:39:11 +02:00
.btn-secondary {
background: rgba(0, 212, 255, 0.12);
color: #00d4ff;
border: 1px solid rgba(0, 212, 255, 0.4);
padding: 8px 16px;
border-radius: 4px;
cursor: pointer;
font-weight: 600;
transition: background 0.3s;
}
.btn-secondary:hover:not(:disabled) {
background: rgba(0, 212, 255, 0.25);
}
.btn-secondary:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.btn-tertiary {
background: transparent;
color: #bbb;
border: 1px solid #444;
padding: 8px 16px;
border-radius: 4px;
cursor: pointer;
transition: border-color 0.3s, color 0.3s;
}
.btn-tertiary:hover:not(:disabled) {
color: #fff;
border-color: #666;
}
.btn-tertiary:disabled {
opacity: 0.5;
cursor: not-allowed;
}
2025-10-19 01:01:33 +02:00
.channel-select {
padding: 8px 12px;
border-radius: 4px;
border: 1px solid #333;
background: #1a1a1a;
color: #fff;
cursor: pointer;
}
2025-10-19 18:39:11 +02:00
.bitrate-select {
padding: 8px 12px;
border-radius: 4px;
border: 1px solid #333;
background: #1a1a1a;
color: #fff;
cursor: pointer;
}
.bitrate-tags {
display: flex;
flex-wrap: wrap;
gap: 8px;
margin-bottom: 16px;
}
.bitrate-chip {
padding: 4px 10px;
border-radius: 999px;
border: 1px solid #333;
background: #1c1c1c;
font-size: 0.8rem;
color: #bbb;
}
.bitrate-chip.active {
border-color: #00d4ff;
color: #00d4ff;
background: rgba(0, 212, 255, 0.12);
}
2025-10-19 01:01:33 +02:00
.error-message {
background: #ff4444;
color: white;
padding: 12px;
border-radius: 4px;
margin-bottom: 20px;
}
2025-10-19 18:39:11 +02:00
.inline-error {
margin-top: -8px;
margin-bottom: 16px;
font-size: 0.9rem;
}
.block-actions {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 16px;
margin-bottom: 20px;
}
.next-block-info {
display: flex;
align-items: center;
gap: 8px;
font-size: 0.9rem;
color: #9aa0a6;
}
.next-block-info code {
background: rgba(255, 255, 255, 0.05);
padding: 2px 6px;
border-radius: 4px;
}
2025-10-19 01:01:33 +02:00
/* Now Playing Section */
.now-playing-section {
background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
border-radius: 8px;
padding: 20px;
margin-bottom: 20px;
border: 1px solid #333;
}
.now-playing-section h3 {
margin-top: 0;
color: #00d4ff;
}
.current-song {
display: flex;
gap: 20px;
align-items: flex-start;
}
.cover-art {
flex-shrink: 0;
}
.cover-art img {
width: 200px;
height: 200px;
object-fit: cover;
border-radius: 8px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.song-details {
flex: 1;
}
.artist {
font-size: 1.8em;
font-weight: bold;
color: #00d4ff;
margin-bottom: 8px;
}
.title {
font-size: 1.4em;
margin-bottom: 8px;
color: #fff;
}
.album {
font-size: 1.1em;
color: #999;
margin-bottom: 12px;
}
.metadata {
display: flex;
gap: 15px;
font-size: 0.9em;
color: #666;
}
.metadata span {
padding: 4px 8px;
background: #333;
border-radius: 4px;
}
/* Block Info */
.block-info {
background: #1a1a1a;
border-radius: 8px;
padding: 20px;
margin-bottom: 20px;
border: 1px solid #333;
}
.block-info h3 {
margin-top: 0;
color: #00d4ff;
}
.block-details {
display: flex;
flex-direction: column;
gap: 10px;
}
.info-row {
display: flex;
justify-content: space-between;
padding: 8px 0;
border-bottom: 1px solid #333;
}
.info-row:last-child {
border-bottom: none;
}
.label {
font-weight: bold;
color: #999;
}
.value {
color: #fff;
}
.stream-link {
color: #00d4ff;
text-decoration: none;
word-break: break-all;
}
.stream-link:hover {
text-decoration: underline;
}
/* Songs List */
2025-10-19 18:39:11 +02:00
.section-header {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: space-between;
gap: 12px;
margin-bottom: 12px;
}
.section-meta {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 12px;
color: #9aa0a6;
font-size: 0.85rem;
}
.section-meta code {
background: rgba(255, 255, 255, 0.05);
padding: 2px 6px;
border-radius: 4px;
}
.summary-row {
display: flex;
flex-wrap: wrap;
gap: 12px;
align-items: center;
margin-bottom: 16px;
color: #9aa0a6;
}
2025-10-19 01:01:33 +02:00
.songs-section {
background: #1a1a1a;
border-radius: 8px;
padding: 20px;
margin-bottom: 20px;
border: 1px solid #333;
}
.songs-section h3 {
margin-top: 0;
color: #00d4ff;
}
.songs-list {
display: flex;
flex-direction: column;
gap: 8px;
}
.song-item {
display: flex;
gap: 12px;
padding: 12px;
background: #2a2a2a;
border-radius: 4px;
align-items: center;
transition: background 0.3s;
}
.song-item:hover {
background: #333;
}
.song-item.current {
background: #003d4d;
border-left: 4px solid #00d4ff;
}
.song-number {
font-weight: bold;
color: #666;
min-width: 30px;
text-align: center;
}
.song-cover-mini img {
width: 50px;
height: 50px;
object-fit: cover;
border-radius: 4px;
}
.song-info {
flex: 1;
min-width: 0;
}
.song-title {
font-weight: bold;
color: #fff;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.song-artist {
color: #00d4ff;
font-size: 0.9em;
}
.song-album {
color: #999;
font-size: 0.85em;
}
.song-meta {
display: flex;
gap: 10px;
font-size: 0.85em;
color: #666;
align-items: center;
}
.song-meta > div {
padding: 2px 6px;
background: #1a1a1a;
border-radius: 3px;
}
2025-10-19 18:39:11 +02:00
.block-search {
margin: 30px 0;
padding: 20px;
border: 1px solid #333;
border-radius: 8px;
background: rgba(0, 0, 0, 0.35);
}
.search-controls {
display: flex;
flex-wrap: wrap;
gap: 12px;
margin-bottom: 12px;
}
.search-controls input {
padding: 8px 12px;
border-radius: 4px;
border: 1px solid #333;
background: #111;
color: #fff;
flex: 1 1 220px;
}
2025-10-19 01:01:33 +02:00
/* Channels Section */
.channels-section {
background: #1a1a1a;
border-radius: 8px;
padding: 20px;
border: 1px solid #333;
}
2025-10-19 23:48:56 +02:00
.channel-tracks-section {
margin-top: 32px;
padding: 20px;
border-radius: 8px;
border: 1px solid #333;
background: #141414;
}
2025-10-19 01:01:33 +02:00
.channels-section h3 {
margin-top: 0;
color: #00d4ff;
}
.channels-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 15px;
}
.channel-card {
background: #2a2a2a;
padding: 15px;
border-radius: 8px;
cursor: pointer;
transition: all 0.3s;
border: 2px solid transparent;
}
.channel-card:hover {
background: #333;
transform: translateY(-2px);
}
.channel-card.active {
border-color: #00d4ff;
background: #003d4d;
}
.channel-name {
font-weight: bold;
color: #00d4ff;
margin-bottom: 8px;
font-size: 1.1em;
}
.channel-description {
color: #999;
font-size: 0.9em;
}
2025-10-19 13:42:29 +02:00
2025-10-19 23:48:56 +02:00
.section-meta {
display: flex;
flex-wrap: wrap;
align-items: center;
gap: 12px;
margin-top: 8px;
font-size: 0.85rem;
color: #9aa0a6;
}
2025-10-21 14:21:17 +02:00
.section-actions {
display: flex;
gap: 10px;
flex-wrap: wrap;
align-items: center;
}
2025-10-19 23:48:56 +02:00
.loading-message {
margin-top: 16px;
color: #9aa0a6;
}
.empty-placeholder {
margin-top: 16px;
padding: 16px;
border: 1px dashed #444;
border-radius: 6px;
color: #9aa0a6;
text-align: center;
}
.sub-container-notice {
margin-top: 12px;
font-size: 0.8rem;
color: #9aa0a6;
}
.track-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 16px;
margin-top: 18px;
}
.track-card {
background: rgba(0, 212, 255, 0.08);
border: 1px solid rgba(0, 212, 255, 0.2);
border-radius: 8px;
padding: 14px;
display: flex;
flex-direction: column;
gap: 10px;
transition: border-color 0.2s, box-shadow 0.2s;
}
2025-10-21 14:21:17 +02:00
.status-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
gap: 12px;
margin-top: 12px;
}
.status-card {
background: rgba(255, 255, 255, 0.03);
border: 1px solid rgba(255, 255, 255, 0.04);
border-radius: 8px;
padding: 12px;
display: flex;
flex-direction: column;
gap: 4px;
}
.status-label {
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.06em;
color: #9aa0a6;
}
.status-value {
font-size: 1.05rem;
font-weight: 600;
color: #f5f5f5;
}
2025-10-20 16:23:50 +02:00
.track-card-header {
display: flex;
justify-content: space-between;
align-items: center;
gap: 8px;
flex-wrap: wrap;
}
.status-badge {
display: inline-flex;
align-items: center;
gap: 6px;
padding: 4px 10px;
border-radius: 999px;
font-size: 0.7rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 0.04em;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.08);
color: #bbb;
}
.status-badge.cached {
background: rgba(46, 204, 113, 0.18);
border-color: rgba(46, 204, 113, 0.45);
color: #2ecc71;
}
2025-10-21 14:21:17 +02:00
.status-badge.caching {
2025-10-20 16:23:50 +02:00
background: rgba(255, 193, 7, 0.15);
border-color: rgba(255, 193, 7, 0.4);
color: #ffc107;
}
2025-10-21 14:21:17 +02:00
.status-badge.failed {
background: rgba(255, 87, 34, 0.18);
border-color: rgba(255, 87, 34, 0.5);
color: #ff7043;
2025-10-20 16:23:50 +02:00
}
.status-badge.pending {
2025-10-21 14:21:17 +02:00
background: rgba(0, 212, 255, 0.12);
border-color: rgba(0, 212, 255, 0.4);
color: #00d4ff;
2025-10-20 16:23:50 +02:00
}
.track-metadata {
font-size: 0.7rem;
color: #666;
}
2025-10-19 23:48:56 +02:00
.track-card.active {
border-color: rgba(46, 204, 113, 0.8);
box-shadow: 0 0 12px rgba(46, 204, 113, 0.25);
}
.track-headline {
display: flex;
flex-direction: column;
gap: 4px;
}
.track-title {
font-weight: 600;
color: #f5f5f5;
}
.track-artist {
color: #9aa0a6;
font-size: 0.9rem;
}
.track-meta {
display: flex;
gap: 12px;
flex-wrap: wrap;
font-size: 0.85rem;
color: #9aa0a6;
}
.track-actions {
display: flex;
flex-wrap: wrap;
gap: 10px;
align-items: center;
}
2025-10-21 14:21:17 +02:00
.inline-error {
margin-top: 6px;
font-size: 0.8rem;
color: #ff6b6b;
}
.inline-success {
margin-top: 6px;
font-size: 0.8rem;
color: #2ecc71;
}
.formats-list {
margin-top: 10px;
border-top: 1px solid rgba(255, 255, 255, 0.08);
padding-top: 8px;
display: flex;
flex-direction: column;
gap: 4px;
font-size: 0.8rem;
color: #9aa0a6;
}
.format-row {
display: flex;
gap: 8px;
flex-wrap: wrap;
}
.history-list {
display: flex;
flex-direction: column;
gap: 12px;
margin-top: 12px;
}
.history-item {
padding: 12px;
border-radius: 8px;
background: rgba(0, 0, 0, 0.25);
border: 1px solid rgba(255, 255, 255, 0.05);
}
.history-title {
font-weight: 600;
color: #f5f5f5;
}
.history-meta {
margin-top: 4px;
font-size: 0.8rem;
color: #9aa0a6;
display: flex;
gap: 6px;
flex-wrap: wrap;
}
2025-10-19 13:42:29 +02:00
.audio-player-container {
margin: 12px 0 24px;
padding: 16px;
border-radius: 8px;
background: rgba(0, 0, 0, 0.2);
border: 1px solid #333;
display: flex;
gap: 12px;
align-items: center;
}
.audio-error {
margin: 0;
color: #ff6b6b;
flex: 1;
}
.btn-stop {
padding: 8px 16px;
border-radius: 4px;
border: none;
cursor: pointer;
background: rgba(231, 76, 60, 0.2);
color: #e74c3c;
font-weight: bold;
}
2025-10-19 18:39:11 +02:00
@media (max-width: 768px) {
.header {
flex-direction: column;
align-items: flex-start;
gap: 12px;
}
.controls {
width: 100%;
justify-content: flex-start;
}
.block-actions {
flex-direction: column;
align-items: flex-start;
}
.summary-row {
flex-direction: column;
align-items: flex-start;
gap: 6px;
}
.search-controls {
flex-direction: column;
align-items: stretch;
}
}
2025-10-19 01:01:33 +02:00
</style>