@@ -71,11 +71,19 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
71
71
} ;
72
72
73
73
return (
74
- < section className = 'mt-10 mb-4 text-gray-600 dark:text-white' >
75
- < h2 className = 'text-[24px] font-semibold' > Need Help?</ h2 >
74
+ < section
75
+ className = 'mt-10 mb-4 text-gray-600 dark:text-white'
76
+ data-test = 'docs-help'
77
+ >
78
+ < h2 className = 'text-[24px] font-semibold' data-test = 'need-help-heading' >
79
+ Need Help?
80
+ </ h2 >
76
81
< div className = 'grid grid-cols-1 sm:grid-cols-2 md:grid-cols-3 gap-8 pt-10 border-t border-gray-600' >
77
82
< div >
78
- < h3 className = 'text-xl font-semibold mb-3' >
83
+ < h3
84
+ className = 'text-xl font-semibold mb-3'
85
+ data-test = 'feedback-main-heading'
86
+ >
79
87
Did you find these docs helpful?
80
88
</ h3 >
81
89
@@ -85,6 +93,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
85
93
className = 'flex flex-col'
86
94
onSubmit = { createFeedbackHandler }
87
95
ref = { feedbackFormRef }
96
+ data-test = 'feedback-form'
88
97
>
89
98
< div className = 'mb-6' >
90
99
< input
@@ -101,6 +110,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
101
110
onClick = { ( ) => {
102
111
setIsFormOpen ( true ) ;
103
112
} }
113
+ data-test = 'feedback-survey-yes-button'
104
114
>
105
115
< svg
106
116
className = 'inline-block select-none overflow-visible'
@@ -129,6 +139,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
129
139
onClick = { ( ) => {
130
140
setIsFormOpen ( true ) ;
131
141
} }
142
+ data-test = 'feedback-survey-no-button'
132
143
>
133
144
< svg
134
145
className = 'inline-block select-none overflow-visible'
@@ -148,7 +159,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
148
159
{ isFormOpen && (
149
160
< div >
150
161
< div className = 'mb-4' >
151
- < p >
162
+ < p data-test = 'feedback-form-comment' >
152
163
< label
153
164
className = 'mb-1 block'
154
165
htmlFor = 'feedback-comment'
@@ -165,6 +176,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
165
176
className = 'py-2 text-[14px] min-h-[28px] px-[12px] align-middle border border-solid border-[#aaaaaa] rounded-md w-full overflow-hidden'
166
177
name = 'feedback-comment'
167
178
id = 'feedback-comment'
179
+ data-test = 'feedback-form-input'
168
180
/>
169
181
</ div >
170
182
@@ -173,6 +185,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
173
185
type = 'submit'
174
186
className = { `px-[16px] py-[7px] cursor-pointer border-solid border-[#aaaaaa] border rounded-md ${ isSubmitting ? 'cursor-not-allowed opacity-50' : 'hover:bg-gray-200 dark:hover:bg-gray-600' } ` }
175
187
disabled = { isSubmitting }
188
+ data-test = 'feedback-submit-button'
176
189
>
177
190
< svg
178
191
className = 'inline-block select-none align-text-bottom mr-1'
@@ -196,6 +209,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
196
209
className = { `px-[16px] py-[7px] cursor-pointer border-solid border-[#aaaaaa] border rounded-md ${ isSubmitting ? 'cursor-not-allowed opacity-50' : 'hover:bg-gray-200 dark:hover:bg-gray-600' } ` }
197
210
disabled = { isSubmitting }
198
211
onClick = { createGitHubIssueHandler }
212
+ data-test = 'create-github-issue-button'
199
213
>
200
214
< svg
201
215
className = 'inline-block select-none align-text-bottom mr-1'
@@ -220,7 +234,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
220
234
221
235
{ feedbackStatus === 'feedback' && (
222
236
< div className = 'my-6 text-[14px]' >
223
- < p >
237
+ < p data-test = 'feedback-form-success-message' >
224
238
Thanks for the feedback! Feel free to join the
225
239
< a
226
240
target = '_blank'
@@ -246,7 +260,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
246
260
247
261
{ feedbackStatus === 'github_issue' && (
248
262
< div className = 'my-6 text-[14px]' >
249
- < p >
263
+ < p data-test = 'feedback-form-github-success-message' >
250
264
Thanks for creating an issue! Let's continue the discussion
251
265
there!
252
266
</ p >
@@ -255,18 +269,21 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
255
269
256
270
{ error && (
257
271
< div className = 'my-6 text-[14px]' >
258
- < p > { error } </ p >
272
+ < p data-test = 'feedback-form-error-message' > { error } </ p >
259
273
</ div >
260
274
) }
261
275
</ div >
262
276
263
277
< div >
264
- < h3 className = 'text-xl font-semibold mb-3' >
278
+ < h3
279
+ className = 'text-xl font-semibold mb-3'
280
+ data-test = 'contribute-docs-heading'
281
+ >
265
282
Help us make our docs great!
266
283
</ h3 >
267
284
268
285
< div className = 'my-6 text-[14px]' >
269
- < p >
286
+ < p data-test = 'contribute-docs-description' >
270
287
At JSON Schema, we value docs contributions as much as every other
271
288
type of contribution!
272
289
</ p >
@@ -277,6 +294,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
277
294
rel = 'noreferrer'
278
295
className = 'px-[16px] py-[8px] cursor-pointer border-solid border-[#aaaaaa] border rounded-md hover:bg-gray-200 dark:hover:bg-gray-600'
279
296
href = { `https://github.com/json-schema-org/website/blob/main/pages${ markdownFile ? ( markdownFile === '_indexPage' ? extractPathWithoutFragment ( router . asPath ) + '/_index.md' : extractPathWithoutFragment ( router . asPath ) + '.md' ) : `/${ path } /index.page.tsx` } ` }
297
+ data-test = 'edit-on-github-link'
280
298
>
281
299
< svg
282
300
className = 'inline-block select-none align-text-bottom mr-1'
@@ -298,6 +316,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
298
316
rel = 'noreferrer'
299
317
className = 'underline'
300
318
href = 'https://github.com/json-schema-org/website/blob/main/CONTRIBUTING.md'
319
+ data-test = 'learn-to-contribute-link'
301
320
>
302
321
< svg
303
322
className = 'inline-block select-none align-text-bottom mr-1'
@@ -319,10 +338,15 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
319
338
</ div >
320
339
321
340
< div >
322
- < h3 className = 'text-xl font-semibold mb-3' > Still Need Help?</ h3 >
341
+ < h3
342
+ className = 'text-xl font-semibold mb-3'
343
+ data-test = 'additional-help-heading'
344
+ >
345
+ Still Need Help?
346
+ </ h3 >
323
347
324
348
< div className = 'my-6 text-[14px]' >
325
- < p >
349
+ < p data-test = 'additional-help-description' >
326
350
Learning JSON Schema is often confusing, but don't worry, we are
327
351
here to help!.
328
352
</ p >
@@ -333,6 +357,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
333
357
rel = 'noreferrer'
334
358
className = 'underline'
335
359
href = 'https://github.com/orgs/json-schema-org/discussions/new?category=q-a'
360
+ data-test = 'ask-on-github-link'
336
361
>
337
362
< svg
338
363
className = 'inline-block select-none align-text-bottom mr-1'
@@ -354,6 +379,7 @@ export function DocsHelp({ markdownFile }: DocsHelpProps) {
354
379
rel = 'noreferrer'
355
380
className = 'underline'
356
381
href = 'https://json-schema.org/slack'
382
+ data-test = 'ask-on-slack-link'
357
383
>
358
384
< svg
359
385
className = 'inline-block select-none align-text-bottom mr-1'
0 commit comments