mirror of
https://github.com/kilyabin/psysonic.git
synced 2026-07-21 22:15:40 +00:00
revert(orbit): drop maxPending cap feature, keep suggestion mute
The pending counter desynced from the actual approval list (state.queue holds approved items as history, so the count never decreased after a host approve). The host-pushed pendingApprovalCount workaround didn't hold up under live testing either, so we're rolling the whole cap feature back rather than ship something flaky. What's gone: - OrbitSettings.maxPending + state.pendingApprovalCount - cap branch in applyOutboxSnapshotsToState (now back to mute-only) - maxPending number input in settings popover - pending counter chip in OrbitQueueHead - 'cap-reached' branch in evaluateOrbitSuggestGate / OrbitSuggestGateReason - cap-related toasts in ContextMenu / useOrbitSongRowBehavior - cap-related i18n keys (suggestBlockedCap, settingMaxPending*, pendingCounter*) - cap CSS (.orbit-queue-head__pending, .orbit-settings-pop__number) What stays: per-guest suggestion mute (works correctly) and everything that fed into both features (OrbitState.suggestionBlocked, setOrbitSuggestionBlocked, evaluateOrbitSuggestGate, the participants popover Mic/MicOff toggle, the suggestBlockedMuted toast). Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -106,14 +106,6 @@ export interface OrbitState {
|
|||||||
* before they reach the approval list. Symmetric — host can re-enable.
|
* before they reach the approval list. Symmetric — host can re-enable.
|
||||||
*/
|
*/
|
||||||
suggestionBlocked?: string[];
|
suggestionBlocked?: string[];
|
||||||
/**
|
|
||||||
* Authoritative count of suggestions actually waiting on host action right
|
|
||||||
* now (`state.queue` minus host-authored, merged, declined). The host
|
|
||||||
* rewrites it every tick — guests can't compute it themselves because the
|
|
||||||
* merged/declined sets live in the host's local store. Older clients that
|
|
||||||
* don't write the field fall back to a `state.queue` count in the UI.
|
|
||||||
*/
|
|
||||||
pendingApprovalCount?: number;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -135,13 +127,6 @@ export interface OrbitSettings {
|
|||||||
* field fall back to 15 via `effectiveShuffleIntervalMs`.
|
* field fall back to 15 via `effectiveShuffleIntervalMs`.
|
||||||
*/
|
*/
|
||||||
shuffleIntervalMin?: OrbitShuffleIntervalMin;
|
shuffleIntervalMin?: OrbitShuffleIntervalMin;
|
||||||
/**
|
|
||||||
* Cap on simultaneously-pending guest suggestions. 0 = unlimited.
|
|
||||||
* When the cap is reached, the host's outbox sweep drops new suggestions
|
|
||||||
* until existing ones are approved or declined; the guest UI surfaces
|
|
||||||
* the count so users know to wait.
|
|
||||||
*/
|
|
||||||
maxPending?: number;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
export const ORBIT_DEFAULT_SETTINGS: OrbitSettings = {
|
export const ORBIT_DEFAULT_SETTINGS: OrbitSettings = {
|
||||||
@@ -149,8 +134,6 @@ export const ORBIT_DEFAULT_SETTINGS: OrbitSettings = {
|
|||||||
autoApprove: false,
|
autoApprove: false,
|
||||||
autoShuffle: true,
|
autoShuffle: true,
|
||||||
shuffleIntervalMin: 15,
|
shuffleIntervalMin: 15,
|
||||||
// 0 = unlimited; host opts in via the session-settings popover.
|
|
||||||
maxPending: 0,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/** What the guest's outbox-playlist comment holds (heartbeat only, for now). */
|
/** What the guest's outbox-playlist comment holds (heartbeat only, for now). */
|
||||||
|
|||||||
@@ -1452,27 +1452,18 @@ export default function ContextMenu() {
|
|||||||
<ListPlus size={14} /> {t('contextMenu.addToQueue')}
|
<ListPlus size={14} /> {t('contextMenu.addToQueue')}
|
||||||
</div>
|
</div>
|
||||||
{orbitRole === 'guest' && (() => {
|
{orbitRole === 'guest' && (() => {
|
||||||
const gate = evaluateOrbitSuggestGate();
|
const muted = evaluateOrbitSuggestGate().reason === 'muted';
|
||||||
const muted = gate.reason === 'muted';
|
|
||||||
const capReached = gate.reason === 'cap-reached';
|
|
||||||
const disabled = muted || capReached;
|
|
||||||
const tooltip = muted
|
|
||||||
? t('orbit.suggestBlockedMuted')
|
|
||||||
: capReached ? t('orbit.suggestBlockedCap') : '';
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
className={`context-menu-item${disabled ? ' is-disabled' : ''}`}
|
className={`context-menu-item${muted ? ' is-disabled' : ''}`}
|
||||||
{...(disabled ? { 'data-tooltip': tooltip } : {})}
|
{...(muted ? { 'data-tooltip': t('orbit.suggestBlockedMuted') } : {})}
|
||||||
onClick={() => handleAction(() => {
|
onClick={() => handleAction(() => {
|
||||||
if (muted) { showToast(t('orbit.suggestBlockedMuted'), 3500, 'error'); return; }
|
if (muted) { showToast(t('orbit.suggestBlockedMuted'), 3500, 'error'); return; }
|
||||||
if (capReached) { showToast(t('orbit.suggestBlockedCap'), 3500, 'info'); return; }
|
|
||||||
suggestOrbitTrack(song.id)
|
suggestOrbitTrack(song.id)
|
||||||
.then(() => showToast(t('orbit.ctxSuggestedToast'), 2200, 'info'))
|
.then(() => showToast(t('orbit.ctxSuggestedToast'), 2200, 'info'))
|
||||||
.catch(err => {
|
.catch(err => {
|
||||||
if (err instanceof OrbitSuggestBlockedError && err.reason === 'muted') {
|
if (err instanceof OrbitSuggestBlockedError && err.reason === 'muted') {
|
||||||
showToast(t('orbit.suggestBlockedMuted'), 3500, 'error');
|
showToast(t('orbit.suggestBlockedMuted'), 3500, 'error');
|
||||||
} else if (err instanceof OrbitSuggestBlockedError && err.reason === 'cap-reached') {
|
|
||||||
showToast(t('orbit.suggestBlockedCap'), 3500, 'info');
|
|
||||||
} else {
|
} else {
|
||||||
showToast(t('orbit.ctxSuggestFailed'), 3000, 'error');
|
showToast(t('orbit.ctxSuggestFailed'), 3000, 'error');
|
||||||
}
|
}
|
||||||
@@ -1625,27 +1616,18 @@ export default function ContextMenu() {
|
|||||||
<ListPlus size={14} /> {t('contextMenu.addToQueue')}
|
<ListPlus size={14} /> {t('contextMenu.addToQueue')}
|
||||||
</div>
|
</div>
|
||||||
{orbitRole === 'guest' && (() => {
|
{orbitRole === 'guest' && (() => {
|
||||||
const gate = evaluateOrbitSuggestGate();
|
const muted = evaluateOrbitSuggestGate().reason === 'muted';
|
||||||
const muted = gate.reason === 'muted';
|
|
||||||
const capReached = gate.reason === 'cap-reached';
|
|
||||||
const disabled = muted || capReached;
|
|
||||||
const tooltip = muted
|
|
||||||
? t('orbit.suggestBlockedMuted')
|
|
||||||
: capReached ? t('orbit.suggestBlockedCap') : '';
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
className={`context-menu-item${disabled ? ' is-disabled' : ''}`}
|
className={`context-menu-item${muted ? ' is-disabled' : ''}`}
|
||||||
{...(disabled ? { 'data-tooltip': tooltip } : {})}
|
{...(muted ? { 'data-tooltip': t('orbit.suggestBlockedMuted') } : {})}
|
||||||
onClick={() => handleAction(() => {
|
onClick={() => handleAction(() => {
|
||||||
if (muted) { showToast(t('orbit.suggestBlockedMuted'), 3500, 'error'); return; }
|
if (muted) { showToast(t('orbit.suggestBlockedMuted'), 3500, 'error'); return; }
|
||||||
if (capReached) { showToast(t('orbit.suggestBlockedCap'), 3500, 'info'); return; }
|
|
||||||
suggestOrbitTrack(song.id)
|
suggestOrbitTrack(song.id)
|
||||||
.then(() => showToast(t('orbit.ctxSuggestedToast'), 2200, 'info'))
|
.then(() => showToast(t('orbit.ctxSuggestedToast'), 2200, 'info'))
|
||||||
.catch(err => {
|
.catch(err => {
|
||||||
if (err instanceof OrbitSuggestBlockedError && err.reason === 'muted') {
|
if (err instanceof OrbitSuggestBlockedError && err.reason === 'muted') {
|
||||||
showToast(t('orbit.suggestBlockedMuted'), 3500, 'error');
|
showToast(t('orbit.suggestBlockedMuted'), 3500, 'error');
|
||||||
} else if (err instanceof OrbitSuggestBlockedError && err.reason === 'cap-reached') {
|
|
||||||
showToast(t('orbit.suggestBlockedCap'), 3500, 'info');
|
|
||||||
} else {
|
} else {
|
||||||
showToast(t('orbit.ctxSuggestFailed'), 3000, 'error');
|
showToast(t('orbit.ctxSuggestFailed'), 3000, 'error');
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
import { useEffect, useState } from 'react';
|
import { useEffect, useState } from 'react';
|
||||||
import { Users, Wifi, WifiOff, Inbox } from 'lucide-react';
|
import { Users, Wifi, WifiOff } from 'lucide-react';
|
||||||
import { useTranslation } from 'react-i18next';
|
import { useTranslation } from 'react-i18next';
|
||||||
import { useOrbitStore } from '../store/orbitStore';
|
import { useOrbitStore } from '../store/orbitStore';
|
||||||
import type { OrbitState } from '../api/orbit';
|
import type { OrbitState } from '../api/orbit';
|
||||||
@@ -36,15 +36,6 @@ export default function OrbitQueueHead({ state }: Props) {
|
|||||||
const names = [state.host, ...state.participants.map(p => p.user)];
|
const names = [state.host, ...state.participants.map(p => p.user)];
|
||||||
const showPresence = role === 'guest' && state.positionAt > 0;
|
const showPresence = role === 'guest' && state.positionAt > 0;
|
||||||
const hostAway = showPresence && (nowMs - state.positionAt) > HOST_AWAY_THRESHOLD_MS;
|
const hostAway = showPresence && (nowMs - state.positionAt) > HOST_AWAY_THRESHOLD_MS;
|
||||||
const cap = state.settings?.maxPending ?? 0;
|
|
||||||
// Authoritative count comes from the host's own tick (state.pendingApprovalCount).
|
|
||||||
// Older clients that predate that field fall back to the raw queue length
|
|
||||||
// — that one over-counts because merged/declined items stay in state.queue
|
|
||||||
// as history, but it's the best a non-host client can do.
|
|
||||||
const pendingCount = cap > 0
|
|
||||||
? (state.pendingApprovalCount
|
|
||||||
?? state.queue.filter(q => q.addedBy !== state.host).length)
|
|
||||||
: 0;
|
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="orbit-queue-head">
|
<div className="orbit-queue-head">
|
||||||
@@ -63,15 +54,6 @@ export default function OrbitQueueHead({ state }: Props) {
|
|||||||
<div className="orbit-queue-head__meta">
|
<div className="orbit-queue-head__meta">
|
||||||
<Users size={11} />
|
<Users size={11} />
|
||||||
<span className="orbit-queue-head__names">{names.join(', ')}</span>
|
<span className="orbit-queue-head__names">{names.join(', ')}</span>
|
||||||
{cap > 0 && (
|
|
||||||
<span
|
|
||||||
className={`orbit-queue-head__pending${pendingCount >= cap ? ' is-full' : ''}`}
|
|
||||||
data-tooltip={t('orbit.pendingCounterTooltip')}
|
|
||||||
>
|
|
||||||
<Inbox size={11} />
|
|
||||||
<span>{t('orbit.pendingCounter', { count: pendingCount, max: cap })}</span>
|
|
||||||
</span>
|
|
||||||
)}
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -82,27 +82,6 @@ export default function OrbitSettingsPopover({ anchorRef, onClose }: Props) {
|
|||||||
</span>
|
</span>
|
||||||
</label>
|
</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__row orbit-settings-pop__row--stacked">
|
||||||
<div className="orbit-settings-pop__text">
|
<div className="orbit-settings-pop__text">
|
||||||
<div className="orbit-settings-pop__label">{t('orbit.settingShuffleInterval')}</div>
|
<div className="orbit-settings-pop__label">{t('orbit.settingShuffleInterval')}</div>
|
||||||
|
|||||||
@@ -87,12 +87,7 @@ export function useOrbitHost(): void {
|
|||||||
let afterSweep = base;
|
let afterSweep = base;
|
||||||
try {
|
try {
|
||||||
const snaps = await sweepGuestOutboxes(base.sid, base.host);
|
const snaps = await sweepGuestOutboxes(base.sid, base.host);
|
||||||
// Hand the cap-check the host's local merged/declined sets so it can
|
afterSweep = applyOutboxSnapshotsToState(base, snaps);
|
||||||
// tell which `state.queue` items are still actually awaiting approval.
|
|
||||||
afterSweep = applyOutboxSnapshotsToState(base, snaps, Date.now(), {
|
|
||||||
mergedKeys: new Set(store.mergedSuggestionKeys),
|
|
||||||
declinedKeys: new Set(store.declinedSuggestionKeys),
|
|
||||||
});
|
|
||||||
} catch { /* best-effort; keep old participants and queue */ }
|
} catch { /* best-effort; keep old participants and queue */ }
|
||||||
|
|
||||||
// 2) Merge newly-suggested items into the host's local play queue so
|
// 2) Merge newly-suggested items into the host's local play queue so
|
||||||
@@ -130,24 +125,11 @@ export function useOrbitHost(): void {
|
|||||||
trackId: t.id,
|
trackId: t.id,
|
||||||
addedBy: suggesterByTrack.get(t.id) ?? base.host,
|
addedBy: suggesterByTrack.get(t.id) ?? base.host,
|
||||||
}));
|
}));
|
||||||
// Authoritative pending count — same predicate the approval list uses
|
|
||||||
// (state.queue minus host-authored, minus merged, minus declined). We
|
|
||||||
// recompute fresh each tick from the *current* store sets so an approve
|
|
||||||
// / decline that happened mid-sweep is reflected on the very next push.
|
|
||||||
const mergedNow = new Set(useOrbitStore.getState().mergedSuggestionKeys);
|
|
||||||
const declinedNow = new Set(useOrbitStore.getState().declinedSuggestionKeys);
|
|
||||||
const pendingApprovalCount = afterShuffle.queue.filter(q =>
|
|
||||||
q.addedBy !== afterShuffle.host
|
|
||||||
&& !mergedNow.has(suggestionKey(q))
|
|
||||||
&& !declinedNow.has(suggestionKey(q))
|
|
||||||
).length;
|
|
||||||
|
|
||||||
const next: OrbitState = {
|
const next: OrbitState = {
|
||||||
...afterShuffle,
|
...afterShuffle,
|
||||||
...snapshotPlayerPatch(base.host),
|
...snapshotPlayerPatch(base.host),
|
||||||
playQueue,
|
playQueue,
|
||||||
playQueueTotal: upcoming.length,
|
playQueueTotal: upcoming.length,
|
||||||
pendingApprovalCount,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
// 5) Commit locally + push remote.
|
// 5) Commit locally + push remote.
|
||||||
|
|||||||
@@ -53,17 +53,11 @@ export function useOrbitSongRowBehavior() {
|
|||||||
showToast(t('orbit.suggestBlockedMuted'), 3500, 'error');
|
showToast(t('orbit.suggestBlockedMuted'), 3500, 'error');
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!gate.allowed && gate.reason === 'cap-reached') {
|
|
||||||
showToast(t('orbit.suggestBlockedCap'), 3500, 'info');
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
suggestOrbitTrack(songId)
|
suggestOrbitTrack(songId)
|
||||||
.then(() => showToast(t('orbit.ctxSuggestedToast'), 2200, 'info'))
|
.then(() => showToast(t('orbit.ctxSuggestedToast'), 2200, 'info'))
|
||||||
.catch(err => {
|
.catch(err => {
|
||||||
if (err instanceof OrbitSuggestBlockedError && err.reason === 'muted') {
|
if (err instanceof OrbitSuggestBlockedError && err.reason === 'muted') {
|
||||||
showToast(t('orbit.suggestBlockedMuted'), 3500, 'error');
|
showToast(t('orbit.suggestBlockedMuted'), 3500, 'error');
|
||||||
} else if (err instanceof OrbitSuggestBlockedError && err.reason === 'cap-reached') {
|
|
||||||
showToast(t('orbit.suggestBlockedCap'), 3500, 'info');
|
|
||||||
} else {
|
} else {
|
||||||
showToast(t('orbit.ctxSuggestFailed'), 3000, 'error');
|
showToast(t('orbit.ctxSuggestFailed'), 3000, 'error');
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1609,12 +1609,7 @@ export const deTranslation = {
|
|||||||
settingAutoShuffleHint: 'Periodischer Fisher-Yates-Shuffle der kommenden Warteschlange. Aus: Reihenfolge wird nur verändert, wenn du selbst sortierst.',
|
settingAutoShuffleHint: 'Periodischer Fisher-Yates-Shuffle der kommenden Warteschlange. Aus: Reihenfolge wird nur verändert, wenn du selbst sortierst.',
|
||||||
settingShuffleInterval: 'Alle',
|
settingShuffleInterval: 'Alle',
|
||||||
settingShuffleIntervalHint: 'Wie oft die kommende Warteschlange während der Session neu gemischt wird.',
|
settingShuffleIntervalHint: 'Wie oft die kommende Warteschlange während der Session neu gemischt wird.',
|
||||||
settingMaxPending: 'Max offene Vorschläge',
|
|
||||||
settingMaxPendingHint: 'Begrenzt, wie viele Gast-Vorschläge gleichzeitig auf Bestätigung warten dürfen. 0 = unbegrenzt.',
|
|
||||||
pendingCounter: '{{count}} / {{max}} offen',
|
|
||||||
pendingCounterTooltip: 'Wartende Gast-Vorschläge / Limit',
|
|
||||||
suggestBlockedMuted: 'Der Host hat dich für diese Session gesperrt — keine Vorschläge möglich.',
|
suggestBlockedMuted: 'Der Host hat dich für diese Session gesperrt — keine Vorschläge möglich.',
|
||||||
suggestBlockedCap: 'Approval-Liste ist voll — warte bis der Host welche durchwinkt.',
|
|
||||||
settingShuffleIntervalValue_one: '{{count}} Min.',
|
settingShuffleIntervalValue_one: '{{count}} Min.',
|
||||||
settingShuffleIntervalValue_other: '{{count}} Min.',
|
settingShuffleIntervalValue_other: '{{count}} Min.',
|
||||||
settingShuffleNow: 'Jetzt mischen',
|
settingShuffleNow: 'Jetzt mischen',
|
||||||
|
|||||||
@@ -1613,12 +1613,7 @@ export const enTranslation = {
|
|||||||
settingAutoShuffleHint: "Periodic Fisher–Yates shuffle of the upcoming queue. Off: order only changes when you rearrange it.",
|
settingAutoShuffleHint: "Periodic Fisher–Yates shuffle of the upcoming queue. Off: order only changes when you rearrange it.",
|
||||||
settingShuffleInterval: 'Reshuffle every',
|
settingShuffleInterval: 'Reshuffle every',
|
||||||
settingShuffleIntervalHint: 'How often the upcoming queue gets reshuffled while the session runs.',
|
settingShuffleIntervalHint: 'How often the upcoming queue gets reshuffled while the session runs.',
|
||||||
settingMaxPending: 'Max pending suggestions',
|
|
||||||
settingMaxPendingHint: 'Cap on how many guest suggestions can wait for approval. 0 = unlimited.',
|
|
||||||
pendingCounter: '{{count}} / {{max}} pending',
|
|
||||||
pendingCounterTooltip: 'Pending guest suggestions / cap',
|
|
||||||
suggestBlockedMuted: 'The host muted you for this session — suggestions are off.',
|
suggestBlockedMuted: 'The host muted you for this session — suggestions are off.',
|
||||||
suggestBlockedCap: 'Approval queue is full — wait for the host to clear some.',
|
|
||||||
settingShuffleIntervalValue_one: '{{count}} min',
|
settingShuffleIntervalValue_one: '{{count}} min',
|
||||||
settingShuffleIntervalValue_other: '{{count}} min',
|
settingShuffleIntervalValue_other: '{{count}} min',
|
||||||
settingShuffleNow: 'Shuffle now',
|
settingShuffleNow: 'Shuffle now',
|
||||||
|
|||||||
@@ -1596,12 +1596,7 @@ export const esTranslation = {
|
|||||||
settingAutoShuffleHint: 'Mezclado Fisher-Yates periódico de la cola próxima. Desactivado: el orden solo cambia cuando lo reorganizas.',
|
settingAutoShuffleHint: 'Mezclado Fisher-Yates periódico de la cola próxima. Desactivado: el orden solo cambia cuando lo reorganizas.',
|
||||||
settingShuffleInterval: 'Remezclar cada',
|
settingShuffleInterval: 'Remezclar cada',
|
||||||
settingShuffleIntervalHint: 'Con qué frecuencia se remezcla la cola próxima durante la sesión.',
|
settingShuffleIntervalHint: 'Con qué frecuencia se remezcla la cola próxima durante la sesión.',
|
||||||
settingMaxPending: 'Máx. sugerencias pendientes',
|
|
||||||
settingMaxPendingHint: 'Límite de sugerencias de invitados que pueden esperar aprobación a la vez. 0 = ilimitado.',
|
|
||||||
pendingCounter: '{{count}} / {{max}} pendientes',
|
|
||||||
pendingCounterTooltip: 'Sugerencias de invitados pendientes / límite',
|
|
||||||
suggestBlockedMuted: 'El anfitrión te silenció en esta sesión — sugerencias desactivadas.',
|
suggestBlockedMuted: 'El anfitrión te silenció en esta sesión — sugerencias desactivadas.',
|
||||||
suggestBlockedCap: 'La cola de aprobación está llena — espera a que el anfitrión despeje algunas.',
|
|
||||||
settingShuffleIntervalValue_one: '{{count}} min',
|
settingShuffleIntervalValue_one: '{{count}} min',
|
||||||
settingShuffleIntervalValue_other: '{{count}} min',
|
settingShuffleIntervalValue_other: '{{count}} min',
|
||||||
settingShuffleNow: 'Mezclar ahora',
|
settingShuffleNow: 'Mezclar ahora',
|
||||||
|
|||||||
@@ -1591,12 +1591,7 @@ export const frTranslation = {
|
|||||||
settingAutoShuffleHint: 'Mélange Fisher-Yates périodique de la file à venir. Désactivé : l\'ordre ne change que lorsque tu le réorganises.',
|
settingAutoShuffleHint: 'Mélange Fisher-Yates périodique de la file à venir. Désactivé : l\'ordre ne change que lorsque tu le réorganises.',
|
||||||
settingShuffleInterval: 'Remélanger toutes les',
|
settingShuffleInterval: 'Remélanger toutes les',
|
||||||
settingShuffleIntervalHint: 'Fréquence de remélange de la file pendant la session.',
|
settingShuffleIntervalHint: 'Fréquence de remélange de la file pendant la session.',
|
||||||
settingMaxPending: 'Max suggestions en attente',
|
|
||||||
settingMaxPendingHint: 'Limite le nombre de suggestions invitées qui attendent ton approbation. 0 = illimité.',
|
|
||||||
pendingCounter: '{{count}} / {{max}} en attente',
|
|
||||||
pendingCounterTooltip: 'Suggestions invitées en attente / limite',
|
|
||||||
suggestBlockedMuted: 'L\'hôte t\'a coupé le micro pour cette session — suggestions désactivées.',
|
suggestBlockedMuted: 'L\'hôte t\'a coupé le micro pour cette session — suggestions désactivées.',
|
||||||
suggestBlockedCap: 'La file d\'approbation est pleine — attends que l\'hôte en traite.',
|
|
||||||
settingShuffleIntervalValue_one: '{{count}} min',
|
settingShuffleIntervalValue_one: '{{count}} min',
|
||||||
settingShuffleIntervalValue_other: '{{count}} min',
|
settingShuffleIntervalValue_other: '{{count}} min',
|
||||||
settingShuffleNow: 'Mélanger maintenant',
|
settingShuffleNow: 'Mélanger maintenant',
|
||||||
|
|||||||
@@ -1590,12 +1590,7 @@ export const nbTranslation = {
|
|||||||
settingAutoShuffleHint: 'Periodisk Fisher-Yates-stokking av kommende kø. Av: rekkefølgen endres bare når du omorganiserer den.',
|
settingAutoShuffleHint: 'Periodisk Fisher-Yates-stokking av kommende kø. Av: rekkefølgen endres bare når du omorganiserer den.',
|
||||||
settingShuffleInterval: 'Stokk på nytt hver',
|
settingShuffleInterval: 'Stokk på nytt hver',
|
||||||
settingShuffleIntervalHint: 'Hvor ofte kommende kø stokkes på nytt mens økten kjører.',
|
settingShuffleIntervalHint: 'Hvor ofte kommende kø stokkes på nytt mens økten kjører.',
|
||||||
settingMaxPending: 'Maks ventende forslag',
|
|
||||||
settingMaxPendingHint: 'Hvor mange gjesteforslag som samtidig kan vente på godkjenning. 0 = ubegrenset.',
|
|
||||||
pendingCounter: '{{count}} / {{max}} venter',
|
|
||||||
pendingCounterTooltip: 'Ventende gjesteforslag / grense',
|
|
||||||
suggestBlockedMuted: 'Verten har blokkert deg for denne økten — forslag er av.',
|
suggestBlockedMuted: 'Verten har blokkert deg for denne økten — forslag er av.',
|
||||||
suggestBlockedCap: 'Godkjenningskøen er full — vent til verten tar unna noen.',
|
|
||||||
settingShuffleIntervalValue_one: '{{count}} min',
|
settingShuffleIntervalValue_one: '{{count}} min',
|
||||||
settingShuffleIntervalValue_other: '{{count}} min',
|
settingShuffleIntervalValue_other: '{{count}} min',
|
||||||
settingShuffleNow: 'Stokk nå',
|
settingShuffleNow: 'Stokk nå',
|
||||||
|
|||||||
@@ -1590,12 +1590,7 @@ export const nlTranslation = {
|
|||||||
settingAutoShuffleHint: 'Periodieke Fisher-Yates-shuffle van de komende wachtrij. Uit: de volgorde verandert alleen wanneer je zelf herschikt.',
|
settingAutoShuffleHint: 'Periodieke Fisher-Yates-shuffle van de komende wachtrij. Uit: de volgorde verandert alleen wanneer je zelf herschikt.',
|
||||||
settingShuffleInterval: 'Opnieuw shufflen elke',
|
settingShuffleInterval: 'Opnieuw shufflen elke',
|
||||||
settingShuffleIntervalHint: 'Hoe vaak de komende wachtrij tijdens de sessie opnieuw wordt geshuffled.',
|
settingShuffleIntervalHint: 'Hoe vaak de komende wachtrij tijdens de sessie opnieuw wordt geshuffled.',
|
||||||
settingMaxPending: 'Max openstaande voorstellen',
|
|
||||||
settingMaxPendingHint: 'Hoeveel gastvoorstellen tegelijk op goedkeuring mogen wachten. 0 = onbeperkt.',
|
|
||||||
pendingCounter: '{{count}} / {{max}} open',
|
|
||||||
pendingCounterTooltip: 'Wachtende gastvoorstellen / limiet',
|
|
||||||
suggestBlockedMuted: 'De host heeft je voor deze sessie geblokkeerd — voorstellen uitgeschakeld.',
|
suggestBlockedMuted: 'De host heeft je voor deze sessie geblokkeerd — voorstellen uitgeschakeld.',
|
||||||
suggestBlockedCap: 'De goedkeuringslijst is vol — wacht tot de host er een paar afhandelt.',
|
|
||||||
settingShuffleIntervalValue_one: '{{count}} min',
|
settingShuffleIntervalValue_one: '{{count}} min',
|
||||||
settingShuffleIntervalValue_other: '{{count}} min',
|
settingShuffleIntervalValue_other: '{{count}} min',
|
||||||
settingShuffleNow: 'Nu shufflen',
|
settingShuffleNow: 'Nu shufflen',
|
||||||
|
|||||||
@@ -1670,12 +1670,7 @@ export const ruTranslation = {
|
|||||||
settingAutoShuffleHint: 'Периодическое Fisher-Yates перемешивание предстоящей очереди. Выкл.: порядок меняется только при ручной перестановке.',
|
settingAutoShuffleHint: 'Периодическое Fisher-Yates перемешивание предстоящей очереди. Выкл.: порядок меняется только при ручной перестановке.',
|
||||||
settingShuffleInterval: 'Перемешивать каждые',
|
settingShuffleInterval: 'Перемешивать каждые',
|
||||||
settingShuffleIntervalHint: 'Как часто предстоящая очередь перемешивается во время сессии.',
|
settingShuffleIntervalHint: 'Как часто предстоящая очередь перемешивается во время сессии.',
|
||||||
settingMaxPending: 'Макс. ожидающих заявок',
|
|
||||||
settingMaxPendingHint: 'Сколько гостевых предложений могут одновременно ждать одобрения. 0 = без лимита.',
|
|
||||||
pendingCounter: '{{count}} / {{max}} в ожидании',
|
|
||||||
pendingCounterTooltip: 'Ожидающие гостевые заявки / лимит',
|
|
||||||
suggestBlockedMuted: 'Хост отключил тебе предложение треков на этой сессии.',
|
suggestBlockedMuted: 'Хост отключил тебе предложение треков на этой сессии.',
|
||||||
suggestBlockedCap: 'Очередь одобрений переполнена — подожди, пока хост её разгребёт.',
|
|
||||||
settingShuffleIntervalValue_one: '{{count}} мин',
|
settingShuffleIntervalValue_one: '{{count}} мин',
|
||||||
settingShuffleIntervalValue_few: '{{count}} мин',
|
settingShuffleIntervalValue_few: '{{count}} мин',
|
||||||
settingShuffleIntervalValue_many: '{{count}} мин',
|
settingShuffleIntervalValue_many: '{{count}} мин',
|
||||||
|
|||||||
@@ -1583,12 +1583,7 @@ export const zhTranslation = {
|
|||||||
settingAutoShuffleHint: '即将播放队列的定期 Fisher-Yates 洗牌。关闭:顺序仅在你手动重新排列时改变。',
|
settingAutoShuffleHint: '即将播放队列的定期 Fisher-Yates 洗牌。关闭:顺序仅在你手动重新排列时改变。',
|
||||||
settingShuffleInterval: '洗牌间隔',
|
settingShuffleInterval: '洗牌间隔',
|
||||||
settingShuffleIntervalHint: '会话运行时即将播放队列的重新洗牌频率。',
|
settingShuffleIntervalHint: '会话运行时即将播放队列的重新洗牌频率。',
|
||||||
settingMaxPending: '最大待审投歌数',
|
|
||||||
settingMaxPendingHint: '同时等待审核的访客投歌上限。0 = 不限制。',
|
|
||||||
pendingCounter: '{{count}} / {{max}} 待审',
|
|
||||||
pendingCounterTooltip: '等待中的访客投歌 / 上限',
|
|
||||||
suggestBlockedMuted: '主持人已禁止你在本场会话投歌。',
|
suggestBlockedMuted: '主持人已禁止你在本场会话投歌。',
|
||||||
suggestBlockedCap: '审核队列已满,等主持人处理一些再继续。',
|
|
||||||
settingShuffleIntervalValue_one: '{{count}} 分钟',
|
settingShuffleIntervalValue_one: '{{count}} 分钟',
|
||||||
settingShuffleIntervalValue_other: '{{count}} 分钟',
|
settingShuffleIntervalValue_other: '{{count}} 分钟',
|
||||||
settingShuffleNow: '立即洗牌',
|
settingShuffleNow: '立即洗牌',
|
||||||
|
|||||||
@@ -12388,22 +12388,6 @@ html[data-psy-native-hidden="true"] *::after {
|
|||||||
.orbit-settings-pop__row--stacked:hover {
|
.orbit-settings-pop__row--stacked:hover {
|
||||||
background: transparent;
|
background: transparent;
|
||||||
}
|
}
|
||||||
.orbit-settings-pop__number {
|
|
||||||
width: 64px;
|
|
||||||
padding: 4px 6px;
|
|
||||||
border-radius: 6px;
|
|
||||||
background: var(--ctp-surface0, rgba(127, 127, 127, 0.12));
|
|
||||||
border: 1px solid color-mix(in srgb, var(--text-secondary) 18%, transparent);
|
|
||||||
color: var(--text-primary);
|
|
||||||
font-size: 12px;
|
|
||||||
font-variant-numeric: tabular-nums;
|
|
||||||
text-align: right;
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
.orbit-settings-pop__number:focus {
|
|
||||||
outline: none;
|
|
||||||
border-color: var(--accent);
|
|
||||||
}
|
|
||||||
|
|
||||||
.orbit-settings-pop__preset-group {
|
.orbit-settings-pop__preset-group {
|
||||||
display: flex;
|
display: flex;
|
||||||
@@ -12540,26 +12524,6 @@ html[data-psy-native-hidden="true"] *::after {
|
|||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
}
|
}
|
||||||
.orbit-queue-head__pending {
|
|
||||||
display: inline-flex;
|
|
||||||
align-items: center;
|
|
||||||
gap: 3px;
|
|
||||||
margin-left: auto;
|
|
||||||
padding: 1px 6px;
|
|
||||||
border-radius: 9px;
|
|
||||||
background: color-mix(in srgb, var(--accent) 12%, transparent);
|
|
||||||
border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
|
|
||||||
color: var(--text-secondary);
|
|
||||||
font-size: 10px;
|
|
||||||
font-variant-numeric: tabular-nums;
|
|
||||||
flex-shrink: 0;
|
|
||||||
}
|
|
||||||
.orbit-queue-head__pending.is-full {
|
|
||||||
color: var(--ctp-red, #f38ba8);
|
|
||||||
background: color-mix(in srgb, var(--ctp-red, #f38ba8) 14%, transparent);
|
|
||||||
border-color: color-mix(in srgb, var(--ctp-red, #f38ba8) 40%, transparent);
|
|
||||||
}
|
|
||||||
.orbit-queue-head__pending svg { color: inherit; }
|
|
||||||
|
|
||||||
.orbit-guest-queue__current {
|
.orbit-guest-queue__current {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|||||||
+4
-40
@@ -458,37 +458,20 @@ export async function leaveOrbitSession(): Promise<void> {
|
|||||||
*/
|
*/
|
||||||
/** Why a guest's suggestion would be blocked, in priority order. `null` means
|
/** Why a guest's suggestion would be blocked, in priority order. `null` means
|
||||||
* the suggestion can proceed. */
|
* the suggestion can proceed. */
|
||||||
export type OrbitSuggestGateReason = 'not-guest' | 'muted' | 'cap-reached' | null;
|
export type OrbitSuggestGateReason = 'not-guest' | 'muted' | null;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Evaluate whether the local guest is allowed to send a new suggestion right
|
* Evaluate whether the local guest is allowed to send a new suggestion right
|
||||||
* now — used by both the UI (to disable buttons / show toasts) and
|
* now — used by both the UI (to disable buttons / show toasts) and
|
||||||
* {@link suggestOrbitTrack} as a defensive check.
|
* {@link suggestOrbitTrack} as a defensive check.
|
||||||
*
|
|
||||||
* Mute check uses the host-pushed `state.suggestionBlocked` list. Cap check
|
|
||||||
* is approximate from the guest's POV: it counts every non-host entry in
|
|
||||||
* `state.queue` plus the local `pendingSuggestions` list that hasn't been
|
|
||||||
* reconciled yet. We can't subtract host-side merged/declined sets — the
|
|
||||||
* guest never sees them — so the count is conservative (over-, not under-).
|
|
||||||
*/
|
*/
|
||||||
export function evaluateOrbitSuggestGate(): { allowed: boolean; reason: OrbitSuggestGateReason } {
|
export function evaluateOrbitSuggestGate(): { allowed: boolean; reason: OrbitSuggestGateReason } {
|
||||||
const { role, state, pendingSuggestions } = useOrbitStore.getState();
|
const { role, state } = useOrbitStore.getState();
|
||||||
if (role !== 'guest' || !state) return { allowed: false, reason: 'not-guest' };
|
if (role !== 'guest' || !state) return { allowed: false, reason: 'not-guest' };
|
||||||
const username = useAuthStore.getState().getActiveServer()?.username ?? '';
|
const username = useAuthStore.getState().getActiveServer()?.username ?? '';
|
||||||
if (state.suggestionBlocked?.includes(username)) {
|
if (state.suggestionBlocked?.includes(username)) {
|
||||||
return { allowed: false, reason: 'muted' };
|
return { allowed: false, reason: 'muted' };
|
||||||
}
|
}
|
||||||
const cap = state.settings?.maxPending ?? 0;
|
|
||||||
if (cap > 0) {
|
|
||||||
// Prefer the host-pushed authoritative count when present; fall back to a
|
|
||||||
// raw queue scan for older hosts. Add the local guest's pending list on
|
|
||||||
// top — those are tracks the host hasn't swept in yet.
|
|
||||||
const knownPending = state.pendingApprovalCount
|
|
||||||
?? state.queue.filter(q => q.addedBy !== state.host).length;
|
|
||||||
if (knownPending + pendingSuggestions.length >= cap) {
|
|
||||||
return { allowed: false, reason: 'cap-reached' };
|
|
||||||
}
|
|
||||||
}
|
|
||||||
return { allowed: true, reason: null };
|
return { allowed: true, reason: null };
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -949,7 +932,6 @@ export function applyOutboxSnapshotsToState(
|
|||||||
state: OrbitState,
|
state: OrbitState,
|
||||||
snapshots: OutboxSnapshot[],
|
snapshots: OutboxSnapshot[],
|
||||||
nowMs: number = Date.now(),
|
nowMs: number = Date.now(),
|
||||||
opts?: { mergedKeys?: ReadonlySet<string>; declinedKeys?: ReadonlySet<string> },
|
|
||||||
): OrbitState {
|
): OrbitState {
|
||||||
// ── Queue additions ──
|
// ── Queue additions ──
|
||||||
// Guest outboxes are append-only from the host's POV — the host reads the
|
// Guest outboxes are append-only from the host's POV — the host reads the
|
||||||
@@ -965,35 +947,17 @@ export function applyOutboxSnapshotsToState(
|
|||||||
existingKeys.add(`${state.currentTrack.addedBy} ${state.currentTrack.trackId}`);
|
existingKeys.add(`${state.currentTrack.addedBy} ${state.currentTrack.trackId}`);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Compute remaining slots under the host's pending-approval cap. Items the
|
// Drop any new suggestion from a user the host has muted before the
|
||||||
// host has merged or declined have left the approval queue and don't
|
// dedupe scan — they shouldn't count against the queue at all.
|
||||||
// occupy a slot any more — without those sets we conservatively count
|
|
||||||
// every non-host queue entry as pending. Plus drop any new suggestion
|
|
||||||
// from a user the host has muted.
|
|
||||||
const blocked = new Set(state.suggestionBlocked ?? []);
|
const blocked = new Set(state.suggestionBlocked ?? []);
|
||||||
const cap = state.settings?.maxPending ?? 0;
|
|
||||||
const merged = opts?.mergedKeys ?? new Set<string>();
|
|
||||||
const declined = opts?.declinedKeys ?? new Set<string>();
|
|
||||||
const pendingCount = cap > 0
|
|
||||||
? state.queue.filter(q =>
|
|
||||||
q.addedBy !== state.host
|
|
||||||
&& !merged.has(suggestionKey(q))
|
|
||||||
&& !declined.has(suggestionKey(q))
|
|
||||||
).length
|
|
||||||
: 0;
|
|
||||||
let remaining = cap > 0 ? Math.max(0, cap - pendingCount) : Infinity;
|
|
||||||
|
|
||||||
const newItems: OrbitQueueItem[] = [];
|
const newItems: OrbitQueueItem[] = [];
|
||||||
outer:
|
|
||||||
for (const snap of snapshots) {
|
for (const snap of snapshots) {
|
||||||
if (blocked.has(snap.user)) continue;
|
if (blocked.has(snap.user)) continue;
|
||||||
for (const trackId of snap.trackIds) {
|
for (const trackId of snap.trackIds) {
|
||||||
if (remaining <= 0) break outer;
|
|
||||||
const key = `${snap.user} ${trackId}`;
|
const key = `${snap.user} ${trackId}`;
|
||||||
if (existingKeys.has(key)) continue;
|
if (existingKeys.has(key)) continue;
|
||||||
existingKeys.add(key);
|
existingKeys.add(key);
|
||||||
newItems.push({ trackId, addedBy: snap.user, addedAt: nowMs });
|
newItems.push({ trackId, addedBy: snap.user, addedAt: nowMs });
|
||||||
remaining--;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user