diff options
| author | Armand Philippot <git@armandphilippot.com> | 2023-12-01 13:26:44 +0100 |
|---|---|---|
| committer | Armand Philippot <git@armandphilippot.com> | 2023-12-01 17:23:19 +0100 |
| commit | dfdbf6cac1fe3719dc71e130129d28e04ba4e225 (patch) | |
| tree | f865bdad53cef95bdfb10fc04174a0173ab36f15 /src/services/graphql/fetchers | |
| parent | 5b762b1b669454a89899c4bdf6008027d9615acf (diff) | |
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
Diffstat (limited to 'src/services/graphql/fetchers')
| -rw-r--r-- | src/services/graphql/fetchers/thematics/fetch-thematics-list.ts | 4 | ||||
| -rw-r--r-- | src/services/graphql/fetchers/topics/fetch-topics-list.ts | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/services/graphql/fetchers/thematics/fetch-thematics-list.ts b/src/services/graphql/fetchers/thematics/fetch-thematics-list.ts index 7e1e582..5dff5e1 100644 --- a/src/services/graphql/fetchers/thematics/fetch-thematics-list.ts +++ b/src/services/graphql/fetchers/thematics/fetch-thematics-list.ts @@ -12,13 +12,13 @@ export type ThematicsListResponse = { thematics: Nullable<GraphQLConnection<WPThematicPreview>>; }; -const thematicsListQuery = `query ThematicsList($after: String, $before: String, $first: Int, $last: Int, $orderby: [PostObjectsConnectionOrderbyInput], $search: String, $title: String) { +const thematicsListQuery = `query ThematicsList($after: String, $before: String, $first: Int, $last: Int, $orderby: [PostObjectsConnectionOrderbyInput], $search: String, $title: String, $notIn: [ID]) { thematics( after: $after before: $before first: $first last: $last - where: {orderby: $orderby, search: $search, title: $title} + where: {orderby: $orderby, search: $search, title: $title, notIn: $notIn} ) { edges { cursor diff --git a/src/services/graphql/fetchers/topics/fetch-topics-list.ts b/src/services/graphql/fetchers/topics/fetch-topics-list.ts index 2ede721..6f2ab8f 100644 --- a/src/services/graphql/fetchers/topics/fetch-topics-list.ts +++ b/src/services/graphql/fetchers/topics/fetch-topics-list.ts @@ -12,13 +12,13 @@ export type TopicsListResponse = { topics: Nullable<GraphQLConnection<WPTopicPreview>>; }; -const topicsListQuery = `query TopicsList($after: String, $before: String, $first: Int, $last: Int, $orderby: [PostObjectsConnectionOrderbyInput], $search: String, $title: String) { +const topicsListQuery = `query TopicsList($after: String, $before: String, $first: Int, $last: Int, $orderby: [PostObjectsConnectionOrderbyInput], $search: String, $title: String, $notIn: [ID]) { topics( after: $after before: $before first: $first last: $last - where: {orderby: $orderby, search: $search, title: $title} + where: {orderby: $orderby, search: $search, title: $title, notIn: $notIn} ) { edges { cursor |
