feat: setting for hijacking audio

Also refactor to split settings into components

and add a notification telling user extension hasn't loaded when trying to click the topbar button
This commit is contained in:
trafficlunar 2026-03-07 21:40:14 +00:00
parent 71c62c3f07
commit c609941df0
11 changed files with 459 additions and 274 deletions

View file

@ -0,0 +1,59 @@
import React, { useState } from "react";
import * as jellyfin from "../../jellyfin";
import { getUserApi } from "@jellyfin/sdk/lib/utils/api/user-api";
import { View } from "../index";
import LoadingIndicatorButton from "../loading-indicator-button";
import styles from "../../styles.module.css";
interface Props {
setView: React.Dispatch<React.SetStateAction<View>>;
}
export default function PasswordView({ setView }: Props) {
const [isLoading, setIsLoading] = useState(false);
const [username, setUsername] = useState("");
const [password, setPassword] = useState("");
const login = async () => {
if (!jellyfin.api) return;
setIsLoading(true);
const userApi = getUserApi(jellyfin.api);
const auth = await userApi.authenticateUserByName({ authenticateUserByName: { Username: username, Pw: password } });
if (!auth.data.AccessToken) {
Spicetify.showNotification("Failed to login!", true);
setIsLoading(false);
return;
}
jellyfin.api.accessToken = auth.data.AccessToken;
Spicetify.LocalStorage.set("jellyfin-token", auth.data.AccessToken);
const user = await getUserApi(jellyfin.api).getCurrentUser();
if (user.data.Id) jellyfin.setUser(user.data.Id);
setView("settings");
setIsLoading(false);
};
return (
<>
<div className={styles.inputContainer}>
<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.inputContainer}>
<label htmlFor="password">Password</label>
<input id="password" type="password" placeholder="Enter password..." value={password} onChange={(e) => setPassword(e.target.value)} />
</div>
<LoadingIndicatorButton onClick={login} isLoading={isLoading}>
Log in
</LoadingIndicatorButton>
</>
);
}