mirror of
https://github.com/Psychotoxical/psysonic.git
synced 2026-07-22 15:25:46 +00:00
7a7a9f5e6b
111 of 122 top-level src/utils/ files move into 16 topic folders (audio, cache, cover, share, server, playback, playlist, deviceSync, waveform, mix, format, export, changelog, ui, perf, componentHelpers). True singletons with no cluster stay at the utils/ root. Pure file-move: a path-aware codemod rewrote 539 relative-import specifiers across 275 files; no logic touched. The hot-path coverage gate list (.github/frontend-hot-path-files.txt) is updated to the new paths for the 11 gated utils files — a mechanical consequence of the move, not a CI change. tsc is green.
36 lines
1.2 KiB
TypeScript
36 lines
1.2 KiB
TypeScript
import type { ServerProfile } from '../../store/authStoreTypes';
|
|
/** Host (+ port) from a server base URL, e.g. `https://music.one.com/foo` → `music.one.com`. */
|
|
export function shortHostFromServerUrl(urlRaw: string): string {
|
|
const t = urlRaw.trim();
|
|
if (!t) return '';
|
|
try {
|
|
const u = new URL(t.includes('://') ? t : `https://${t}`);
|
|
return u.host;
|
|
} catch {
|
|
return t
|
|
.replace(/^https?:\/\//i, '')
|
|
.split('/')[0]
|
|
?.split('?')[0]
|
|
?.trim() ?? t;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Label for server lists and chrome: if several servers share the same effective name,
|
|
* show `username@host` so entries stay distinguishable.
|
|
*/
|
|
export function serverListDisplayLabel(server: ServerProfile, all: ServerProfile[]): string {
|
|
const nameTrim = (server.name || '').trim();
|
|
const shortHost = shortHostFromServerUrl(server.url);
|
|
const key = nameTrim || shortHost;
|
|
const collisions = all.filter(s => {
|
|
const nt = (s.name || '').trim();
|
|
const sh = shortHostFromServerUrl(s.url);
|
|
return (nt || sh) === key;
|
|
});
|
|
if (collisions.length < 2) {
|
|
return nameTrim || shortHost || server.url.trim();
|
|
}
|
|
return `${server.username}@${shortHost}`;
|
|
}
|