CodeReview Changes

This commit is contained in:
2026-02-11 20:46:07 +11:00
parent cd35fee3f0
commit b27f0ca165
5 changed files with 78 additions and 54 deletions
Submodule Reference/BetterLyrics deleted from d6393c6739
Submodule Reference/applemusic-like-lyrics deleted from 48fb050d2f
Submodule Reference/luna-plugins deleted from 29204beb93
+46 -25
View File
@@ -112,7 +112,8 @@ export const Settings = () => {
desc="Enable glowing effect for lyrics & Font Styling Changes" desc="Enable glowing effect for lyrics & Font Styling Changes"
checked={lyricsGlowEnabled} checked={lyricsGlowEnabled}
onChange={(_: unknown, checked: boolean) => { onChange={(_: unknown, checked: boolean) => {
setLyricsGlowEnabled((settings.lyricsGlowEnabled = checked)); settings.lyricsGlowEnabled = checked;
setLyricsGlowEnabled(checked);
// Update styles immediately when setting changes // Update styles immediately when setting changes
if ((window as any).updateRadiantLyricsStyles) { if ((window as any).updateRadiantLyricsStyles) {
(window as any).updateRadiantLyricsStyles(); (window as any).updateRadiantLyricsStyles();
@@ -124,7 +125,8 @@ export const Settings = () => {
desc="Apply glow to the track title" desc="Apply glow to the track title"
checked={trackTitleGlow} checked={trackTitleGlow}
onChange={(_: unknown, checked: boolean) => { onChange={(_: unknown, checked: boolean) => {
setTrackTitleGlow((settings.trackTitleGlow = checked)); settings.trackTitleGlow = checked;
setTrackTitleGlow(checked);
if ((window as any).updateRadiantLyricsStyles) { if ((window as any).updateRadiantLyricsStyles) {
(window as any).updateRadiantLyricsStyles(); (window as any).updateRadiantLyricsStyles();
} }
@@ -139,7 +141,8 @@ export const Settings = () => {
step={1} step={1}
value={textGlow} value={textGlow}
onNumber={(value: number) => { onNumber={(value: number) => {
setTextGlow((settings.textGlow = value)); settings.textGlow = value;
setTextGlow(value);
// Update variables immediately when setting changes // Update variables immediately when setting changes
if ((window as any).updateRadiantLyricsTextGlow) { if ((window as any).updateRadiantLyricsTextGlow) {
(window as any).updateRadiantLyricsTextGlow(); (window as any).updateRadiantLyricsTextGlow();
@@ -152,7 +155,8 @@ export const Settings = () => {
desc="Adds a dropdown to the Lyrics tab that auto-switches to Play Queue when lyrics aren't available" desc="Adds a dropdown to the Lyrics tab that auto-switches to Play Queue when lyrics aren't available"
checked={stickyLyricsFeature} checked={stickyLyricsFeature}
onChange={(_: unknown, checked: boolean) => { onChange={(_: unknown, checked: boolean) => {
setStickyLyricsFeature((settings.stickyLyricsFeature = checked)); settings.stickyLyricsFeature = checked;
setStickyLyricsFeature(checked);
if ((window as any).updateStickyLyricsFeature) { if ((window as any).updateStickyLyricsFeature) {
(window as any).updateStickyLyricsFeature(); (window as any).updateStickyLyricsFeature();
} }
@@ -163,7 +167,8 @@ export const Settings = () => {
desc="Enable hide/unhide UI functionality with toggle buttons" desc="Enable hide/unhide UI functionality with toggle buttons"
checked={hideUIEnabled} checked={hideUIEnabled}
onChange={(_: unknown, checked: boolean) => { onChange={(_: unknown, checked: boolean) => {
setHideUIEnabled((settings.hideUIEnabled = checked)); settings.hideUIEnabled = checked;
setHideUIEnabled(checked);
}} }}
/> />
{hideUIEnabled && ( {hideUIEnabled && (
@@ -173,7 +178,8 @@ export const Settings = () => {
checked={playerBarVisible} checked={playerBarVisible}
onChange={(_: unknown, checked: boolean) => { onChange={(_: unknown, checked: boolean) => {
console.log("Player Bar Visibility:", checked ? "visible" : "hidden"); console.log("Player Bar Visibility:", checked ? "visible" : "hidden");
setPlayerBarVisible((settings.playerBarVisible = checked)); settings.playerBarVisible = checked;
setPlayerBarVisible(checked);
// Update styles immediately when setting changes // Update styles immediately when setting changes
if ((window as any).updateRadiantLyricsStyles) { if ((window as any).updateRadiantLyricsStyles) {
(window as any).updateRadiantLyricsStyles(); (window as any).updateRadiantLyricsStyles();
@@ -186,7 +192,8 @@ export const Settings = () => {
desc="Floating rounded player bar with backdrop blur" desc="Floating rounded player bar with backdrop blur"
checked={floatingPlayerBar} checked={floatingPlayerBar}
onChange={(_: unknown, checked: boolean) => { onChange={(_: unknown, checked: boolean) => {
setFloatingPlayerBar((settings.floatingPlayerBar = checked)); settings.floatingPlayerBar = checked;
setFloatingPlayerBar(checked);
if ((window as any).updateRadiantLyricsStyles) { if ((window as any).updateRadiantLyricsStyles) {
(window as any).updateRadiantLyricsStyles(); (window as any).updateRadiantLyricsStyles();
} }
@@ -202,7 +209,8 @@ export const Settings = () => {
step={1} step={1}
value={playerBarRadius} value={playerBarRadius}
onNumber={(value: number) => { onNumber={(value: number) => {
setPlayerBarRadius((settings.playerBarRadius = value)); settings.playerBarRadius = value;
setPlayerBarRadius(value);
(window as any).updateRadiantLyricsPlayerBarTint?.(); (window as any).updateRadiantLyricsPlayerBarTint?.();
}} }}
/> />
@@ -214,7 +222,8 @@ export const Settings = () => {
step={1} step={1}
value={playerBarSpacing} value={playerBarSpacing}
onNumber={(value: number) => { onNumber={(value: number) => {
setPlayerBarSpacing((settings.playerBarSpacing = value)); settings.playerBarSpacing = value;
setPlayerBarSpacing(value);
(window as any).updateRadiantLyricsPlayerBarTint?.(); (window as any).updateRadiantLyricsPlayerBarTint?.();
}} }}
/> />
@@ -288,12 +297,14 @@ export const Settings = () => {
step={1} step={1}
value={playerBarTint} value={playerBarTint}
onNumber={(value: number) => { onNumber={(value: number) => {
setPlayerBarTint((settings.playerBarTint = value)); settings.playerBarTint = value;
setPlayerBarTint(value);
(window as any).updateRadiantLyricsPlayerBarTint?.(); (window as any).updateRadiantLyricsPlayerBarTint?.();
}} }}
/> />
{/* Color swatch — positioned just left of the value box */} {/* Color swatch — positioned just left of the value box */}
<button <button
type="button"
onClick={() => showTintColorPicker ? closeTintColorPicker() : openTintColorPicker()} onClick={() => showTintColorPicker ? closeTintColorPicker() : openTintColorPicker()}
style={{ style={{
width: "28px", width: "28px",
@@ -360,12 +371,13 @@ export const Settings = () => {
const isHovered = tintHoveredColorIndex === index; const isHovered = tintHoveredColorIndex === index;
return ( return (
<div <div
kwey={index} key={color}
style={{ position: "relative", width: "32px", height: "32px", cursor: "pointer" }} style={{ position: "relative", width: "32px", height: "32px", cursor: "pointer" }}
onMouseEnter={() => setTintHoveredColorIndex(index)} onMouseEnter={() => setTintHoveredColorIndex(index)}
onMouseLeave={() => setTintHoveredColorIndex(null)} onMouseLeave={() => setTintHoveredColorIndex(null)}
> >
<button <button
type="button"
onClick={() => { updateTintColor(color); closeTintColorPicker(); }} onClick={() => { updateTintColor(color); closeTintColorPicker(); }}
style={{ style={{
width: "100%", width: "100%",
@@ -381,6 +393,7 @@ export const Settings = () => {
/> />
{isCustomColor && ( {isCustomColor && (
<button <button
type="button"
onClick={(e) => { e.stopPropagation(); removeTintCustomColor(color); }} onClick={(e) => { e.stopPropagation(); removeTintCustomColor(color); }}
style={{ style={{
position: "absolute", position: "absolute",
@@ -437,6 +450,7 @@ export const Settings = () => {
}} }}
/> />
<button <button
type="button"
onClick={() => { updateTintColor(tintCustomInput); addTintCustomColor(); }} onClick={() => { updateTintColor(tintCustomInput); addTintCustomColor(); }}
style={{ style={{
width: "32px", height: "32px", width: "32px", height: "32px",
@@ -460,6 +474,7 @@ export const Settings = () => {
</div> </div>
<button <button
type="button"
onClick={closeTintColorPicker} onClick={closeTintColorPicker}
style={{ style={{
width: "100%", width: "100%",
@@ -489,9 +504,8 @@ export const Settings = () => {
"Spinning Cover Everywhere:", "Spinning Cover Everywhere:",
checked ? "enabled" : "disabled", checked ? "enabled" : "disabled",
); );
setCoverEverywhere( settings.CoverEverywhere = checked;
(settings.CoverEverywhere = checked), setCoverEverywhere(checked);
);
// Update styles immediately when setting changes // Update styles immediately when setting changes
if ((window as any).updateRadiantLyricsGlobalBackground) { if ((window as any).updateRadiantLyricsGlobalBackground) {
(window as any).updateRadiantLyricsGlobalBackground(); (window as any).updateRadiantLyricsGlobalBackground();
@@ -505,7 +519,8 @@ export const Settings = () => {
checked={performanceMode} checked={performanceMode}
onChange={(_: unknown, checked: boolean) => { onChange={(_: unknown, checked: boolean) => {
console.log("Performance Mode:", checked ? "enabled" : "disabled"); console.log("Performance Mode:", checked ? "enabled" : "disabled");
setPerformanceMode((settings.performanceMode = checked)); settings.performanceMode = checked;
setPerformanceMode(checked);
// Update background animations immediately when setting changes // Update background animations immediately when setting changes
if ((window as any).updateRadiantLyricsGlobalBackground) { if ((window as any).updateRadiantLyricsGlobalBackground) {
(window as any).updateRadiantLyricsGlobalBackground(); (window as any).updateRadiantLyricsGlobalBackground();
@@ -526,7 +541,8 @@ export const Settings = () => {
"Background Cover Spin:", "Background Cover Spin:",
checked ? "enabled" : "disabled", checked ? "enabled" : "disabled",
); );
setspinningArt((settings.spinningArt = checked)); settings.spinningArt = checked;
setspinningArt(checked);
if ((window as any).updateRadiantLyricsGlobalBackground) { if ((window as any).updateRadiantLyricsGlobalBackground) {
(window as any).updateRadiantLyricsGlobalBackground(); (window as any).updateRadiantLyricsGlobalBackground();
} }
@@ -548,7 +564,8 @@ export const Settings = () => {
step={1} step={1}
value={backgroundScale} value={backgroundScale}
onNumber={(value: number) => { onNumber={(value: number) => {
setBackgroundScale((settings.backgroundScale = value)); settings.backgroundScale = value;
setBackgroundScale(value);
if ((window as any).updateRadiantLyricsGlobalBackground) { if ((window as any).updateRadiantLyricsGlobalBackground) {
(window as any).updateRadiantLyricsGlobalBackground(); (window as any).updateRadiantLyricsGlobalBackground();
} }
@@ -570,7 +587,8 @@ export const Settings = () => {
step={1} step={1}
value={backgroundRadius} value={backgroundRadius}
onNumber={(value: number) => { onNumber={(value: number) => {
setBackgroundRadius((settings.backgroundRadius = value)); settings.backgroundRadius = value;
setBackgroundRadius(value);
if ((window as any).updateRadiantLyricsGlobalBackground) { if ((window as any).updateRadiantLyricsGlobalBackground) {
(window as any).updateRadiantLyricsGlobalBackground(); (window as any).updateRadiantLyricsGlobalBackground();
} }
@@ -592,7 +610,8 @@ export const Settings = () => {
step={1} step={1}
value={backgroundContrast} value={backgroundContrast}
onNumber={(value: number) => { onNumber={(value: number) => {
setBackgroundContrast((settings.backgroundContrast = value)); settings.backgroundContrast = value;
setBackgroundContrast(value);
if ((window as any).updateRadiantLyricsGlobalBackground) { if ((window as any).updateRadiantLyricsGlobalBackground) {
(window as any).updateRadiantLyricsGlobalBackground(); (window as any).updateRadiantLyricsGlobalBackground();
} }
@@ -615,7 +634,8 @@ export const Settings = () => {
value={backgroundBlur} value={backgroundBlur}
onNumber={(value: number) => { onNumber={(value: number) => {
console.log("Background Blur:", value); console.log("Background Blur:", value);
setBackgroundBlur((settings.backgroundBlur = value)); settings.backgroundBlur = value;
setBackgroundBlur(value);
if ((window as any).updateRadiantLyricsGlobalBackground) { if ((window as any).updateRadiantLyricsGlobalBackground) {
(window as any).updateRadiantLyricsGlobalBackground(); (window as any).updateRadiantLyricsGlobalBackground();
} }
@@ -638,7 +658,8 @@ export const Settings = () => {
value={backgroundBrightness} value={backgroundBrightness}
onNumber={(value: number) => { onNumber={(value: number) => {
console.log("Background Brightness:", value); console.log("Background Brightness:", value);
setBackgroundBrightness((settings.backgroundBrightness = value)); settings.backgroundBrightness = value;
setBackgroundBrightness(value);
if ((window as any).updateRadiantLyricsGlobalBackground) { if ((window as any).updateRadiantLyricsGlobalBackground) {
(window as any).updateRadiantLyricsGlobalBackground(); (window as any).updateRadiantLyricsGlobalBackground();
} }
@@ -661,7 +682,8 @@ export const Settings = () => {
value={spinSpeed} value={spinSpeed}
onNumber={(value: number) => { onNumber={(value: number) => {
console.log("Spin Speed:", value); console.log("Spin Speed:", value);
setSpinSpeed((settings.spinSpeed = value)); settings.spinSpeed = value;
setSpinSpeed(value);
if ((window as any).updateRadiantLyricsGlobalBackground) { if ((window as any).updateRadiantLyricsGlobalBackground) {
(window as any).updateRadiantLyricsGlobalBackground(); (window as any).updateRadiantLyricsGlobalBackground();
} }
@@ -684,9 +706,8 @@ export const Settings = () => {
"Settings Affect Now Playing:", "Settings Affect Now Playing:",
checked ? "enabled" : "disabled", checked ? "enabled" : "disabled",
); );
setSettingsAffectNowPlaying( settings.settingsAffectNowPlaying = checked;
(settings.settingsAffectNowPlaying = checked), setSettingsAffectNowPlaying(checked);
);
// Update Now Playing background immediately when setting changes // Update Now Playing background immediately when setting changes
if ((window as any).updateRadiantLyricsNowPlayingBackground) { if ((window as any).updateRadiantLyricsNowPlayingBackground) {
(window as any).updateRadiantLyricsNowPlayingBackground(); (window as any).updateRadiantLyricsNowPlayingBackground();
+7 -1
View File
@@ -40,7 +40,13 @@ if (settings.lyricsGlowEnabled) {
// Hex color to RGB // Hex color to RGB
// (i'm deranged and love Hexadecimal) // (i'm deranged and love Hexadecimal)
const hexToRgb = (hex: string): { r: number; g: number; b: number } => { const hexToRgb = (hex: string): { r: number; g: number; b: number } => {
const cleaned = (hex || "#000000").replace("#", ""); let cleaned = (hex || "#000000").replace("#", "");
if (cleaned.length === 3) {
cleaned = cleaned[0] + cleaned[0] + cleaned[1] + cleaned[1] + cleaned[2] + cleaned[2];
}
if (cleaned.length !== 6) {
return { r: 0, g: 0, b: 0 };
}
return { return {
r: parseInt(cleaned.substring(0, 2), 16) || 0, r: parseInt(cleaned.substring(0, 2), 16) || 0,
g: parseInt(cleaned.substring(2, 4), 16) || 0, g: parseInt(cleaned.substring(2, 4), 16) || 0,