9
9
} from "@/icons"
10
10
import { Card , Tag } from "@/components"
11
11
import NextLink from "next/link"
12
+ import NextHead from "next/head"
12
13
import { useMounted } from "nextra/hooks"
13
14
import Markdown from "markdown-to-jsx"
14
15
import { evaluate } from "nextra/components"
@@ -66,16 +67,20 @@ export function CodePage({ allTags, data }: CodePageProps) {
66
67
const [ search , setSearch ] = useState ( "" )
67
68
const [ queryParamsTags , setTags ] = useQueryParam ( "tags" , TagParam )
68
69
69
- const handleQuery = useCallback ( ( e : MouseEvent < HTMLButtonElement > ) => {
70
- const tag = e . currentTarget . dataset . tag !
70
+ const handleQuery = useCallback (
71
+ ( e : MouseEvent < HTMLAnchorElement | HTMLButtonElement > ) => {
72
+ e . preventDefault ( )
73
+ const tag = e . currentTarget . dataset . tag !
71
74
72
- setTags ( prevTags => {
73
- if ( prevTags ! . includes ( tag ) ) {
74
- return prevTags ! . filter ( t => t !== tag )
75
- }
76
- return [ ...prevTags ! , tag ]
77
- } )
78
- } , [ ] )
75
+ setTags ( prevTags => {
76
+ if ( prevTags ! . includes ( tag ) ) {
77
+ return prevTags ! . filter ( t => t !== tag )
78
+ }
79
+ return [ ...prevTags ! , tag ]
80
+ } )
81
+ } ,
82
+ [ setTags ] ,
83
+ )
79
84
80
85
const mounted = useMounted ( )
81
86
const [ isBackspacePressed , setIsBackspacePressed ] = useState ( false )
@@ -144,10 +149,37 @@ export function CodePage({ allTags, data }: CodePageProps) {
144
149
}
145
150
} , [ mounted , data , queryParamsTags ] )
146
151
152
+ const selectedTagsAsString = useMemo ( ( ) => {
153
+ const tags = queryParamsTags
154
+ . slice ( )
155
+ . map ( tag => allTagsMap . get ( tag as string ) ?. name ?? tag )
156
+ . filter ( ( tag ) : tag is string => typeof tag === "string" )
157
+
158
+ if ( tags . length === 0 ) {
159
+ return ""
160
+ }
161
+
162
+ if ( tags . length === 1 ) {
163
+ return tags [ 0 ]
164
+ }
165
+
166
+ return `${ tags . slice ( 0 , - 1 ) . join ( ", " ) } and ${ tags . slice ( - 1 ) [ 0 ] } `
167
+ } , [ queryParamsTags , allTagsMap ] )
168
+
147
169
const [ sort , setSort ] = useState ( "popularity" )
148
170
149
171
return (
150
172
< >
173
+ < NextHead >
174
+ < title >
175
+ { selectedTagsAsString ? selectedTagsAsString + " | " : "" } Tools and
176
+ Libraries | GraphQL
177
+ </ title >
178
+ < meta
179
+ name = "description"
180
+ content = { `A collection of tools and libraries for GraphQL${ selectedTagsAsString ? ` related to ${ selectedTagsAsString } ` : "" } ` }
181
+ />
182
+ </ NextHead >
151
183
< div className = "container py-10 md:py-20" >
152
184
< h1 className = "text-4xl md:text-7xl font-extrabold" >
153
185
Code Using GraphQL
@@ -180,7 +212,8 @@ export function CodePage({ allTags, data }: CodePageProps) {
180
212
! search || name . toLowerCase ( ) . includes ( search . toLowerCase ( ) )
181
213
if ( ! isTagMatchSearch ) return
182
214
return (
183
- < button
215
+ < NextLink
216
+ href = { `/community/tools-and-libraries/?tags=${ tag } ` }
184
217
key = { tag }
185
218
data-tag = { tag }
186
219
className = { clsx (
@@ -193,7 +226,7 @@ export function CodePage({ allTags, data }: CodePageProps) {
193
226
title = { `${ mounted && ( queryParamsTags as string [ ] ) . includes ( tag ) ? "Remove" : "Add" } tag "${ name } "` }
194
227
>
195
228
{ name } ({ count } )
196
- </ button >
229
+ </ NextLink >
197
230
)
198
231
} ) }
199
232
</ div >
@@ -287,7 +320,7 @@ export function CodePage({ allTags, data }: CodePageProps) {
287
320
key = { tag }
288
321
// @ts -expect-error -- fixme
289
322
as = { NextLink }
290
- href = { `/code ?tags=${ tag } ` }
323
+ href = { `/community/tools-and-libraries/ ?tags=${ tag } ` }
291
324
className = "hover:!bg-primary transition-colors hover:text-white cursor-pointer"
292
325
>
293
326
{ allTagsMap . get ( tag ) ! . name }
@@ -351,6 +384,17 @@ const RemoteContent = memo(function RemoteContent({
351
384
compiledSource : string
352
385
} ) {
353
386
const { default : MDXContent } = evaluate ( compiledSource )
354
- const components = getComponents ( { isRawLayout : false } )
387
+ const components = getComponents ( {
388
+ isRawLayout : false ,
389
+ components : {
390
+ // Rendering README.md with headings messes up the headings hierarchy of the page
391
+ h1 : props => < strong { ...props } /> ,
392
+ h2 : props => < strong { ...props } /> ,
393
+ h3 : props => < strong { ...props } /> ,
394
+ h4 : props => < strong { ...props } /> ,
395
+ h5 : props => < strong { ...props } /> ,
396
+ h6 : props => < strong { ...props } /> ,
397
+ } ,
398
+ } )
355
399
return < MDXContent components = { components } />
356
400
} )
0 commit comments