Skip to content

Commit aaa4092

Browse files
johannes-weberJohannes Weberavinashbot
authored
chore: Add aria-expanded to Hotspot trigger buttons (#3321)
Co-authored-by: Johannes Weber <[email protected]> Co-authored-by: Avinash Dwarapu <[email protected]>
1 parent b0921c4 commit aaa4092

File tree

5 files changed

+36
-8
lines changed

5 files changed

+36
-8
lines changed

pages/onboarding/i18n.ts

+1-4
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,7 @@ export const tutorialPanelStrings: TutorialPanelProps.I18nStrings = {
2929
export const annotationContextStrings: AnnotationContextProps.I18nStrings = {
3030
stepCounterText: (stepIndex, totalStepCount) => `Step ${stepIndex + 1}/${totalStepCount}`,
3131
taskTitle: (taskIndex, taskTitle) => `Task ${taskIndex + 1}: ${taskTitle}`,
32-
labelHotspot: (openState, stepIndex, totalStepCount) =>
33-
openState
34-
? `close annotation for step ${stepIndex + 1}/${totalStepCount}`
35-
: `open annotation for step ${stepIndex + 1}/${totalStepCount}`,
32+
labelHotspot: (openState, stepIndex, totalStepCount) => `Annotation for step ${stepIndex + 1}/${totalStepCount}`,
3633
nextButtonText: 'Next',
3734
previousButtonText: 'Previous',
3835
finishButtonText: 'Finish',

src/__tests__/snapshot-tests/__snapshots__/documenter.test.ts.snap

+9-2
Original file line numberDiff line numberDiff line change
@@ -380,8 +380,15 @@ in the \`detail\` property of the \`onStartTutorial\` event.",
380380
"type": "AnnotationContextProps.Tutorial | null",
381381
},
382382
{
383-
"description": "An object containing all the necessary localized strings required by
384-
the component.",
383+
"description": "An object containing all the necessary localized strings required by the component. The object should contain:
384+
* \`finishButtonText\` - Specifies the text that's displayed in the finish button.
385+
* \`labelDismissAnnotation\` - Specifies the aria-label for the dismiss button.
386+
* \`labelHotspot\` - Specifies the aria-label for the hotspot button. The \`openState\` argument is deprecated, it's handled by the hotspot button aria-expanded attribute.
387+
* \`nextButtonText\` - Specifies the text that's displayed in the next button.
388+
* \`previousButtonText\` - Specifies the text that's displayed in the previous button.
389+
* \`stepCounterText\` - Specifies the step counter text that's displayed in the annotation popover.
390+
* \`taskTitle\` - Specifies the title text that's displayed in the annotation popover.
391+
",
385392
"inlineType": {
386393
"name": "AnnotationContextProps.I18nStrings",
387394
"properties": [

src/annotation-context/__tests__/annotation-context.test.tsx

+16
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,22 @@ test('trigger should have aria-label with steps information', () => {
244244
expect(hotspot.findTrigger().getElement().getAttribute('aria-label')).toBe('CLOSE_HOTSPOT_TEST_FOR_STEP_1_OF_2_TEST');
245245
});
246246

247+
test('trigger should have aria-expanded depending on open state', () => {
248+
const { wrapper } = renderAnnotationContext(
249+
<>
250+
<Hotspot hotspotId="first-hotspot" data-testid="first-hotspot" />
251+
<Hotspot hotspotId="second-hotspot" data-testid="second-hotspot" />
252+
</>
253+
);
254+
255+
// First hotspot is open by default.
256+
const hotspot = wrapper.findHotspot('[data-testid="first-hotspot"]')!;
257+
expect(hotspot.findTrigger().getElement().getAttribute('aria-expanded')).toBe('true');
258+
// Switching to the second hotspot which closes the first one.
259+
hotspot.findTrigger().click();
260+
expect(hotspot.findTrigger().getElement().getAttribute('aria-expanded')).toBe('false');
261+
});
262+
247263
test('annotation should have be labeled by header and step counter', () => {
248264
const { wrapper } = renderAnnotationContext(
249265
<>

src/annotation-context/annotation/annotation-trigger.tsx

+1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ export default React.forwardRef<HTMLButtonElement, AnnotationTriggerProps>(funct
3434
ref={ref}
3535
className={styles.hotspot}
3636
aria-haspopup="dialog"
37+
aria-expanded={open}
3738
aria-label={i18nStrings.labelHotspot(open, taskLocalStepIndex ?? 0, totalLocalSteps ?? 0)}
3839
onClick={onClick}
3940
>

src/annotation-context/interfaces.ts

+9-2
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,15 @@ export interface AnnotationContextProps {
4646
children: React.ReactNode;
4747

4848
/**
49-
* An object containing all the necessary localized strings required by
50-
* the component.
49+
* An object containing all the necessary localized strings required by the component. The object should contain:
50+
*
51+
* * `finishButtonText` - Specifies the text that's displayed in the finish button.
52+
* * `labelDismissAnnotation` - Specifies the aria-label for the dismiss button.
53+
* * `labelHotspot` - Specifies the aria-label for the hotspot button. The `openState` argument is deprecated, it's handled by the hotspot button aria-expanded attribute.
54+
* * `nextButtonText` - Specifies the text that's displayed in the next button.
55+
* * `previousButtonText` - Specifies the text that's displayed in the previous button.
56+
* * `stepCounterText` - Specifies the step counter text that's displayed in the annotation popover.
57+
* * `taskTitle` - Specifies the title text that's displayed in the annotation popover.
5158
*/
5259
i18nStrings: AnnotationContextProps.I18nStrings;
5360
}

0 commit comments

Comments
 (0)