Skip to content

Commit

Permalink
Enhance accessibility and focus styles for Notification Console compo…
Browse files Browse the repository at this point in the history
…nent
  • Loading branch information
Satyapriya Bai committed Feb 28, 2025
1 parent 14c9874 commit eb69ad1
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 24 deletions.
4 changes: 4 additions & 0 deletions less/Common/Constants.less
Original file line number Diff line number Diff line change
Expand Up @@ -248,6 +248,10 @@
outline: 1px dashed @FocusColor;
}

.focusedBorder() {
border: 1px dashed @FocusColor;
}

/************************************************************************************************
Common Toggle Switch
*************************************************************************************************/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@
&:active {
background-color:@NotificationHigh;
}

&:focus {
.focusedBorder();
}

.statusBar {
.dataTypeIcons {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,6 @@ export class NotificationConsoleComponent extends React.Component<
}
}

public setElememntRef = (element: HTMLElement): void => {
this.consoleHeaderElement = element;
};

public render(): JSX.Element {
const numInProgress = this.state.allConsoleData.filter(
(data: ConsoleData) => data.type === ConsoleDataType.InProgress,
Expand All @@ -101,7 +97,9 @@ export class NotificationConsoleComponent extends React.Component<
<div
className="notificationConsoleHeader"
id="notificationConsoleHeader"
ref={this.setElememntRef}
role="button"
aria-label="Console"
aria-expanded={this.props.isConsoleExpanded}
onClick={() => this.expandCollapseConsole()}
onKeyDown={(event: React.KeyboardEvent<HTMLDivElement>) => this.onExpandCollapseKeyPress(event)}
tabIndex={0}
Expand Down Expand Up @@ -129,14 +127,7 @@ export class NotificationConsoleComponent extends React.Component<
</span>
</span>
</div>
<div
className="expandCollapseButton"
data-test="NotificationConsole/ExpandCollapseButton"
role="button"
tabIndex={0}
aria-label="Console"
aria-expanded={this.props.isConsoleExpanded}
>
<div className="expandCollapseButton" data-test="NotificationConsole/ExpandCollapseButton">
<img
src={this.props.isConsoleExpanded ? ChevronDownIcon : ChevronUpIcon}
alt={this.props.isConsoleExpanded ? "Collapse icon" : "Expand icon"}
Expand Down Expand Up @@ -259,9 +250,6 @@ export class NotificationConsoleComponent extends React.Component<
}

private onConsoleWasExpanded = (): void => {
if (this.props.isConsoleExpanded && this.consoleHeaderElement) {
this.consoleHeaderElement.focus();
}
useNotificationConsole.getState().setConsoleAnimationFinished(true);
};

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,13 @@ exports[`NotificationConsoleComponent renders the console 1`] = `
className="notificationConsoleContainer"
>
<div
aria-expanded={false}
aria-label="Console"
className="notificationConsoleHeader"
id="notificationConsoleHeader"
onClick={[Function]}
onKeyDown={[Function]}
role="button"
tabIndex={0}
>
<div
Expand Down Expand Up @@ -71,12 +74,8 @@ exports[`NotificationConsoleComponent renders the console 1`] = `
</span>
</div>
<div
aria-expanded={false}
aria-label="Console"
className="expandCollapseButton"
data-test="NotificationConsole/ExpandCollapseButton"
role="button"
tabIndex={0}
>
<img
alt="Expand icon"
Expand Down Expand Up @@ -176,10 +175,13 @@ exports[`NotificationConsoleComponent renders the console 2`] = `
className="notificationConsoleContainer"
>
<div
aria-expanded={false}
aria-label="Console"
className="notificationConsoleHeader"
id="notificationConsoleHeader"
onClick={[Function]}
onKeyDown={[Function]}
role="button"
tabIndex={0}
>
<div
Expand Down Expand Up @@ -244,12 +246,8 @@ exports[`NotificationConsoleComponent renders the console 2`] = `
</span>
</div>
<div
aria-expanded={false}
aria-label="Console"
className="expandCollapseButton"
data-test="NotificationConsole/ExpandCollapseButton"
role="button"
tabIndex={0}
>
<img
alt="Expand icon"
Expand Down

0 comments on commit eb69ad1

Please sign in to comment.