* 🌊 qBittorrent settings scaffold * 🔧 Added scaffold for the qBittorrent connection form * 🔧 Some refactoring * 🔧 Cleaned up folder structure * 🔧 Fixed broken paths * 🔧 Cleaned up Search and Import component hierarchy * 🔧 More path fixes * 🔧 Tooling changes * 📝 Qbittorrent form scaffold * ⬆️ Bumped @dnd-kit deps * 🧑🏼🔧 Fixed the hostname regex * 🏗️ Adding fields to the settings form * 🔧 Formatting and more layout changes * 🔧 Added Prowlarr settings items in JSON * 📝 Purified Card Component * 📝 Abstracted connection form into a component * 🏗️ Reorganized tabs * Migrating from Redux to RTK-query * ⬇️ Fetched qBittorrent settings * 🏗️ Trying out react-query * 🧩 Added react-query query to qBittorrentSettings page * 📝 qbittorrent form RU actions first draft * 🏗️ Added loading state check * 🏗 Added error check state * 🏗️ Refactored AirDCPP context using react-query * 🏗️ Refactoring AirDCPP Settings Form with react-query * 🔧 Removed context * 🔧 Removing context from AirDCPP settings page * 🔧 Fixed early init error on the store * 🐛 Debugging AirDCPP Settings Form page * 🧸 Zustand-ified AirDCPP Form * ❌ AirDCPP code cleaned up from App.tsx * ➕ Re-added yarn.lock
109 lines
3.2 KiB
TypeScript
109 lines
3.2 KiB
TypeScript
import { isEmpty, isUndefined } from "lodash";
|
|
import React, { createContext, useEffect, useState } from "react";
|
|
import { useQuery, useMutation } from "@tanstack/react-query";
|
|
import { useStore } from "../store/index";
|
|
import AirDCPPSocket from "../services/DcppSearchService";
|
|
import axios from "axios";
|
|
|
|
const AirDCPPSocketContextProvider = ({ children }) => {
|
|
const { getState, setState } = useStore;
|
|
// setter for settings for use in the context consumer
|
|
const setSettings = (settingsObject) => {
|
|
persistSettings({
|
|
...airDCPPState,
|
|
airDCPPState: {
|
|
settings: settingsObject,
|
|
socket: {},
|
|
socketConnectionInformation: {},
|
|
},
|
|
});
|
|
};
|
|
// Initial state for AirDC++ configuration
|
|
const initState = {
|
|
airDCPPState: {
|
|
settings: {},
|
|
socket: {},
|
|
socketConnectionInformation: {},
|
|
},
|
|
setSettings: setSettings,
|
|
};
|
|
const [airDCPPState, persistSettings] = useState(initState);
|
|
|
|
// 1. get settings from mongo
|
|
const { data, isLoading, isError } = useQuery({
|
|
queryKey: ["settings"],
|
|
queryFn: async () =>
|
|
await axios({
|
|
url: "http://localhost:3000/api/settings/getAllSettings",
|
|
method: "GET",
|
|
}),
|
|
});
|
|
|
|
const directConnectConfiguration = data?.data.directConnect.client.host;
|
|
|
|
// 2. If available, init AirDC++ Socket with those settings
|
|
useEffect(() => {
|
|
if (!isEmpty(directConnectConfiguration)) {
|
|
initializeAirDCPPSocket(directConnectConfiguration);
|
|
}
|
|
}, [directConnectConfiguration]);
|
|
|
|
// Method to init AirDC++ Socket with supplied settings
|
|
const initializeAirDCPPSocket = async (configuration) => {
|
|
console.log("[AirDCPP]: Initializing socket...");
|
|
|
|
const initializedAirDCPPSocket = new AirDCPPSocket({
|
|
protocol: `${configuration.protocol}`,
|
|
hostname: `${configuration.hostname}:${configuration.port}`,
|
|
username: `${configuration.username}`,
|
|
password: `${configuration.password}`,
|
|
});
|
|
|
|
// Set up connect and disconnect handlers
|
|
initializedAirDCPPSocket.onConnected = (sessionInfo) => {
|
|
// update global state with socket connection status
|
|
setState({
|
|
airDCPPSocketConnected: true,
|
|
});
|
|
};
|
|
initializedAirDCPPSocket.onDisconnected = async (
|
|
reason,
|
|
code,
|
|
wasClean,
|
|
) => {
|
|
// update global state with socket connection status
|
|
setState({
|
|
disconnectionInfo: { reason, code, wasClean },
|
|
airDCPPSocketConnected: false,
|
|
});
|
|
};
|
|
// Attempt connection
|
|
const socketConnectionInformation =
|
|
await initializedAirDCPPSocket.connect();
|
|
|
|
// update the state with the new socket connection information
|
|
persistSettings({
|
|
...airDCPPState,
|
|
airDCPPState: {
|
|
settings: configuration,
|
|
socket: initializedAirDCPPSocket,
|
|
socketConnectionInformation,
|
|
},
|
|
});
|
|
};
|
|
|
|
console.log("connected?", getState());
|
|
// the Provider gives access to the context to its children
|
|
return (
|
|
<AirDCPPSocketContext.Provider value={airDCPPState}>
|
|
{children}
|
|
</AirDCPPSocketContext.Provider>
|
|
);
|
|
};
|
|
const AirDCPPSocketContext = createContext({
|
|
airDCPPState: {},
|
|
saveSettings: () => {},
|
|
});
|
|
|
|
export { AirDCPPSocketContext, AirDCPPSocketContextProvider };
|