Skip to content

Commit 4a11996

Browse files
compulimcorinagum
andcommitted
Use ScreenReaderText in favor of aria-label (#3097)
Co-authored-by: Corina <[email protected]>
1 parent cdae52c commit 4a11996

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
2828
- Fix timestamp should not be narrated more than once.
2929
- Associate the activity text with its attachments, by adding a `role="region"` to the activity DOM element.
3030
- Fixes [#3074](https://github.com/microsoft/BotFramework-WebChat/issues/3074). Keep `props.locale` when sending to the bot, by [@compulim](https://github.com/compulim) in PR [#3095](https://github.com/microsoft/BotFramework-WebChat/issue/3095)
31+
- Fixes [#3096](https://github.com/microsoft/BotFramework-WebChat/issues/3096). Use `<ScreenReaderText>` instead of `aria-label` for message bubbles, by [@compulim](https://github.com/compulim) in PR [#3097](https://github.com/microsoft/BotFramework-WebChat/issue/3097)
3132

3233
## [4.8.0] - 2020-03-05
3334

packages/component/src/Activity/Bubble.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ const Bubble = ({ 'aria-hidden': ariaHidden, children, className, fromUser, nub
102102
};
103103

104104
Bubble.defaultProps = {
105-
'aria-hidden': false,
105+
'aria-hidden': undefined,
106106
children: undefined,
107107
className: '',
108108
fromUser: false,

packages/component/src/Activity/CarouselFilmStrip.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ const WebChatCarouselFilmStrip = ({
128128

129129
return (
130130
<div
131-
aria-label={ariaLabel}
132131
className={classNames(
133132
ROOT_CSS + '',
134133
carouselFilmStripStyleSet + '',
@@ -142,6 +141,7 @@ const WebChatCarouselFilmStrip = ({
142141
ref={scrollableRef}
143142
role="group"
144143
>
144+
<ScreenReaderText text={ariaLabel} />
145145
{renderAvatar && <div className="webchat__carouselFilmStrip__avatar">{renderAvatar()}</div>}
146146
<div className="content">
147147
{!!activityDisplayText && (
@@ -155,7 +155,7 @@ const WebChatCarouselFilmStrip = ({
155155
}
156156
})}
157157
</Bubble>
158-
<div className="filler" />
158+
<div aria-hidden={true} className="filler" />
159159
</div>
160160
)}
161161
<ul className={classNames({ webchat__carousel__item_indented: indented })} ref={itemContainerRef}>

packages/component/src/Activity/StackedLayout.js

+5-5
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ const StackedLayout = ({ activity, children, nextVisibleActivity }) => {
118118

119119
return (
120120
<div
121-
aria-label={ariaLabel}
122121
className={classNames(
123122
ROOT_CSS + '',
124123
stackedLayoutStyleSet + '',
@@ -137,11 +136,12 @@ const StackedLayout = ({ activity, children, nextVisibleActivity }) => {
137136
)}
138137
role="group"
139138
>
139+
<ScreenReaderText text={ariaLabel} />
140140
{renderAvatar && <div className="webchat__stackedLayout__avatar">{renderAvatar()}</div>}
141141
<div className="webchat__stackedLayout__content">
142142
{!!activityDisplayText && (
143-
<div className="webchat__row message">
144-
<Bubble aria-hidden={true} className="bubble" fromUser={fromUser} nub={!!indented}>
143+
<div aria-hidden={true} className="webchat__row message">
144+
<Bubble className="bubble" fromUser={fromUser} nub={!!indented}>
145145
{children({
146146
activity,
147147
attachment: {
@@ -168,10 +168,10 @@ const StackedLayout = ({ activity, children, nextVisibleActivity }) => {
168168
))}
169169
<div className={classNames('webchat__row', { webchat__stacked_item_indented: indented })}>
170170
{renderActivityStatus()}
171-
<div className="filler" />
171+
<div aria-hidden={true} className="filler" />
172172
</div>
173173
</div>
174-
<div className="filler" />
174+
<div aria-hidden={true} className="filler" />
175175
</div>
176176
);
177177
};

packages/component/src/BasicTranscript.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ const BasicTranscript = ({ className }) => {
113113
return (
114114
<div className={classNames(ROOT_CSS + '', className + '')} dir={direction} role="log">
115115
<ScrollToBottomPanel className={PANEL_CSS + ''}>
116-
<div className={FILLER_CSS} />
116+
<div aria-hidden={true} className={FILLER_CSS} />
117117
<ul
118118
aria-atomic="false"
119119
aria-live="polite"

0 commit comments

Comments
 (0)