mirror of
https://github.com/Drop-OSS/drop-app.git
synced 2026-01-30 19:15:17 +01:00
* feat: depot api downloads * feat: frontend fixes and experimental webview store * feat: sync downloader * feat: cleanup and fixes * feat: encrypted database and fixed resuming * feat: launch option selector * fix: autostart when no options * fix: clippy * fix: clippy x2 * feat: executor launch * feat: executor launch * feat: not installed error handling * feat: better offline handling * feat: dependency popup * fix: cancelation and resuming issues * feat: dedup by platform * feat: new ui for additional components and fix dl manager clog * feat: auto-queue dependencies * feat: depot scanning and ranking * feat: new library fetching stack * In-app store page (Windows + macOS) (#176) * feat: async store loading * feat: fix overscroll behaviour * fix: query params in server protocol * fix: clippy
52 lines
1.1 KiB
Vue
52 lines
1.1 KiB
Vue
<template>
|
|
<NuxtLoadingIndicator color="#2563eb" />
|
|
<NuxtLayout class="select-none w-screen h-screen">
|
|
<NuxtPage />
|
|
<ModalStack />
|
|
</NuxtLayout>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import "~/composables/downloads.js";
|
|
|
|
import { invoke } from "@tauri-apps/api/core";
|
|
import { useAppState } from "./composables/app-state.js";
|
|
import {
|
|
initialNavigation,
|
|
setupHooks,
|
|
} from "./composables/state-navigation.js";
|
|
import { listen } from "@tauri-apps/api/event";
|
|
import type { AppState } from "./types.js";
|
|
|
|
const router = useRouter();
|
|
|
|
const state = useAppState();
|
|
|
|
async function fetchState() {
|
|
try {
|
|
state.value = JSON.parse(await invoke("fetch_state"));
|
|
if (!state.value)
|
|
throw createError({
|
|
statusCode: 500,
|
|
statusMessage: `App state is: ${state.value}`,
|
|
fatal: true,
|
|
});
|
|
} catch (e) {
|
|
console.error("failed to parse state", e);
|
|
throw e;
|
|
}
|
|
}
|
|
await fetchState();
|
|
|
|
listen("update_state", (event) => {
|
|
state.value = event.payload as AppState;
|
|
});
|
|
|
|
setupHooks();
|
|
initialNavigation(state);
|
|
|
|
useHead({
|
|
title: "Drop",
|
|
});
|
|
</script>
|