mirror of
https://github.com/Drop-OSS/drop-app.git
synced 2025-11-13 00:02:41 +10:00
70 lines
1.7 KiB
Vue
70 lines
1.7 KiB
Vue
<template>
|
|
<button
|
|
class="w-full rounded-md p-4 bg-blue-600 text-white"
|
|
@click="queueGameWrapper"
|
|
>
|
|
Queue Game Download
|
|
</button>
|
|
<input placeholder="GAME ID" v-model="gameId" />
|
|
<input placeholder="VERSION NAME" v-model="versionName" />
|
|
<button
|
|
class="w-full rounded-md p-4 bg-blue-600 text-white"
|
|
@click="startGameDownloadsWrapper"
|
|
>
|
|
Start Game Downloads
|
|
</button>
|
|
<button
|
|
class="w-full rounded-md p-4 bg-blue-600 text-white"
|
|
@click="cancelGameDownloadWrapper"
|
|
>
|
|
Cancel game download
|
|
</button>
|
|
</template>
|
|
<script setup lang="ts">
|
|
import { invoke } from "@tauri-apps/api/core";
|
|
|
|
const gameId = ref("");
|
|
const versionName = ref("");
|
|
|
|
async function queueGame() {
|
|
await invoke("queue_game_download", {
|
|
gameId: gameId.value,
|
|
gameVersion: versionName.value,
|
|
maxThreads: 12,
|
|
});
|
|
console.log("Requested game from FE");
|
|
}
|
|
function queueGameWrapper() {
|
|
console.log("Wrapper started");
|
|
queueGame()
|
|
.then(() => {})
|
|
.catch((e) => {
|
|
console.log(e);
|
|
});
|
|
}
|
|
async function startGameDownloads() {
|
|
console.log("Downloading Games");
|
|
await invoke("start_game_downloads", { maxThreads: 4 })
|
|
console.log("Finished downloading games");
|
|
}
|
|
function startGameDownloadsWrapper() {
|
|
startGameDownloads()
|
|
.then(() => {})
|
|
.catch((e) => {
|
|
console.log(e)
|
|
})
|
|
}
|
|
async function cancelGameDownload() {
|
|
console.log("Cancelling game download");
|
|
await invoke("stop_specific_game_download", { gameId: gameId.value })
|
|
}
|
|
function cancelGameDownloadWrapper() {
|
|
console.log("Triggered game cancel wrapper");
|
|
cancelGameDownload()
|
|
.then(() => {})
|
|
.catch((e) => {
|
|
console.log(e)
|
|
})
|
|
}
|
|
</script>
|