mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-22 07:15:47 +00:00
cfb7e7f6c1
Two anti-spam knobs the host can dial during a live session: 1. Per-guest suggestion mute — Mic / MicOff toggle next to the kick/ban buttons in the participants popover. Symmetric (re-enable later). State lives in OrbitState.suggestionBlocked: string[]; the guest reads it and disables its own Suggest controls so the user sees a clear "muted" state instead of silent failures. Host-side sweep also drops their outbox entries as a safety net. 2. Max pending approvals cap — number input in the session-settings popover, default 0 (= unlimited so existing sessions are unaffected). When set, the host sweep stops folding new outbox entries into the approval list once the cap is reached. The OrbitQueueHead surfaces "X / Y pending" so guests can see when they're getting close. State changes are additive on the wire — both fields are optional, with parseOrbitState defaulting them, so older clients keep working. evaluateOrbitSuggestGate() centralises the guest-side allow/block check shared between useOrbitSongRowBehavior and the ContextMenu Add-to-Session items, plus suggestOrbitTrack as a defensive last line. i18n: en + de + fr + nl + zh + nb + ru + es. Also fixes an earlier dedupe-key collision: the (user, trackId) cache keys were missing their separator (NULL byte slipped in during the previous patch), so two tracks could share a key and one of them silently overwrite the other. Restored the space separator. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
153 lines
5.6 KiB
TypeScript
153 lines
5.6 KiB
TypeScript
import { useEffect, useRef } from 'react';
|
|
import { createPortal } from 'react-dom';
|
|
import { Shuffle } from 'lucide-react';
|
|
import { useTranslation } from 'react-i18next';
|
|
import { useOrbitStore } from '../store/orbitStore';
|
|
import { updateOrbitSettings, triggerOrbitShuffleNow } from '../utils/orbit';
|
|
import { ORBIT_DEFAULT_SETTINGS, ORBIT_SHUFFLE_INTERVAL_PRESETS_MIN, type OrbitShuffleIntervalMin } from '../api/orbit';
|
|
import { showToast } from '../utils/toast';
|
|
|
|
interface Props {
|
|
anchorRef: React.RefObject<HTMLElement | null>;
|
|
onClose: () => void;
|
|
}
|
|
|
|
/**
|
|
* Host-only popover anchored below the settings button in the Orbit bar.
|
|
* Two toggles; writes are pushed immediately to Navidrome via
|
|
* `updateOrbitSettings`.
|
|
*/
|
|
export default function OrbitSettingsPopover({ anchorRef, onClose }: Props) {
|
|
const { t } = useTranslation();
|
|
const settings = useOrbitStore(s => s.state?.settings) ?? ORBIT_DEFAULT_SETTINGS;
|
|
const popRef = useRef<HTMLDivElement>(null);
|
|
|
|
useEffect(() => {
|
|
const onDown = (e: MouseEvent) => {
|
|
const target = e.target as Node | null;
|
|
if (popRef.current?.contains(target)) return;
|
|
if (anchorRef.current?.contains(target)) return;
|
|
onClose();
|
|
};
|
|
const onKey = (e: KeyboardEvent) => { if (e.key === 'Escape') onClose(); };
|
|
document.addEventListener('mousedown', onDown);
|
|
document.addEventListener('keydown', onKey);
|
|
return () => {
|
|
document.removeEventListener('mousedown', onDown);
|
|
document.removeEventListener('keydown', onKey);
|
|
};
|
|
}, [anchorRef, onClose]);
|
|
|
|
const anchor = anchorRef.current?.getBoundingClientRect();
|
|
const style: React.CSSProperties = anchor
|
|
? {
|
|
position: 'fixed',
|
|
top: anchor.bottom + 12,
|
|
right: Math.max(8, window.innerWidth - anchor.right),
|
|
zIndex: 9999,
|
|
}
|
|
: { display: 'none' };
|
|
|
|
return createPortal(
|
|
<div ref={popRef} className="orbit-settings-pop" style={style} role="menu">
|
|
<div className="orbit-settings-pop__head">{t('orbit.settingsTitle')}</div>
|
|
|
|
<label className="orbit-settings-pop__row">
|
|
<div className="orbit-settings-pop__text">
|
|
<div className="orbit-settings-pop__label">{t('orbit.settingAutoApprove')}</div>
|
|
<div className="orbit-settings-pop__hint">{t('orbit.settingAutoApproveHint')}</div>
|
|
</div>
|
|
<span className="toggle-switch">
|
|
<input
|
|
type="checkbox"
|
|
checked={settings.autoApprove}
|
|
onChange={e => { void updateOrbitSettings({ autoApprove: e.target.checked }); }}
|
|
/>
|
|
<span className="toggle-track" />
|
|
</span>
|
|
</label>
|
|
|
|
<label className="orbit-settings-pop__row">
|
|
<div className="orbit-settings-pop__text">
|
|
<div className="orbit-settings-pop__label">{t('orbit.settingAutoShuffle')}</div>
|
|
<div className="orbit-settings-pop__hint">{t('orbit.settingAutoShuffleHint')}</div>
|
|
</div>
|
|
<span className="toggle-switch">
|
|
<input
|
|
type="checkbox"
|
|
checked={settings.autoShuffle}
|
|
onChange={e => { void updateOrbitSettings({ autoShuffle: e.target.checked }); }}
|
|
/>
|
|
<span className="toggle-track" />
|
|
</span>
|
|
</label>
|
|
|
|
<label className="orbit-settings-pop__row">
|
|
<div className="orbit-settings-pop__text">
|
|
<div className="orbit-settings-pop__label">{t('orbit.settingMaxPending')}</div>
|
|
<div className="orbit-settings-pop__hint">{t('orbit.settingMaxPendingHint')}</div>
|
|
</div>
|
|
<input
|
|
type="number"
|
|
min={0}
|
|
max={999}
|
|
step={1}
|
|
value={settings.maxPending ?? 0}
|
|
onChange={e => {
|
|
const raw = parseInt(e.target.value, 10);
|
|
const next = Number.isFinite(raw) && raw >= 0 ? Math.min(raw, 999) : 0;
|
|
void updateOrbitSettings({ maxPending: next });
|
|
}}
|
|
className="orbit-settings-pop__number"
|
|
aria-label={t('orbit.settingMaxPending')}
|
|
/>
|
|
</label>
|
|
|
|
<div className="orbit-settings-pop__row orbit-settings-pop__row--stacked">
|
|
<div className="orbit-settings-pop__text">
|
|
<div className="orbit-settings-pop__label">{t('orbit.settingShuffleInterval')}</div>
|
|
<div className="orbit-settings-pop__hint">{t('orbit.settingShuffleIntervalHint')}</div>
|
|
</div>
|
|
<div
|
|
className="orbit-settings-pop__preset-group"
|
|
role="radiogroup"
|
|
aria-label={t('orbit.settingShuffleInterval')}
|
|
>
|
|
{ORBIT_SHUFFLE_INTERVAL_PRESETS_MIN.map(min => {
|
|
const active = (settings.shuffleIntervalMin ?? 15) === min;
|
|
return (
|
|
<button
|
|
key={min}
|
|
type="button"
|
|
role="radio"
|
|
aria-checked={active}
|
|
className={`orbit-settings-pop__preset${active ? ' is-active' : ''}`}
|
|
disabled={!settings.autoShuffle}
|
|
onClick={() => {
|
|
void updateOrbitSettings({ shuffleIntervalMin: min as OrbitShuffleIntervalMin });
|
|
}}
|
|
>
|
|
{t('orbit.settingShuffleIntervalValue', { count: min })}
|
|
</button>
|
|
);
|
|
})}
|
|
</div>
|
|
</div>
|
|
|
|
<button
|
|
type="button"
|
|
className="orbit-settings-pop__action"
|
|
onClick={() => {
|
|
void triggerOrbitShuffleNow();
|
|
showToast(t('orbit.toastShuffled'), 2200, 'info');
|
|
onClose();
|
|
}}
|
|
>
|
|
<Shuffle size={13} />
|
|
<span>{t('orbit.settingShuffleNow')}</span>
|
|
</button>
|
|
</div>,
|
|
document.body,
|
|
);
|
|
}
|