feat: conformite enonce - explorer, favoris, stats perso, tests, slots
Some checks failed
Deploy XIP / deploy (push) Failing after 37s
Some checks failed
Deploy XIP / deploy (push) Failing after 37s
Fonctionnel
- Backend messages : GET /api/messages/:id (detail) + recherche (q),
pagination par curseur (before/limit) avec enveloppe { items, nextCursor,
hasMore } ; le flux temps reel garde l'ancien format quand aucun parametre.
- Explorer (/explorer) : catalogue distant, recherche debouncee + annulable
(AbortController), filtre, defilement infini, etat garde (keep-alive).
- Details par id : /message/:id et /shop/p/:id (consomment route.params).
- Favoris (/favoris) : liste perso persistee en localStorage, notation
(note/rating/statut) via modale, refletee partout (bouton favori).
- Mes stats (/mes-stats) : agregats derives des favoris (note moyenne, top
pays/auteurs, statuts), auto-mis a jour, route gardee si liste vide.
- Routeur : pages secondaires en lazy-load + repli, garde beforeEnter.
Technique
- Slots : PrefSection (slot defaut + slot nomme) enveloppe les 5 sections
"Mes Persos" ; Modal (Teleport + slots).
- v-model custom : SearchBox (defineModel + debounce).
- Directive custom : v-click-outside.
- Tests Vitest : 25 tests (etat, fonctions, composants), ~86% du code metier.
- Retrait d'Ionic (inutilise). Script typecheck backend ; tsconfig @types/bun.
- Correctif type : garde stockLimit nullable dans l'achat (catalog.ts).
- README complet (URL, stack, run, tests, secrets, deploiement, mention IA).
This commit is contained in:
@@ -1,17 +1,17 @@
|
||||
# XIP frontend — Vue 3 + Vite, built to static assets and served by nginx.
|
||||
# Build context is the repo ROOT (see docker-compose.prod.yml).
|
||||
FROM oven/bun:1-debian AS build
|
||||
WORKDIR /app
|
||||
COPY frontend/package.json ./
|
||||
RUN bun install
|
||||
COPY frontend/ ./
|
||||
# Baked at build time. Must be the public absolute origin so the WebSocket URL
|
||||
# (derived as API_URL.replace(/^http/,'ws') + '/ws') becomes wss://xip.kerboul.me/ws.
|
||||
ARG VITE_API_URL=https://xip.kerboul.me
|
||||
ENV VITE_API_URL=$VITE_API_URL
|
||||
RUN bun run build
|
||||
|
||||
FROM nginx:1.27-alpine AS runtime
|
||||
COPY deploy/nginx.conf /etc/nginx/conf.d/default.conf
|
||||
COPY --from=build /app/dist /usr/share/nginx/html
|
||||
EXPOSE 80
|
||||
# XIP frontend — Vue 3 + Vite, built to static assets and served by nginx.
|
||||
# Build context is the repo ROOT (see docker-compose.prod.yml).
|
||||
FROM oven/bun:1-debian AS build
|
||||
WORKDIR /app
|
||||
COPY frontend/package.json ./
|
||||
RUN bun install
|
||||
COPY frontend/ ./
|
||||
# Baked at build time. Must be the public absolute origin so the WebSocket URL
|
||||
# (derived as API_URL.replace(/^http/,'ws') + '/ws') becomes wss://xip.kerboul.me/ws.
|
||||
ARG VITE_API_URL=https://xip.kerboul.me
|
||||
ENV VITE_API_URL=$VITE_API_URL
|
||||
RUN bun run build
|
||||
|
||||
FROM nginx:1.27-alpine AS runtime
|
||||
COPY deploy/nginx.conf /etc/nginx/conf.d/default.conf
|
||||
COPY --from=build /app/dist /usr/share/nginx/html
|
||||
EXPOSE 80
|
||||
|
||||
Reference in New Issue
Block a user