mirror of
https://github.com/tubearchivist/tubearchivist-frontend.git
synced 2024-11-22 03:40:14 +00:00
Added rescan subs and start download functionality
This commit is contained in:
parent
2a69e0e319
commit
883f5dc801
@ -1,4 +1,4 @@
|
||||
import { Download } from "../types/download";
|
||||
import { Download, Task } from "../types/download";
|
||||
import { getTAUrl } from "./constants";
|
||||
|
||||
const TA_BASE_URL = getTAUrl();
|
||||
@ -107,3 +107,23 @@ export const sendMoveVideoQueuedIgnored = async (token: string, videoId: string,
|
||||
}
|
||||
return response.json();
|
||||
};
|
||||
|
||||
export const sendTasks = async (token: string, task: string): Promise<Task> => {
|
||||
var data = {
|
||||
"run": task
|
||||
};
|
||||
const response = await fetch(`${TA_BASE_URL.server}/api/task/`, {
|
||||
body: JSON.stringify(data),
|
||||
headers: {
|
||||
Accept: "application/json",
|
||||
"Content-Type": "application/json",
|
||||
Authorization: `Token ${token}`,
|
||||
mode: "no-cors",
|
||||
},
|
||||
method: "POST"
|
||||
});
|
||||
if (!response.ok) {
|
||||
throw new Error("Error running task: " + task + ".");
|
||||
}
|
||||
return response.json();
|
||||
};
|
@ -5,8 +5,7 @@ import { dehydrate, QueryClient, useQuery } from "react-query";
|
||||
import { CustomHead } from "../components/CustomHead";
|
||||
import { Layout } from "../components/Layout";
|
||||
import NextImage from "next/image";
|
||||
import { getDownloads, sendDeleteAllQueuedIgnored, sendDeleteVideoQueuedIgnored, sendMoveVideoQueuedIgnored } from "../lib/getDownloads";
|
||||
import { sendDownloads } from "../lib/getDownloads";
|
||||
import { getDownloads, sendDownloads, sendDeleteAllQueuedIgnored, sendDeleteVideoQueuedIgnored, sendMoveVideoQueuedIgnored, sendTasks } from "../lib/getDownloads";
|
||||
import RescanIcon from "../images/icon-rescan.svg";
|
||||
import DownloadIcon from "../images/icon-download.svg";
|
||||
import AddIcon from "../images/icon-add.svg";
|
||||
@ -124,6 +123,18 @@ const Download: NextPage = () => {
|
||||
.catch(error => handleSetErrorMessage(error.message));
|
||||
}
|
||||
|
||||
const handleSendTask = (session: string, task: string) => {
|
||||
sendTasks(session, task).then((response) => {
|
||||
if (response.success) {
|
||||
handleSetErrorMessage(null);
|
||||
} else {
|
||||
handleSetErrorMessage("Error running task: " + response.task + ".");
|
||||
}
|
||||
|
||||
})
|
||||
.catch(error => handleSetErrorMessage(error.message));
|
||||
}
|
||||
|
||||
return (
|
||||
<>
|
||||
<CustomHead title="Downloads" />
|
||||
@ -202,7 +213,7 @@ const Download: NextPage = () => {
|
||||
alt="rescan-icon"
|
||||
title="Rescan subscriptions"
|
||||
// className="rotate-img" // Set when rescanning
|
||||
onClick={() => console.log("rescanPending()")}
|
||||
onClick={() => handleSendTask(session.ta_token.token, "rescan_pending")}
|
||||
/>
|
||||
{/* <img id="rescan-icon" onclick="rescanPending()" src="{% static 'img/icon-rescan.svg' %}" alt="rescan-icon"></img> */}
|
||||
<p>Rescan subscriptions</p>
|
||||
@ -215,7 +226,7 @@ const Download: NextPage = () => {
|
||||
alt="download-icon"
|
||||
title="Start download"
|
||||
// className="bounce-img" // Set when video is downloading
|
||||
onClick={() => console.log("dlPending()")}
|
||||
onClick={() => handleSendTask(session.ta_token.token, "download_pending")}
|
||||
/>
|
||||
{/* <img id="download-icon" onclick="dlPending()" src="{% static 'img/icon-download.svg' %}" alt="download-icon"></img> */}
|
||||
<p>Start download</p>
|
||||
|
@ -5,6 +5,11 @@ export interface Download {
|
||||
message: string;
|
||||
}
|
||||
|
||||
export interface Task {
|
||||
success: boolean;
|
||||
task: string;
|
||||
}
|
||||
|
||||
export interface Paginate {
|
||||
page_size: number;
|
||||
page_from: number;
|
||||
|
Loading…
Reference in New Issue
Block a user