From dfdbf6cac1fe3719dc71e130129d28e04ba4e225 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Fri, 1 Dec 2023 13:26:44 +0100 Subject: refactor(pages): refine Thematic pages * add a table of contents (however posts heading are not included) * rename posts list section title * add a useThematic hook to refresh thematic contents * add a useThematicLists hook to refresh thematics list * add a `notIn` filter in thematics list fetcher to directly remove unwanted thematics * add Cypress tests --- tests/msw/handlers/thematics/thematics-list.handler.ts | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) (limited to 'tests/msw/handlers/thematics/thematics-list.handler.ts') diff --git a/tests/msw/handlers/thematics/thematics-list.handler.ts b/tests/msw/handlers/thematics/thematics-list.handler.ts index f206247..7afec4c 100644 --- a/tests/msw/handlers/thematics/thematics-list.handler.ts +++ b/tests/msw/handlers/thematics/thematics-list.handler.ts @@ -23,12 +23,17 @@ export const thematicsListHandler = graphql.query< variableValues: variables, rootValue: { thematics({ after, first, where }: typeof variables) { - const { search, title } = where ?? {}; + const { notIn, search, title } = where ?? {}; + const filteredThematicsById = notIn + ? wpThematicsFixture.filter( + (thematic) => !notIn.includes(thematic.databaseId) + ) + : wpThematicsFixture; const filteredThematicsByTitle = title - ? wpThematicsFixture.filter((thematic) => + ? filteredThematicsById.filter((thematic) => thematic.title.includes(title) ) - : wpThematicsFixture; + : filteredThematicsById; const filteredThematics = search ? filteredThematicsByTitle.filter((thematic) => thematic.title.includes(search) -- cgit v1.2.3