mirror of
https://github.com/tubearchivist/tubearchivist-frontend.git
synced 2024-11-22 03:40:14 +00:00
Switched to type Tasks
& message cleanup
This commit is contained in:
parent
e41ac9276b
commit
30f0dbb81a
@ -14,6 +14,7 @@ import ListViewIcon from "../images/icon-listview.svg";
|
|||||||
import StopIcon from "../images/icon-stop.svg";
|
import StopIcon from "../images/icon-stop.svg";
|
||||||
import CloseIcon from "../images/icon-close.svg";
|
import CloseIcon from "../images/icon-close.svg";
|
||||||
import { getTAUrl } from "../lib/constants";
|
import { getTAUrl } from "../lib/constants";
|
||||||
|
import { Tasks } from "../types/download";
|
||||||
|
|
||||||
const TA_BASE_URL = getTAUrl();
|
const TA_BASE_URL = getTAUrl();
|
||||||
|
|
||||||
@ -123,12 +124,12 @@ const Download: NextPage = () => {
|
|||||||
.catch(error => handleSetErrorMessage(error.message));
|
.catch(error => handleSetErrorMessage(error.message));
|
||||||
}
|
}
|
||||||
|
|
||||||
const handleSendTask = (session: string, task: string) => {
|
const handleSendTask = (session: string, task: Tasks) => {
|
||||||
sendTasks(session, task).then((response) => {
|
sendTasks(session, task).then((response) => {
|
||||||
if (response.success) {
|
if (response.success) {
|
||||||
handleSetErrorMessage(null);
|
handleSetErrorMessage(null);
|
||||||
} else {
|
} else {
|
||||||
handleSetErrorMessage("Error running task: " + response.task + ".");
|
handleSetErrorMessage(`Error running task: ${response.task}.`);
|
||||||
}
|
}
|
||||||
|
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user