L'admin etait une 2e app front Vite independante (apps/admin-web, port 5174,
Dockerfile nginx, service compose dedie, job CI propre) non demandee. Toute
l'UI passe dans apps/web sous le prefixe /admin ; seul le frontend est
fusionne, l'authentification admin reste entierement separee.
Front (apps/web/src) :
- pages -> pages/admin/{login,dashboard,monitoring,corrections,catalog}/,
layout -> layouts/AdminLayout.tsx, contexte + garde -> features/admin/.
- client API -> api/admin-client.ts : classe AdminApiError (evite la
collision avec ApiError), lit VITE_API_URL (plus de VITE_ADMIN_API_URL).
- routes /admin/* dans App.tsx, enveloppees d'AdminAuthProvider +
RequireAdmin -> le probe GET /admin/auth/me ne tourne que sous /admin.
- reutilise l'i18n, lib/zod-errors, services/error-message.service et le
theme SCSS de apps/web ; bloc i18n admin.* fusionne dans la locale fr
(les cles errors etaient deja toutes presentes).
- corrige une race dans CatalogPage (reponse d'un onglet precedent qui
ecrasait l'onglet courant, exposee par le double-mount StrictMode) via
un ref requestSeq.
Auth admin inchangee : table AdminUser, cookie admin_session,
ADMIN_JWT_SECRET, script create-admin.ts.
Infra :
- docker-compose : service admin-web + ADMIN_WEB_PORT supprimes (l'app
`app` sert deja le front construit).
- ADMIN_CORS_ORIGIN retire (meme origine) : env.ts, app.ts, .env.example.
- job CI "Run admin-web E2E tests" supprime ; les specs admin-* tournent
dans le job web (apps/web/cypress/e2e/admin-*.{cy.ts,feature}).
- apps/api/.env.example : ajout ADMIN_JWT_SECRET / ADMIN_INITIAL_*.
- recharts ajoute a apps/web ; pnpm-lock regenere.
- specs/backend-architecture.md : section admin mise a jour.
Verifie : biome + tsc -b (web/api) + pnpm -r build verts ; Cypress web
102/103 (l'unique echec est le flake pre-existant recipe-form.feature
"Preloads ..." de clipping headless, sans rapport) ; 16/16 specs admin ;
45/45 composants.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
99 lines
3.1 KiB
TypeScript
99 lines
3.1 KiB
TypeScript
// Mocks the admin API via cy.intercept — no live backend.
|
|
|
|
const adminBody = {
|
|
id: 1,
|
|
email: "ops@example.com",
|
|
name: "Ops",
|
|
createdAt: "2026-08-01T00:00:00.000Z",
|
|
lastLoginAt: "2026-08-28T09:00:00.000Z",
|
|
};
|
|
|
|
function pendingGroups() {
|
|
return [
|
|
{
|
|
normalizedName: "piment d espelette",
|
|
displayNames: ["Piment d'Espelette", "piment d espelette"],
|
|
ingredientIds: [11, 12],
|
|
recipeCount: 2,
|
|
sampleRecipes: [
|
|
{ id: 1, name: "Poulet basquaise" },
|
|
{ id: 2, name: "Piperade" },
|
|
],
|
|
firstSeenAt: "2026-08-20T10:00:00.000Z",
|
|
allReviewed: false,
|
|
},
|
|
{
|
|
normalizedName: "sumac",
|
|
displayNames: ["Sumac"],
|
|
ingredientIds: [13],
|
|
recipeCount: 1,
|
|
sampleRecipes: [{ id: 3, name: "Fattoush" }],
|
|
firstSeenAt: "2026-08-22T10:00:00.000Z",
|
|
allReviewed: false,
|
|
},
|
|
];
|
|
}
|
|
|
|
describe("Admin catalog — off-catalog ingredients", () => {
|
|
beforeEach(() => {
|
|
cy.viewport(1400, 900);
|
|
cy.intercept("GET", "**/admin/auth/me", { statusCode: 200, body: adminBody });
|
|
});
|
|
|
|
it("lists placeholder groups newest-impact first with their recipe count and spelling variants", () => {
|
|
cy.intercept("GET", "**/admin/catalog/placeholders*", {
|
|
statusCode: 200,
|
|
body: pendingGroups(),
|
|
}).as("getPlaceholders");
|
|
cy.visit("/admin/catalogue");
|
|
cy.wait("@getPlaceholders");
|
|
|
|
cy.get(".catalog-card").should("have.length", 2);
|
|
cy.get(".catalog-card").first().should("contain.text", "Piment d'Espelette");
|
|
cy.contains(".catalog-card", "Piment d'Espelette")
|
|
.should("contain.text", "2 recette")
|
|
.and("contain.text", "piment d espelette")
|
|
.and("contain.text", "Poulet basquaise");
|
|
});
|
|
|
|
it("marks a group reviewed and reloads the list", () => {
|
|
cy.intercept("GET", "**/admin/catalog/placeholders*", {
|
|
statusCode: 200,
|
|
body: pendingGroups(),
|
|
}).as("getPlaceholders");
|
|
cy.intercept("PATCH", "**/admin/catalog/placeholders/mark-reviewed", {
|
|
statusCode: 200,
|
|
body: { reviewed: 1 },
|
|
}).as("markReviewed");
|
|
|
|
cy.visit("/admin/catalogue");
|
|
cy.wait("@getPlaceholders");
|
|
|
|
cy.contains(".catalog-card", "Sumac").contains("button", "Marquer comme traité").click();
|
|
|
|
cy.wait("@markReviewed")
|
|
.its("request.body")
|
|
.should("deep.equal", { ingredientIds: [13] });
|
|
// The page re-fetches the list after the PATCH.
|
|
cy.get("@getPlaceholders.all").should("have.length.greaterThan", 1);
|
|
});
|
|
|
|
it("switches to the reviewed archive tab", () => {
|
|
// Regex, not a glob: the two calls differ only by the `?reviewed=true`
|
|
// query, and minimatch's `?` is itself a wildcard — a glob can't tell
|
|
// them apart reliably.
|
|
cy.intercept("GET", /\/admin\/catalog\/placeholders$/, {
|
|
statusCode: 200,
|
|
body: pendingGroups(),
|
|
});
|
|
cy.intercept("GET", /\/admin\/catalog\/placeholders\?reviewed=true$/, {
|
|
statusCode: 200,
|
|
body: [],
|
|
}).as("getReviewed");
|
|
|
|
cy.visit("/admin/catalogue");
|
|
cy.contains(".catalog-tabs button", "Traités").click();
|
|
cy.wait("@getReviewed");
|
|
cy.contains("Aucun ingrédient hors-catalogue").should("be.visible");
|
|
});
|
|
});
|