mirror of
https://github.com/trafficlunar/jellyfin-spicetify.git
synced 2026-06-13 19:07:06 +00:00
feat: settings modal + player hijack concept
This commit is contained in:
parent
8c98c2624b
commit
138c7e815c
6 changed files with 556 additions and 35 deletions
76
src/app.tsx
76
src/app.tsx
|
|
@ -1,8 +1,82 @@
|
|||
// TODO: hijack search result, use that as song URI
|
||||
|
||||
import React from "react";
|
||||
import { Api, Jellyfin } from "@jellyfin/sdk";
|
||||
import SettingsModal from "./settings";
|
||||
|
||||
const audio = new Audio("https://www.soundhelix.com/examples/mp3/SoundHelix-Song-1.mp3");
|
||||
let hijackActive = false;
|
||||
|
||||
export const jellyfin = new Jellyfin({
|
||||
clientInfo: {
|
||||
name: "Spicetify",
|
||||
version: "1.0.0",
|
||||
},
|
||||
deviceInfo: {
|
||||
name: "Spotify",
|
||||
id: "spotify", // TODO: should be unique?
|
||||
},
|
||||
});
|
||||
|
||||
export let jellyfinApi: Api | undefined;
|
||||
export const setJellyfinApi = (api: Api) => {
|
||||
jellyfinApi = api;
|
||||
};
|
||||
|
||||
async function main() {
|
||||
while (!Spicetify?.showNotification) {
|
||||
while (!Spicetify.showNotification || !Spicetify.Platform.History) {
|
||||
await new Promise((resolve) => setTimeout(resolve, 100));
|
||||
}
|
||||
|
||||
new Spicetify.Topbar.Button("Jellyfin", "podcasts", () => {
|
||||
Spicetify.PopupModal.display({
|
||||
title: "Jellyfin",
|
||||
content: React.createElement(SettingsModal) as unknown as Element,
|
||||
isLarge: false,
|
||||
});
|
||||
});
|
||||
|
||||
Spicetify.Platform.History.listen((location) => {
|
||||
if (location.pathname.startsWith("/search/")) {
|
||||
const segments = location.pathname.split("/");
|
||||
const query = segments[2];
|
||||
}
|
||||
});
|
||||
|
||||
Spicetify.Player.addEventListener("songchange", async (event) => {
|
||||
// if (event?.data.item.uri === "spotify:track:72wehM3q2RVZb4XLmAkyTr") {
|
||||
const oldVolume = Spicetify.Player.getVolume();
|
||||
await audio.play();
|
||||
|
||||
Spicetify.Player.setVolume(0);
|
||||
hijackActive = true;
|
||||
Spicetify.Player.setVolume(oldVolume);
|
||||
});
|
||||
|
||||
Spicetify.Player.addEventListener("onplaypause", async (event) => {
|
||||
if (!hijackActive) return;
|
||||
|
||||
if (event?.data.isPaused) {
|
||||
audio.pause();
|
||||
} else {
|
||||
await audio.play();
|
||||
}
|
||||
});
|
||||
|
||||
const playback = Spicetify.Platform.PlaybackAPI;
|
||||
|
||||
// Change volume of Jellyfin audio instead of Spotify audio
|
||||
playback.setVolume = new Proxy(playback.setVolume, {
|
||||
apply(target, thisArg, args) {
|
||||
if (hijackActive) {
|
||||
audio.volume = args[0];
|
||||
return;
|
||||
} else {
|
||||
return Reflect.apply(target, thisArg, args);
|
||||
}
|
||||
},
|
||||
});
|
||||
|
||||
// Show message on start.
|
||||
Spicetify.showNotification("Hello!");
|
||||
}
|
||||
|
|
|
|||
173
src/settings.tsx
Normal file
173
src/settings.tsx
Normal file
|
|
@ -0,0 +1,173 @@
|
|||
import React, { useState } from "react";
|
||||
import { getUserApi } from "@jellyfin/sdk/lib/utils/api/user-api";
|
||||
|
||||
import styles from "./styles.module.css";
|
||||
import { jellyfin, setJellyfinApi } from "./app";
|
||||
|
||||
export default function SettingsModal() {
|
||||
const [isLoggedIn, setIsLoggedIn] = useState(false);
|
||||
const [url, setUrl] = useState("");
|
||||
const [username, setUsername] = useState("");
|
||||
const [password, setPassword] = useState("");
|
||||
const [isUsingQuickConnect, setIsUsingQuickConnect] = useState(false);
|
||||
const [quickConnectCode, setQuickConnectCode] = useState("");
|
||||
|
||||
const [isFocused, setIsFocused] = useState(false);
|
||||
|
||||
const login = async () => {
|
||||
const servers = await jellyfin.discovery.getRecommendedServerCandidates(url);
|
||||
const best = jellyfin.discovery.findBestServer(servers);
|
||||
if (!best) {
|
||||
Spicetify.showNotification("Failed to connect to server!", true);
|
||||
return;
|
||||
}
|
||||
const api = jellyfin.createApi(best.address);
|
||||
const userApi = getUserApi(api);
|
||||
|
||||
const auth =
|
||||
isUsingQuickConnect && quickConnectCode.toString().length === 6
|
||||
? await userApi.authenticateWithQuickConnect({
|
||||
quickConnectDto: { Secret: "111000" },
|
||||
})
|
||||
: await userApi.authenticateUserByName({
|
||||
authenticateUserByName: { Username: username, Pw: password },
|
||||
});
|
||||
|
||||
if (!auth.data.AccessToken) {
|
||||
Spicetify.showNotification("Failed to login!", true);
|
||||
return;
|
||||
}
|
||||
|
||||
setJellyfinApi(api);
|
||||
setIsLoggedIn(true);
|
||||
};
|
||||
|
||||
if (isLoggedIn)
|
||||
return (
|
||||
<div className={styles.modal}>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="64" height="64" viewBox="0 0 512 512">
|
||||
<path fill="#ffb636" d="M378.553 355.648L45.117 500.733c-21.735 8.65-43.335-12.764-34.874-34.572l145.709-338.684" />
|
||||
<path
|
||||
fill="#ffd469"
|
||||
d="m10.243 466.161l11.58-26.916l2.977-4.543c57.597-87.744 116.038-174.952 176.475-260.768l67.765 69.46C217.91 278.496 51.89 450.063 17.115 495.571c-7.57-6.963-11.249-18.128-6.872-29.41"
|
||||
/>
|
||||
<path
|
||||
fill="#a06c33"
|
||||
d="M304.382 204.434c61.854 61.854 95.685 128.308 75.564 148.43c-20.121 20.121-86.575-13.71-148.43-75.564s-95.685-128.308-75.564-148.43s86.575 13.709 148.43 75.564"
|
||||
/>
|
||||
<path
|
||||
fill="#f7f9aa"
|
||||
d="M155.601 327.572c0 6.012-4.874 10.885-10.885 10.885s-10.885-4.873-10.885-10.885s4.873-10.885 10.885-10.885s10.885 4.873 10.885 10.885"
|
||||
/>
|
||||
<path
|
||||
fill="#ffb636"
|
||||
d="M501.986 213.16c0 8.628-6.994 15.622-15.622 15.622s-15.622-6.994-15.622-15.622s6.994-15.622 15.622-15.622s15.622 6.994 15.622 15.622M397.663 421.182c-8.628 0-15.622 6.994-15.622 15.622s6.994 15.622 15.622 15.622s15.622-6.994 15.622-15.622s-6.995-15.622-15.622-15.622"
|
||||
/>
|
||||
<path
|
||||
fill="#bea4ff"
|
||||
d="M355.949 79.523c-1.34 9.065-7.197 17.072-16.07 21.968c-6.126 3.38-13.33 5.137-20.807 5.137a49 49 0 0 1-7.117-.526c-5.288-.782-10.581.016-14.52 2.189c-1.766.974-4.8 3.105-5.293 6.438c-.492 3.333 1.796 6.251 3.203 7.694c3.058 3.135 7.725 5.381 12.849 6.22c.141.015.281.02.422.041c21.619 3.196 37.061 20.32 34.421 38.173c-1.34 9.066-7.197 17.073-16.071 21.969c-6.126 3.38-13.329 5.137-20.806 5.137a49 49 0 0 1-7.117-.526c-5.287-.783-10.582.015-14.521 2.189c-1.766.974-4.8 3.105-5.293 6.438c-.79 5.349 5.778 12.411 16.47 13.991c5.817.86 9.836 6.273 8.976 12.091c-.782 5.29-5.328 9.092-10.52 9.092q-.779 0-1.571-.116c-21.619-3.196-37.06-20.321-34.421-38.173c1.34-9.066 7.197-17.073 16.071-21.969c8.055-4.444 17.972-6.082 27.924-4.611c5.288.781 10.58-.016 14.52-2.189c1.766-.974 4.8-3.105 5.293-6.438c.777-5.262-5.577-12.171-15.963-13.898c-.17-.017-.341-.031-.512-.056c-9.951-1.472-18.971-5.908-25.395-12.493c-7.077-7.254-10.367-16.614-9.026-25.681c1.34-9.065 7.197-17.072 16.07-21.968c8.055-4.444 17.972-6.082 27.924-4.611c5.286.78 10.581-.016 14.52-2.189c1.766-.974 4.8-3.105 5.293-6.438c.492-3.333-1.796-6.251-3.203-7.694c-3.142-3.22-7.977-5.516-13.267-6.297c-5.817-.86-9.836-6.273-8.976-12.091s6.274-9.832 12.091-8.977c9.951 1.472 18.971 5.908 25.395 12.493c7.078 7.255 10.368 16.615 9.027 25.681"
|
||||
/>
|
||||
<path
|
||||
fill="#ff6e83"
|
||||
d="M81.731 159.689c0 9.777-7.926 17.703-17.703 17.703s-17.703-7.926-17.703-17.703s7.926-17.703 17.703-17.703s17.703 7.925 17.703 17.703m316.445-20.453c-11.296 0-20.452 9.157-20.452 20.452s9.157 20.452 20.452 20.452s20.452-9.157 20.452-20.452s-9.156-20.452-20.452-20.452M215.529 395.899c-11.296 0-20.452 9.157-20.452 20.452s9.157 20.452 20.452 20.452s20.452-9.157 20.452-20.452s-9.156-20.452-20.452-20.452m271.303-93.646c3.093-5.989.745-13.352-5.244-16.445c-2.388-1.232-5.238-2.868-8.538-4.761c-28.993-16.633-89.319-51.242-160.352 6.109c-5.245 4.234-6.063 11.919-1.829 17.163c4.233 5.245 11.917 6.065 17.163 1.829c58.035-46.856 104.882-19.985 132.871-3.928c3.403 1.952 6.617 3.796 9.483 5.276a12.205 12.205 0 0 0 16.446-5.243"
|
||||
/>
|
||||
<path
|
||||
fill="#59cafc"
|
||||
d="M434.834 62.776c0 6.012-4.874 10.885-10.885 10.885s-10.885-4.873-10.885-10.885s4.873-10.885 10.885-10.885c6.012-.001 10.885 4.873 10.885 10.885M46.324 11.894c-6.012 0-10.885 4.873-10.885 10.885s4.873 10.885 10.885 10.885S57.21 28.791 57.21 22.779s-4.874-10.885-10.886-10.885m170.681 142.057c1.231-2.414 2.749-5.163 4.356-8.073c8.154-14.771 19.32-34.999 19.992-58.559c.807-28.304-13.934-54.002-43.812-76.38c-5.187-3.885-12.539-2.828-16.421 2.357c-3.884 5.186-2.829 12.538 2.357 16.421c23.75 17.788 35.01 36.411 34.425 56.933c-.51 17.872-9.697 34.516-17.08 47.889c-1.701 3.083-3.309 5.994-4.713 8.747c-2.945 5.771-.654 12.836 5.116 15.781a11.7 11.7 0 0 0 5.323 1.285a11.73 11.73 0 0 0 10.457-6.401"
|
||||
/>
|
||||
</svg>
|
||||
<p className={styles.logged_in}>You're logged in!</p>
|
||||
|
||||
<select name="" id="">
|
||||
<option value="">Source</option>
|
||||
</select>
|
||||
|
||||
<hr style={{ width: "100%", margin: "1rem 0" }} className={styles.hr} />
|
||||
<button onClick={() => setIsLoggedIn(false)} className={styles.submit}>
|
||||
Log out
|
||||
</button>
|
||||
</div>
|
||||
);
|
||||
|
||||
return (
|
||||
<div className={styles.modal}>
|
||||
{isUsingQuickConnect ? (
|
||||
<div className={styles.input_container}>
|
||||
<label htmlFor="code">Code</label>
|
||||
|
||||
<div className={styles.quick_connect_wrapper}>
|
||||
<input
|
||||
id="quick-connect"
|
||||
type="text"
|
||||
inputMode="numeric"
|
||||
maxLength={6}
|
||||
value={quickConnectCode!}
|
||||
onChange={(e) => setQuickConnectCode(e.target.value.replace(/\D/g, ""))}
|
||||
onFocus={() => setIsFocused(true)}
|
||||
onBlur={() => setIsFocused(false)}
|
||||
// Force caret to always be at the end
|
||||
onKeyDown={(e) => {
|
||||
if (["ArrowLeft", "ArrowRight", "Home", "End"].includes(e.key)) {
|
||||
e.preventDefault();
|
||||
}
|
||||
}}
|
||||
// Same here
|
||||
onSelect={(e) => {
|
||||
const element = e.target as HTMLInputElement;
|
||||
element.setSelectionRange(element.value.length, element.value.length);
|
||||
}}
|
||||
className={styles.quick_connect_input}
|
||||
/>
|
||||
|
||||
{Array.from({ length: 6 }).map((_, i) => (
|
||||
<div key={i} className={`${styles.quick_connect_box} ${isFocused && quickConnectCode.length === i ? styles.quick_connect_box_active : ""}`}>
|
||||
{quickConnectCode[i]}
|
||||
</div>
|
||||
))}
|
||||
</div>
|
||||
</div>
|
||||
) : (
|
||||
<>
|
||||
<div className={styles.input_container}>
|
||||
<label htmlFor="url">URL</label>
|
||||
<input id="url" type="text" placeholder="Enter Jellyfin URL..." value={url} onChange={(e) => setUrl(e.target.value)} />
|
||||
</div>
|
||||
|
||||
<div className={styles.input_container}>
|
||||
<label htmlFor="username">Username</label>
|
||||
<input id="username" type="text" placeholder="Enter username..." value={username} onChange={(e) => setUsername(e.target.value)} />
|
||||
</div>
|
||||
|
||||
<div className={styles.input_container}>
|
||||
<label htmlFor="password">Password</label>
|
||||
<input id="password" type="password" placeholder="Enter password..." value={password} onChange={(e) => setPassword(e.target.value)} />
|
||||
</div>
|
||||
</>
|
||||
)}
|
||||
|
||||
<div className={styles.separator}>
|
||||
<hr className={styles.hr} />
|
||||
<span>or</span>
|
||||
<hr className={styles.hr} />
|
||||
</div>
|
||||
|
||||
<button
|
||||
onClick={() => {
|
||||
setIsUsingQuickConnect((prev) => {
|
||||
if (!prev) {
|
||||
document.getElementById("quick-connect")?.focus();
|
||||
}
|
||||
|
||||
return !prev;
|
||||
});
|
||||
}}
|
||||
className={`${styles.quick_connect} ${styles.button}`}
|
||||
>
|
||||
{isUsingQuickConnect ? "Username/Password" : "Quick Connect"}
|
||||
</button>
|
||||
<button onClick={login} className={styles.button}>
|
||||
Submit
|
||||
</button>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
98
src/styles.module.css
Normal file
98
src/styles.module.css
Normal file
|
|
@ -0,0 +1,98 @@
|
|||
.button {
|
||||
background-color: var(--spice-button);
|
||||
color: var(--spice-text);
|
||||
padding: 0.5rem 1rem;
|
||||
border: none;
|
||||
outline: none;
|
||||
cursor: pointer;
|
||||
width: fit-content;
|
||||
}
|
||||
|
||||
.hr {
|
||||
flex-grow: 1;
|
||||
border: none;
|
||||
border-top: 1px solid var(--spice-button-disabled);
|
||||
}
|
||||
|
||||
.modal {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.logged_in {
|
||||
font-size: 1.25rem;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
.input_container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.input_container label {
|
||||
color: var(--spice-subtext);
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
|
||||
.input_container input,
|
||||
.quick_connect_box {
|
||||
background-color: var(--spice-main-elevated);
|
||||
color: var(--spice-text);
|
||||
border: 1px solid var(--spice-card);
|
||||
padding: 0.5rem 0.6rem;
|
||||
font-size: 0.95rem;
|
||||
transition: 200ms border-color;
|
||||
}
|
||||
|
||||
.input_container input:focus,
|
||||
.quick_connect_box_active {
|
||||
border-color: var(--spice-button);
|
||||
}
|
||||
|
||||
.input_container input::placeholder {
|
||||
color: var(--spice-subtext);
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.separator {
|
||||
width: 100%;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
color: var(--spice-subtext);
|
||||
}
|
||||
|
||||
.quick_connect {
|
||||
background-color: var(--spice-main-elevated);
|
||||
}
|
||||
|
||||
.quick_connect_wrapper {
|
||||
position: relative;
|
||||
display: grid;
|
||||
grid-template-columns: repeat(6, 1fr);
|
||||
gap: 0.25rem;
|
||||
height: 3rem;
|
||||
}
|
||||
|
||||
.quick_connect_input {
|
||||
background-color: transparent !important;
|
||||
border-color: transparent !important;
|
||||
color: transparent !important;
|
||||
position: absolute;
|
||||
inset: 0;
|
||||
z-index: 5;
|
||||
}
|
||||
|
||||
.quick_connect_box {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
border-radius: 0.25rem;
|
||||
font-size: 1.25rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
54
src/types/spicetify.d.ts
vendored
54
src/types/spicetify.d.ts
vendored
|
|
@ -325,8 +325,8 @@ declare namespace Spicetify {
|
|||
*/
|
||||
container: HTMLElement;
|
||||
};
|
||||
}
|
||||
) => void
|
||||
},
|
||||
) => void,
|
||||
): void;
|
||||
/**
|
||||
* Skip to previous track.
|
||||
|
|
@ -519,19 +519,8 @@ declare namespace Spicetify {
|
|||
function put(url: string, body?: Body, headers?: Headers): Promise<Response["body"]>;
|
||||
function del(url: string, body?: Body, headers?: Headers): Promise<Response["body"]>;
|
||||
function patch(url: string, body?: Body, headers?: Headers): Promise<Response["body"]>;
|
||||
function sub(
|
||||
url: string,
|
||||
callback: (b: Response["body"]) => void,
|
||||
onError?: (e: Error) => void,
|
||||
body?: Body,
|
||||
headers?: Headers
|
||||
): Promise<Response["body"]>;
|
||||
function postSub(
|
||||
url: string,
|
||||
body: Body | null,
|
||||
callback: (b: Response["body"]) => void,
|
||||
onError?: (e: Error) => void
|
||||
): Promise<Response["body"]>;
|
||||
function sub(url: string, callback: (b: Response["body"]) => void, onError?: (e: Error) => void, body?: Body, headers?: Headers): Promise<Response["body"]>;
|
||||
function postSub(url: string, body: Body | null, callback: (b: Response["body"]) => void, onError?: (e: Error) => void): Promise<Response["body"]>;
|
||||
function request(method: Method, url: string, body?: Body, headers?: Headers): Promise<Response>;
|
||||
function resolve(method: Method, url: string, body?: Body, headers?: Headers): Promise<Response>;
|
||||
}
|
||||
|
|
@ -786,7 +775,18 @@ declare namespace Spicetify {
|
|||
* Contains vast array of internal APIs.
|
||||
* Please explore in Devtool Console.
|
||||
*/
|
||||
const Platform: any;
|
||||
const Platform: {
|
||||
PlaybackAPI: any;
|
||||
History: {
|
||||
push: (path: Location | string) => void;
|
||||
replace: (path: Location | string) => void;
|
||||
goBack: () => void;
|
||||
goForward: () => void;
|
||||
listen: (listener: (location: Location) => void) => () => void;
|
||||
entries: Location[];
|
||||
location: Location;
|
||||
};
|
||||
};
|
||||
/**
|
||||
* Queue object contains list of queuing tracks,
|
||||
* history of played tracks and current track metadata.
|
||||
|
|
@ -1833,14 +1833,7 @@ declare namespace Spicetify {
|
|||
* Create a button on the right side of the playbar
|
||||
*/
|
||||
class Button {
|
||||
constructor(
|
||||
label: string,
|
||||
icon: Icon | string,
|
||||
onClick?: (self: Button) => void,
|
||||
disabled?: boolean,
|
||||
active?: boolean,
|
||||
registerOnCreate?: boolean
|
||||
);
|
||||
constructor(label: string, icon: Icon | string, onClick?: (self: Button) => void, disabled?: boolean, active?: boolean, registerOnCreate?: boolean);
|
||||
label: string;
|
||||
icon: string;
|
||||
onClick: (self: Button) => void;
|
||||
|
|
@ -1856,14 +1849,7 @@ declare namespace Spicetify {
|
|||
* Create a widget next to track info
|
||||
*/
|
||||
class Widget {
|
||||
constructor(
|
||||
label: string,
|
||||
icon: Icon | string,
|
||||
onClick?: (self: Widget) => void,
|
||||
disabled?: boolean,
|
||||
active?: boolean,
|
||||
registerOnCreate?: boolean
|
||||
);
|
||||
constructor(label: string, icon: Icon | string, onClick?: (self: Widget) => void, disabled?: boolean, active?: boolean, registerOnCreate?: boolean);
|
||||
label: string;
|
||||
icon: string;
|
||||
onClick: (self: Widget) => void;
|
||||
|
|
@ -2056,7 +2042,7 @@ declare namespace Spicetify {
|
|||
* @return Function to handle GraphQL queries
|
||||
*/
|
||||
function Handler(
|
||||
context: Record<string, any>
|
||||
context: Record<string, any>,
|
||||
): (query: (typeof Definitions)[Query | string], variables?: Record<string, any>, context?: Record<string, any>) => Promise<any>;
|
||||
}
|
||||
|
||||
|
|
@ -2077,7 +2063,7 @@ declare namespace Spicetify {
|
|||
label?: string,
|
||||
contextUri?: string,
|
||||
sectionIndex?: number,
|
||||
dropOriginUri?: string
|
||||
dropOriginUri?: string,
|
||||
): (event: React.DragEvent, uris?: string[], label?: string, contextUri?: string, sectionIndex?: number) => void;
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue