]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-16820 Text alternative is missing
authorMathieu Suen <mathieu.suen@sonarsource.com>
Thu, 25 Aug 2022 09:22:40 +0000 (11:22 +0200)
committersonartech <sonartech@sonarsource.com>
Fri, 26 Aug 2022 20:03:25 +0000 (20:03 +0000)
server/sonar-web/src/main/js/components/controls/BackButton.tsx
server/sonar-web/src/main/js/components/controls/Tooltip.tsx
server/sonar-web/src/main/js/components/controls/__tests__/__snapshots__/BackButton-test.tsx.snap
server/sonar-web/src/main/js/components/controls/__tests__/__snapshots__/Tooltip-test.tsx.snap

index 68cc3368223447bbf0229ceaa779e83755cb7112..5ffe0fa483f33dcfe279fe81d36b218262016e92 100644 (file)
@@ -39,14 +39,17 @@ export default class BackButton extends React.PureComponent<Props> {
     }
   };
 
-  renderIcon = () => (
-    <svg height="24" viewBox="0 0 21 24" width="21">
-      <path
-        d="M3.845 12.9992l5.993 5.993.052.056c.049.061.093.122.129.191.082.159.121.339.111.518-.006.102-.028.203-.064.298-.149.39-.537.652-.954.644-.102-.002-.204-.019-.301-.052-.148-.05-.273-.135-.387-.241l-8.407-8.407 8.407-8.407.056-.052c.061-.048.121-.092.19-.128.116-.06.237-.091.366-.108.076-.004.075-.004.153-.003.155.015.3.052.437.129.088.051.169.115.239.19.246.266.33.656.214.999-.051.149-.135.273-.241.387l-5.983 5.984c5.287-.044 10.577-.206 15.859.013.073.009.091.009.163.027.187.047.359.15.49.292.075.081.136.175.18.276.044.101.072.209.081.319.032.391-.175.775-.521.962-.097.052-.202.089-.311.107-.073.012-.091.01-.165.013H3.845z"
-        fill={this.props.disabled ? colors.disableGrayText : colors.secondFontColor}
-      />
-    </svg>
-  );
+  renderIcon = () => {
+    const { tooltip = translate('issues.return_to_list') } = this.props;
+    return (
+      <svg height="24" viewBox="0 0 21 24" width="21" aria-label={tooltip}>
+        <path
+          d="M3.845 12.9992l5.993 5.993.052.056c.049.061.093.122.129.191.082.159.121.339.111.518-.006.102-.028.203-.064.298-.149.39-.537.652-.954.644-.102-.002-.204-.019-.301-.052-.148-.05-.273-.135-.387-.241l-8.407-8.407 8.407-8.407.056-.052c.061-.048.121-.092.19-.128.116-.06.237-.091.366-.108.076-.004.075-.004.153-.003.155.015.3.052.437.129.088.051.169.115.239.19.246.266.33.656.214.999-.051.149-.135.273-.241.387l-5.983 5.984c5.287-.044 10.577-.206 15.859.013.073.009.091.009.163.027.187.047.359.15.49.292.075.081.136.175.18.276.044.101.072.209.081.319.032.391-.175.775-.521.962-.097.052-.202.089-.311.107-.073.012-.091.01-.165.013H3.845z"
+          fill={this.props.disabled ? colors.disableGrayText : colors.secondFontColor}
+        />
+      </svg>
+    );
+  };
 
   render() {
     const { tooltip = translate('issues.return_to_list') } = this.props;
index 2b7b07f17b4d4239fc6edd0df1cbdca7020cf91a..57452118cb6b83926ab6e6033d34af808f8b34ac 100644 (file)
@@ -382,6 +382,7 @@ export class TooltipInner extends React.Component<TooltipProps, State> {
   };
 
   render() {
+    const isVisible = this.isVisible();
     return (
       <>
         {React.cloneElement(this.props.children, {
@@ -394,10 +395,10 @@ export class TooltipInner extends React.Component<TooltipProps, State> {
           // always well supported. As a fallback, we use aria-labelledby as well.
           // See https://sarahmhigley.com/writing/tooltips-in-wcag-21/
           // See https://css-tricks.com/accessible-svgs/
-          'aria-describedby': this.id,
-          'aria-labelledby': this.id
+          'aria-describedby': isVisible ? this.id : undefined,
+          'aria-labelledby': isVisible ? this.id : undefined
         })}
-        {this.isVisible() && (
+        {isVisible && (
           <EscKeydownHandler onKeydown={this.handleBlur}>
             <TooltipPortal>
               <ScreenPositionFixer ready={isMeasured(this.state)}>
index a4fc44f5eca216a1949f5e12e7d90971fdc569fc..5d932f59cc17027c412b1c1e2db4e3a540f0a924 100644 (file)
@@ -10,6 +10,7 @@ exports[`should handle click 1`] = `
     onClick={[Function]}
   >
     <svg
+      aria-label="issues.return_to_list"
       height="24"
       viewBox="0 0 21 24"
       width="21"
@@ -33,6 +34,7 @@ exports[`should render properly 1`] = `
     onClick={[Function]}
   >
     <svg
+      aria-label="issues.return_to_list"
       height="24"
       viewBox="0 0 21 24"
       width="21"
index a1215a300a6d5b3fbda3f52a88d82079393c8d55..219cc2689cf72e3a71a70d86937a9d973e0392cf 100644 (file)
@@ -15,8 +15,6 @@ exports[`should not render empty tooltips 2`] = `
 exports[`should render 1`] = `
 <Fragment>
   <div
-    aria-describedby="tooltip-1"
-    aria-labelledby="tooltip-1"
     id="tooltip"
     onBlur={[Function]}
     onFocus={[Function]}