🪢 Wiring up to addTorrent endpoint
This commit is contained in:
@@ -3,12 +3,33 @@ import React, { useCallback, ReactElement, useEffect, useState } from "react";
|
|||||||
import { useQuery, useQueryClient } from "@tanstack/react-query";
|
import { useQuery, useQueryClient } from "@tanstack/react-query";
|
||||||
import axios from "axios";
|
import axios from "axios";
|
||||||
import { Form, Field } from "react-final-form";
|
import { Form, Field } from "react-final-form";
|
||||||
import { PROWLARR_SERVICE_BASE_URI } from "../../constants/endpoints";
|
import {
|
||||||
|
PROWLARR_SERVICE_BASE_URI,
|
||||||
|
QBITTORRENT_SERVICE_BASE_URI,
|
||||||
|
} from "../../constants/endpoints";
|
||||||
|
import { isEmpty, isNil } from "lodash";
|
||||||
|
|
||||||
export const TorrentSearchPanel = (props): ReactElement => {
|
export const TorrentSearchPanel = (props): ReactElement => {
|
||||||
const [prowlarrSettingsData, setProwlarrSettingsData] = useState({});
|
const [prowlarrSettingsData, setProwlarrSettingsData] = useState({});
|
||||||
|
const [searchTerm, setSearchTerm] = useState("");
|
||||||
|
const [torrentToDownload, setTorrentToDownload] = useState([]);
|
||||||
|
|
||||||
const { data } = useQuery({
|
const { data: qbittorrentConnectionResult } = useQuery({
|
||||||
|
queryFn: async () =>
|
||||||
|
axios({
|
||||||
|
url: `${QBITTORRENT_SERVICE_BASE_URI}/connect`,
|
||||||
|
method: "POST",
|
||||||
|
data: {
|
||||||
|
hostname: "localhost",
|
||||||
|
protocol: "http",
|
||||||
|
port: "8080",
|
||||||
|
username: "admin",
|
||||||
|
password: "password",
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
queryKey: ["qbittorrentConnection"],
|
||||||
|
});
|
||||||
|
const { data, isSuccess } = useQuery({
|
||||||
queryFn: async () =>
|
queryFn: async () =>
|
||||||
axios({
|
axios({
|
||||||
url: `${PROWLARR_SERVICE_BASE_URI}/search`,
|
url: `${PROWLARR_SERVICE_BASE_URI}/search`,
|
||||||
@@ -18,25 +39,46 @@ export const TorrentSearchPanel = (props): ReactElement => {
|
|||||||
apiKey: "c4f42e265fb044dc81f7e88bd41c3367",
|
apiKey: "c4f42e265fb044dc81f7e88bd41c3367",
|
||||||
offset: 0,
|
offset: 0,
|
||||||
categories: [7030],
|
categories: [7030],
|
||||||
query: "the darkness",
|
query: searchTerm,
|
||||||
host: "localhost",
|
host: "localhost",
|
||||||
limit: 100,
|
limit: 100,
|
||||||
type: "search",
|
type: "search",
|
||||||
indexerIds: [2],
|
indexerIds: [2],
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
queryKey: ["prowlarrSettingsData"],
|
queryKey: ["prowlarrSettingsData", searchTerm],
|
||||||
|
enabled: searchTerm !== "",
|
||||||
});
|
});
|
||||||
console.log(data?.data);
|
|
||||||
|
const { data: addTorrentResult } = useQuery({
|
||||||
|
queryFn: async () =>
|
||||||
|
axios({
|
||||||
|
url: `${QBITTORRENT_SERVICE_BASE_URI}/addTorrent`,
|
||||||
|
method: "POST",
|
||||||
|
data: {
|
||||||
|
torrentToDownload,
|
||||||
|
},
|
||||||
|
}),
|
||||||
|
queryKey: ["addTorrentResult", torrentToDownload],
|
||||||
|
enabled: !isEmpty(torrentToDownload),
|
||||||
|
});
|
||||||
|
console.log(addTorrentResult);
|
||||||
|
const searchProwlarrIndexer = (evt) => {
|
||||||
|
setSearchTerm(evt.searchTerm);
|
||||||
|
};
|
||||||
|
const downloadTorrent = (evt) => {
|
||||||
|
console.log(evt);
|
||||||
|
setTorrentToDownload(evt);
|
||||||
|
};
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="mt-5">
|
<div className="mt-5">
|
||||||
<Form
|
<Form
|
||||||
onSubmit={() => {}}
|
onSubmit={searchProwlarrIndexer}
|
||||||
initialValues={{}}
|
initialValues={{}}
|
||||||
render={({ handleSubmit, form, submitting, pristine, values }) => (
|
render={({ handleSubmit, form, submitting, pristine, values }) => (
|
||||||
<form onSubmit={handleSubmit}>
|
<form onSubmit={handleSubmit}>
|
||||||
<Field name="issueName">
|
<Field name="searchTerm">
|
||||||
{({ input, meta }) => {
|
{({ input, meta }) => {
|
||||||
return (
|
return (
|
||||||
<div className="max-w-fit">
|
<div className="max-w-fit">
|
||||||
@@ -70,6 +112,24 @@ export const TorrentSearchPanel = (props): ReactElement => {
|
|||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
{/* results */}
|
||||||
|
<ul>
|
||||||
|
{isSuccess &&
|
||||||
|
data?.data.map((result, idx) => {
|
||||||
|
return (
|
||||||
|
<li key={idx}>
|
||||||
|
<p>{result.fileName}</p>
|
||||||
|
<p>{result.indexer}</p>
|
||||||
|
<button
|
||||||
|
className="sm:mt-0 min-w-fit rounded-lg border border-green-400 dark:border-green-200 bg-green-200 px-3 py-1 text-gray-500 hover:bg-transparent hover:text-green-600 focus:outline-none focus:ring active:text-indigo-500"
|
||||||
|
onClick={() => downloadTorrent(result.downloadUrl)}
|
||||||
|
>
|
||||||
|
Download
|
||||||
|
</button>
|
||||||
|
</li>
|
||||||
|
);
|
||||||
|
})}
|
||||||
|
</ul>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -1,9 +1,7 @@
|
|||||||
import React, { useCallback, ReactElement, useState } from "react";
|
import React, { useCallback, ReactElement, useState } from "react";
|
||||||
import { isNil, isEmpty } from "lodash";
|
import { isNil, isEmpty } from "lodash";
|
||||||
import { IExtractedComicBookCoverFile, RootState } from "threetwo-ui-typings";
|
import { IExtractedComicBookCoverFile, RootState } from "threetwo-ui-typings";
|
||||||
import { importToDB } from "../../actions/fileops.actions";
|
|
||||||
import { comicinfoAPICall } from "../../actions/comicinfo.actions";
|
|
||||||
import { search } from "../../services/api/SearchApi";
|
|
||||||
import { Form, Field } from "react-final-form";
|
import { Form, Field } from "react-final-form";
|
||||||
import Card from "../shared/Carda";
|
import Card from "../shared/Carda";
|
||||||
import ellipsize from "ellipsize";
|
import ellipsize from "ellipsize";
|
||||||
@@ -27,7 +25,6 @@ export const Search = ({}: ISearchProps): ReactElement => {
|
|||||||
const [comicVineMetadata, setComicVineMetadata] = useState({});
|
const [comicVineMetadata, setComicVineMetadata] = useState({});
|
||||||
const getCVSearchResults = (searchQuery) => {
|
const getCVSearchResults = (searchQuery) => {
|
||||||
setSearchQuery(searchQuery.search);
|
setSearchQuery(searchQuery.search);
|
||||||
// queryClient.invalidateQueries({ queryKey: ["comicvineSearchResults"] });
|
|
||||||
};
|
};
|
||||||
|
|
||||||
const {
|
const {
|
||||||
@@ -146,6 +143,7 @@ export const Search = ({}: ISearchProps): ReactElement => {
|
|||||||
)}
|
)}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
{isLoading && <>Loading kaka...</>}
|
||||||
{!isNil(comicVineSearchResults?.data.results) &&
|
{!isNil(comicVineSearchResults?.data.results) &&
|
||||||
!isEmpty(comicVineSearchResults?.data.results) ? (
|
!isEmpty(comicVineSearchResults?.data.results) ? (
|
||||||
<div className="mx-auto max-w-screen-xl px-4 py-4 sm:px-6 sm:py-8 lg:px-8">
|
<div className="mx-auto max-w-screen-xl px-4 py-4 sm:px-6 sm:py-8 lg:px-8">
|
||||||
|
|||||||
Reference in New Issue
Block a user