feat(downloads): Generic function to set download state

Signed-off-by: quexeky <git@quexeky.dev>
This commit is contained in:
quexeky
2024-11-09 20:15:04 +11:00
parent 8204795ba6
commit f10d92d623
4 changed files with 30 additions and 3 deletions

View File

@ -37,6 +37,13 @@
>
Resume game download
</button>
<button
class="w-full rounded-md p-4 bg-blue-600 text-white"
@click="setGameDownloadWrapper"
>
Set game download
</button>
</template>
<script setup lang="ts">
import { invoke } from "@tauri-apps/api/core";
@ -118,6 +125,16 @@ function resumeGameDownloadWrapper() {
.catch((e) => {
console.log(e)
})
}
async function setGameDownload() {
console.log("Setting game download status");
await invoke("set_download_state", { gameId: gameId.value, status: "Paused" })
}
function setGameDownloadWrapper() {
setGameDownload()
.then(() => {})
.catch((e) => {
console.log(e)
})
}
</script>