mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-21 23:05:46 +00:00
c75297fcf6
Embed bash and zsh completion scripts and add a `completions` subcommand. Extend the player CLI (library, audio device, instant mix) and surface `music_library` in snapshots. Add a shared active-server switcher in the header and locales; instant mix can reseed the queue from CLI and UI.
157 lines
5.6 KiB
TypeScript
157 lines
5.6 KiB
TypeScript
import React, { useState, useEffect, useRef } from 'react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { useNavigate } from 'react-router-dom';
|
|
import { Check, ChevronDown } from 'lucide-react';
|
|
import { ConnectionStatus } from '../hooks/useConnectionStatus';
|
|
import { useAuthStore, type ServerProfile } from '../store/authStore';
|
|
import { switchActiveServer } from '../utils/switchActiveServer';
|
|
import { showToast } from '../utils/toast';
|
|
|
|
interface Props {
|
|
status: ConnectionStatus;
|
|
isLan: boolean;
|
|
serverName: string;
|
|
}
|
|
|
|
export default function ConnectionIndicator({ status, isLan, serverName }: Props) {
|
|
const { t } = useTranslation();
|
|
const navigate = useNavigate();
|
|
const servers = useAuthStore(s => s.servers);
|
|
const activeServerId = useAuthStore(s => s.activeServerId);
|
|
const [menuOpen, setMenuOpen] = useState(false);
|
|
const [switchingId, setSwitchingId] = useState<string | null>(null);
|
|
const hostRef = useRef<HTMLDivElement>(null);
|
|
|
|
const multi = servers.length > 1;
|
|
|
|
useEffect(() => {
|
|
if (!menuOpen) return;
|
|
const onDown = (e: MouseEvent) => {
|
|
if (hostRef.current?.contains(e.target as Node)) return;
|
|
setMenuOpen(false);
|
|
};
|
|
const onKey = (e: KeyboardEvent) => {
|
|
if (e.key === 'Escape') setMenuOpen(false);
|
|
};
|
|
document.addEventListener('mousedown', onDown);
|
|
document.addEventListener('keydown', onKey);
|
|
return () => {
|
|
document.removeEventListener('mousedown', onDown);
|
|
document.removeEventListener('keydown', onKey);
|
|
};
|
|
}, [menuOpen]);
|
|
|
|
const goServerSettings = () => {
|
|
setMenuOpen(false);
|
|
navigate('/settings', { state: { tab: 'server' } });
|
|
};
|
|
|
|
const onTriggerClick = () => {
|
|
if (!multi) {
|
|
goServerSettings();
|
|
return;
|
|
}
|
|
setMenuOpen(o => !o);
|
|
};
|
|
|
|
const onPickServer = async (srv: ServerProfile) => {
|
|
if (srv.id === activeServerId) {
|
|
setMenuOpen(false);
|
|
return;
|
|
}
|
|
setSwitchingId(srv.id);
|
|
const ok = await switchActiveServer(srv);
|
|
setSwitchingId(null);
|
|
setMenuOpen(false);
|
|
if (!ok) {
|
|
showToast(t('connection.switchFailed'), 5000, 'error');
|
|
return;
|
|
}
|
|
navigate('/');
|
|
};
|
|
|
|
const label = isLan ? 'LAN' : t('connection.extern');
|
|
const tooltip = multi
|
|
? t('connection.switchServerHint')
|
|
: status === 'connected'
|
|
? t('connection.connectedTo', { server: serverName })
|
|
: status === 'disconnected'
|
|
? t('connection.disconnectedFrom', { server: serverName })
|
|
: t('connection.checking');
|
|
|
|
return (
|
|
<div className="connection-indicator-host" ref={hostRef}>
|
|
<div
|
|
className="connection-indicator"
|
|
style={{ cursor: 'pointer' }}
|
|
onClick={onTriggerClick}
|
|
data-tooltip={tooltip}
|
|
data-tooltip-pos="bottom"
|
|
role={multi ? 'button' : undefined}
|
|
aria-haspopup={multi ? 'menu' : undefined}
|
|
aria-expanded={multi ? menuOpen : undefined}
|
|
>
|
|
<div className={`connection-led connection-led--${status}`} />
|
|
<div className="connection-meta">
|
|
<span className="connection-type">{label}</span>
|
|
<span className="connection-server" style={{ display: 'flex', alignItems: 'center', gap: 4, maxWidth: 120 }}>
|
|
<span style={{ overflow: 'hidden', textOverflow: 'ellipsis', whiteSpace: 'nowrap' }}>{serverName}</span>
|
|
{multi && (
|
|
<ChevronDown size={12} className={menuOpen ? 'connection-indicator-chevron--open' : undefined} style={{ flexShrink: 0, opacity: 0.85 }} aria-hidden />
|
|
)}
|
|
</span>
|
|
</div>
|
|
</div>
|
|
{multi && menuOpen && (
|
|
<div
|
|
className="nav-library-dropdown-panel connection-indicator-dropdown-panel"
|
|
role="menu"
|
|
aria-label={t('connection.switchServerTitle')}
|
|
>
|
|
<div
|
|
style={{
|
|
fontSize: 10,
|
|
fontWeight: 600,
|
|
letterSpacing: '0.08em',
|
|
textTransform: 'uppercase',
|
|
color: 'var(--text-muted)',
|
|
padding: '6px 10px 4px',
|
|
}}
|
|
>
|
|
{t('connection.switchServerTitle')}
|
|
</div>
|
|
{servers.map(srv => {
|
|
const active = srv.id === activeServerId;
|
|
const busy = switchingId !== null;
|
|
const labelText = (srv.name || srv.url).trim() || srv.url;
|
|
return (
|
|
<button
|
|
key={srv.id}
|
|
type="button"
|
|
role="menuitem"
|
|
className={`nav-library-dropdown-item${active ? ' nav-library-dropdown-item--selected' : ''}`}
|
|
disabled={busy}
|
|
onClick={() => onPickServer(srv)}
|
|
>
|
|
<span className="nav-library-dropdown-item-label">{labelText}</span>
|
|
{switchingId === srv.id ? (
|
|
<div className="spinner" style={{ width: 14, height: 14, flexShrink: 0 }} aria-hidden />
|
|
) : active ? (
|
|
<Check size={16} className="nav-library-dropdown-check" aria-hidden />
|
|
) : (
|
|
<span className="nav-library-dropdown-check-spacer" aria-hidden />
|
|
)}
|
|
</button>
|
|
);
|
|
})}
|
|
<div style={{ borderTop: '1px solid color-mix(in srgb, var(--text-muted) 15%, transparent)', marginTop: 2, paddingTop: 2 }} />
|
|
<button type="button" className="nav-library-dropdown-item" onClick={goServerSettings}>
|
|
<span className="nav-library-dropdown-item-label">{t('connection.manageServers')}</span>
|
|
<span className="nav-library-dropdown-check-spacer" aria-hidden />
|
|
</button>
|
|
</div>
|
|
)}
|
|
</div>
|
|
);
|
|
}
|