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/schema/types/thematic.types.ts | 1 + tests/msw/schema/types/topic.types.ts | 1 + 2 files changed, 2 insertions(+) (limited to 'tests/msw/schema') diff --git a/tests/msw/schema/types/thematic.types.ts b/tests/msw/schema/types/thematic.types.ts index 2af4f9a..4f8e841 100644 --- a/tests/msw/schema/types/thematic.types.ts +++ b/tests/msw/schema/types/thematic.types.ts @@ -26,6 +26,7 @@ type Thematic { input RootQueryToThematicConnectionWhereArgs { authorName: String + notIn: [ID] orderby: [PostObjectsConnectionOrderbyInput] search: String title: String diff --git a/tests/msw/schema/types/topic.types.ts b/tests/msw/schema/types/topic.types.ts index 2d54653..7d6e4a0 100644 --- a/tests/msw/schema/types/topic.types.ts +++ b/tests/msw/schema/types/topic.types.ts @@ -27,6 +27,7 @@ type Topic { input RootQueryToTopicConnectionWhereArgs { authorName: String + notIn: [ID] orderby: [PostObjectsConnectionOrderbyInput] search: String title: String -- cgit v1.2.3