feat(ui): FRO-36 PWA

Added Knockoutwhist with manifest + worker to be downloadable. Offline screen can be improved
This commit is contained in:
LQ63
2025-12-17 02:32:25 +01:00
parent ee8523d51a
commit 8dddf2eaf2
8 changed files with 4486 additions and 129 deletions

4481
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -2,18 +2,14 @@
"name": "knockoutwhistfrontend", "name": "knockoutwhistfrontend",
"version": "0.0.0", "version": "0.0.0",
"private": true, "private": true,
"type": "module",
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": { "scripts": {
"dev": "vite",
"build": "run-p type-check \"build-only {@}\" --", "build": "run-p type-check \"build-only {@}\" --",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --build",
"lint": "eslint . --fix --cache", "lint": "eslint . --fix --cache",
"format": "prettier --write --experimental-cli src/" "build-only": "vite build",
"dev": "vite",
"format": "prettier --write --experimental-cli src/",
"preview": "vite preview",
"type-check": "vue-tsc --build"
}, },
"dependencies": { "dependencies": {
"@quasar/extras": "^1.17.0", "@quasar/extras": "^1.17.0",
@@ -22,6 +18,7 @@
"axios": "^1.13.2", "axios": "^1.13.2",
"pinia": "^3.0.4", "pinia": "^3.0.4",
"quasar": "^2.18.6", "quasar": "^2.18.6",
"register-service-worker": "^1.7.2",
"tsparticles": "~3.9.1", "tsparticles": "~3.9.1",
"vue": "^3.5.25", "vue": "^3.5.25",
"vue-axios": "^3.5.2", "vue-axios": "^3.5.2",
@@ -30,7 +27,7 @@
"devDependencies": { "devDependencies": {
"@quasar/vite-plugin": "^1.10.0", "@quasar/vite-plugin": "^1.10.0",
"@tsconfig/node24": "^24.0.3", "@tsconfig/node24": "^24.0.3",
"@types/node": "^24.10.1", "@types/node": "^25.0.3",
"@vitejs/plugin-vue": "^6.0.2", "@vitejs/plugin-vue": "^6.0.2",
"@vitejs/plugin-vue-jsx": "^5.1.2", "@vitejs/plugin-vue-jsx": "^5.1.2",
"@vue/eslint-config-prettier": "^10.2.0", "@vue/eslint-config-prettier": "^10.2.0",
@@ -44,7 +41,12 @@
"sass-embedded": "^1.93.3", "sass-embedded": "^1.93.3",
"typescript": "~5.9.0", "typescript": "~5.9.0",
"vite": "^7.2.4", "vite": "^7.2.4",
"vite-plugin-pwa": "^1.2.0",
"vite-plugin-vue-devtools": "^8.0.5", "vite-plugin-vue-devtools": "^8.0.5",
"vue-tsc": "^3.1.5" "vue-tsc": "^3.1.5"
} },
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"type": "module"
} }

BIN
public/logo192.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.0 KiB

BIN
public/logo512.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 20 KiB

View File

@@ -1,5 +1,22 @@
<script setup lang="ts"> <script setup lang="ts">
import { RouterView } from 'vue-router' import { RouterView } from 'vue-router'
import { onMounted, onUnmounted } from 'vue';
import { useRoute } from 'vue-router';
const route = useRoute();
const handleOnlineStatusChange = () => {
if (navigator.onLine) {
if (route.name === 'offline') {
window.location.reload();
}
}
};
onMounted(() => {
window.addEventListener('online', handleOnlineStatusChange);
});
onUnmounted(() => {
window.removeEventListener('online', handleOnlineStatusChange);
});
</script> </script>
<template> <template>

View File

@@ -8,6 +8,7 @@ import axios from "axios";
import { useUserInfo } from "@/composables/useUserInfo"; import { useUserInfo } from "@/composables/useUserInfo";
import rulesView from "../components/Rules.vue"; import rulesView from "../components/Rules.vue";
import Game from "@/views/Game.vue"; import Game from "@/views/Game.vue";
import OfflineView from "@/views/OfflineView.vue";
const api = window?.__RUNTIME_CONFIG__?.API_URL; const api = window?.__RUNTIME_CONFIG__?.API_URL;
const router = createRouter({ const router = createRouter({
@@ -55,12 +56,40 @@ const router = createRouter({
name: 'game', name: 'game',
component: Game, component: Game,
meta: {requiresAuth: true } meta: {requiresAuth: true }
},
{
path: '/offline',
name: 'offline',
component: OfflineView,
meta: {requiresAuth: false }
} }
], ],
}) })
router.beforeEach(async (to, from, next) => { router.beforeEach(async (to, from, next) => {
const info = useUserInfo(); const info = useUserInfo();
const isOnline = navigator.onLine;
if (to.name === 'offline') {
if (isOnline) {
try {
const response = await axios.get(`${api}/userInfo`, { withCredentials: true });
info.setUserInfo(response.data.username, response.data.userId);
return next({ name: 'mainmenu' });
} catch (err) {
info.clearUserInfo();
return next('/login');
}
} else {
return next();
}
}
if (!isOnline) {
return next({ name: 'offline' });
}
if (!to.meta.requiresAuth) return next(); if (!to.meta.requiresAuth) return next();
try { try {
await axios.get(`${api}/userInfo`, { withCredentials: true }).then( await axios.get(`${api}/userInfo`, { withCredentials: true }).then(
@@ -72,6 +101,7 @@ router.beforeEach(async (to, from, next) => {
} catch (err) { } catch (err) {
info.clearUserInfo(); info.clearUserInfo();
next('/login'); next('/login');
} }
}); });

View File

@@ -0,0 +1,9 @@
<script setup lang="ts">
</script>
<template>
<h1> DU BIST OFFLINE!!!</h1>
</template>
<style scoped>
</style>

View File

@@ -1,18 +1,62 @@
import { fileURLToPath, URL } from 'node:url' import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite' import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue' import vue from '@vitejs/plugin-vue'
import { quasar, transformAssetUrls } from '@quasar/vite-plugin'
import vueJsx from '@vitejs/plugin-vue-jsx' import vueJsx from '@vitejs/plugin-vue-jsx'
import vueDevTools from 'vite-plugin-vue-devtools' import vueDevTools from 'vite-plugin-vue-devtools'
import { quasar, transformAssetUrls } from '@quasar/vite-plugin'
import { VitePWA } from 'vite-plugin-pwa'
// https://vite.dev/config/ // https://vite.dev/config/
export default defineConfig({ export default defineConfig({
plugins: [ plugins: [
vue({ template: { transformAssetUrls } }), vue({
template: { transformAssetUrls }
}),
vueJsx(), vueJsx(),
vueDevTools(), vueDevTools(),
quasar(), quasar(),
VitePWA({
registerType: 'autoUpdate',
injectRegister: 'auto',
workbox: {
globDirectory: 'dist/',
globPatterns: [
'**/*.{js,css,html,ico,png,svg,webmanifest}',
],
globIgnores: [
'**/node_modules/**/*',
'sw.js',
],
swDest: 'dist/sw.js',
},
manifest: {
name: 'Knockout Whist PWA',
short_name: 'Whist PWA',
description: 'The Knockout Whist card game as a Progressive Web App.',
theme_color: '#4A4A4A',
background_color: '#ffffff',
display: 'standalone',
icons: [
{
src: 'logo192.png',
sizes: '192x192',
type: 'image/png'
},
{
src: 'logo512.png',
sizes: '512x512',
type: 'image/png'
}
]
},
devOptions: {
enabled: true,
type: 'module',
}
})
], ],
resolve: { resolve: {
alias: { alias: {