nidus-sync/ts/view/Authenticated.vue
Eli Ribble 4bb37c5ab3
Reconnect SSE event stream after shutdown
Otherwise we'll never know we have updates
2026-04-29 15:02:18 +00:00

68 lines
1.9 KiB
Vue

<style scoped>
.app-container {
display: flex;
height: 100vh;
}
</style>
<template>
<div class="app-container">
<template v-if="session.isLoading">Loading...</template>
<template v-else-if="session.error">Error: {{ session.error }}</template>
<template v-else>
<Sidebar />
<MainContent>
<router-view v-slot="{ Component }">
<component :is="Component" />
</router-view>
</MainContent>
<UpdateNotification :updateDate="updateDate" />
</template>
</div>
</template>
<script setup lang="ts">
import { onMounted, ref } from "vue";
import Sidebar from "@/components/layout/Sidebar.vue";
import MainContent from "@/components/layout/MainContent.vue";
import UpdateNotification from "@/components/UpdateNotification.vue";
import { SSEManager, type SSEMessageStatus } from "@/SSEManager";
import { Session } from "@/type/api";
import { router } from "@/route/config";
import { useRoutes } from "@/route/use";
import { useSessionStore } from "@/store/session";
const revision = ref<string>("");
const session = useSessionStore();
const updateDate = ref<Date | null>(null);
onMounted(() => {
SSEManager.subscribeStatus((msg: SSEMessageStatus) => {
console.log("status update:", msg);
if (msg.status == "connected") {
if (revision.value == "") {
revision.value = msg.revision;
} else {
updateDate.value = new Date();
}
} else if (msg.status == "shutdown") {
console.log(
"server is shutting down, waiting a bit and re-initiating connection",
);
SSEManager.reconnect(5);
} else {
console.error("unrecognized server status", msg.status);
}
});
session
.get()
.then((session: Session) => {
console.log("session loaded by Authenticated", session);
})
.catch((e) => {
console.log(
"root session not loaded, user is not authenticated",
router.currentRoute.value.fullPath,
);
router.push(`/signin?next=${router.currentRoute.value.fullPath}`);
});
});
</script>