Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit 4e76207

Browse files
author
Marcy Sutton
committed
docs(ngAria): Add Usage Details
1 parent ffb14ae commit 4e76207

File tree

3 files changed

+141
-23
lines changed

3 files changed

+141
-23
lines changed

docs/content/api/index.ngdoc

+21
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,27 @@ or JavaScript callbacks.
161161
</tr>
162162
</table>
163163

164+
## {@link ngAria ngAria}
165+
166+
Use ngAria to inject common accessibility attributes into directives and improve the experience for users with disabilities.
167+
168+
<div class="alert alert-info">Include the **angular-aria.js** file and set ngAria as a dependency for this to work in your application.</div>
169+
170+
<table class="definition-table spaced">
171+
<tr>
172+
<td>
173+
{@link ngAria#service Services}
174+
</td>
175+
<td>
176+
<p>
177+
The {@link ngAria.$aria $aria} service contains helper methods for applying ARIA attributes to HTML.
178+
<p>
179+
<p>
180+
{@link ngAria.$ariaProvider $ariaProvider} is used for configuring ARIA attributes.
181+
</p>
182+
</td>
183+
</tr>
184+
</table>
164185

165186
## {@link ngResource ngResource}
166187

docs/content/guide/accessibility.ngdoc

+48-1
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,24 @@ screen reader users won't accidentally focus on "mystery elements". Managing tab
106106
child control can be complex and affect performance, so it’s best to just stick with the default
107107
`display: none` CSS. See the [fourth rule of ARIA use](http://www.w3.org/TR/aria-in-html/#fourth-rule-of-aria-use).
108108

109+
### Example
110+
```css
111+
.ng-hide {
112+
display: block;
113+
opacity: 0;
114+
}
115+
```
116+
```html
117+
<div ng-show="false" class="ng-hide" aria-hidden="true"></div>
118+
```
119+
120+
Becomes:
121+
122+
```html
123+
<div ng-show="true" aria-hidden="false"></div>
124+
```
125+
*Note: Child links, buttons or other interactive controls must also be removed from the tab order.*
126+
109127
<h2 id="nghide">ngHide</h2>
110128

111129
>The [ngHide](https://docs.angularjs.org/api/ng/directive/ngHide) directive shows or hides the
@@ -123,14 +141,43 @@ Even with this, you must currently still add `ng-keypress` to non-interactive el
123141
[currently ongoing](https://github.com/angular/angular.js/issues/9254) about whether ngAria
124142
should also bind `ng-keypress` to be more useful.
125143

144+
### Example
145+
146+
```html
147+
<div ng-click="toggleMenu()">
148+
```
149+
150+
Becomes:
151+
152+
```html
153+
<div ng-click="toggleMenu()" tabindex="0">
154+
```
155+
*Note: ngAria still requires `ng-keypress` to be added manually to non-native controls like divs.*
156+
126157
<h2 id="ngmessages">ngMessages</h2>
127158

128159
The new ngMessages module makes it easy to display form validation or other messages with priority
129160
sequencing and animation. To expose these visual messages to screen readers,
130161
ngAria injects `aria-live="polite"`, causing them to be read aloud any time a message is shown,
131162
regardless of the user's focus location.
132163

133-
* * *
164+
### Example
165+
166+
```html
167+
<div ng-messages="myForm.myName.$error">
168+
<div ng-message="required">You did not enter a field</div>
169+
<div ng-message="maxlength">Your field is too long</div>
170+
</div>
171+
```
172+
173+
Becomes:
174+
175+
```html
176+
<div ng-messages="myForm.myName.$error" aria-live="polite">
177+
<div ng-message="required">You did not enter a field</div>
178+
<div ng-message="maxlength">Your field is too long</div>
179+
</div>
180+
```
134181

135182
##Disabling attributes
136183
The attribute magic of ngAria may not work for every scenario. To disable individual attributes,

src/ngAria/aria.js

+72-22
Original file line numberDiff line numberDiff line change
@@ -5,33 +5,39 @@
55
* @name ngAria
66
* @description
77
*
8-
* The `ngAria` module provides support for adding <abbr title="Accessible Rich Internet Applications">ARIA</abbr>
9-
* attributes that convey state or semantic information about the application in order to allow assistive technologies
10-
* to convey appropriate information to persons with disabilities.
8+
* The `ngAria` module provides support for common
9+
* [<abbr title="Accessible Rich Internet Applications">ARIA</abbr>](http://www.w3.org/TR/wai-aria/)
10+
* attributes that convey state or semantic information about the application for users
11+
* of assistive technologies, such as screen readers.
1112
*
1213
* <div doc-module-components="ngAria"></div>
1314
*
14-
* # Usage
15-
* To enable the addition of the ARIA tags, just require the module into your application and the tags will
16-
* hook into your ng-show/ng-hide, input, textarea, button, select and ng-required directives and adds the
17-
* appropriate ARIA attributes.
15+
* ## Usage
1816
*
19-
* Currently, the following ARIA attributes are implemented:
17+
* For ngAria to do its magic, simply include the module as a dependency. The directives supported
18+
* by ngAria are:
19+
* `ngModel`, `ngDisabled`, `ngShow`, `ngHide`, `ngClick`, `ngDblClick`, and `ngMessages`.
2020
*
21-
* + aria-hidden
22-
* + aria-checked
23-
* + aria-disabled
24-
* + aria-required
25-
* + aria-invalid
26-
* + aria-multiline
27-
* + aria-valuenow
28-
* + aria-valuemin
29-
* + aria-valuemax
30-
* + tabindex
21+
* Below is a more detailed breakdown of the attributes handled by ngAria:
3122
*
32-
* You can disable individual ARIA attributes by using the {@link ngAria.$ariaProvider#config config} method.
23+
* | Directive | Supported Attributes |
24+
* |---------------------------------------------|----------------------------------------------------------------------------------------|
25+
* | {@link ng.directive:ngModel ngModel} | aria-checked, aria-valuemin, aria-valuemax, aria-valuenow, aria-invalid, aria-required |
26+
* | {@link ng.directive:ngDisabled ngDisabled} | aria-disabled |
27+
* | {@link ng.directive:ngShow ngShow} | aria-hidden |
28+
* | {@link ng.directive:ngHide ngHide} | aria-hidden |
29+
* | {@link ng.directive:ngClick ngClick} | tabindex |
30+
* | {@link ng.directive:ngDblclick ngDblclick} | tabindex |
31+
* | {@link module:ngMessages ngMessages} | aria-live |
32+
*
33+
* Find out more information about each directive by reading the
34+
* {@link guide/accessibility ngAria Developer Guide}.
35+
*
36+
*
37+
* ###Disabling Attibutes
38+
* It's possible to disable individual attributes added by ngAria with the
39+
* {@link ngAria.$ariaProvider#config config} method.
3340
*/
34-
3541
/* global -ngAriaModule */
3642
var ngAriaModule = angular.module('ngAria', ['ng']).
3743
provider('$aria', $AriaProvider);
@@ -42,10 +48,20 @@ var ngAriaModule = angular.module('ngAria', ['ng']).
4248
*
4349
* @description
4450
*
45-
* Used for configuring ARIA attributes.
51+
* Used for configuring the ARIA attributes injected and managed by ngAria.
52+
*
53+
* ```js
54+
* angular.module('myApp', ['ngAria'], function config($ariaProvider) {
55+
* $ariaProvider.config({
56+
* ariaValue: true,
57+
* tabindex: false
58+
* });
59+
* });
60+
*```
4661
*
4762
* ## Dependencies
4863
* Requires the {@link ngAria} module to be installed.
64+
*
4965
*/
5066
function $AriaProvider() {
5167
var config = {
@@ -108,7 +124,41 @@ function $AriaProvider() {
108124
*
109125
* @description
110126
*
111-
* Contains helper methods for applying ARIA attributes to HTML
127+
* The $aria service contains helper methods for applying common
128+
* [ARIA](http://www.w3.org/TR/wai-aria/) attributes to HTML directives.
129+
*
130+
* ngAria injects common accessibility attributes that tell assistive technologies when HTML
131+
* elements are enabled, selected, hidden, and more. To see how this is performed with ngAria,
132+
* let's review a code snippet from ngAria itself:
133+
*
134+
*```js
135+
* ngAriaModule.directive('ngDisabled', ['$aria', function($aria) {
136+
* return $aria.$$watchExpr('ngDisabled', 'aria-disabled');
137+
* }])
138+
*```
139+
* Shown above, the ngAria module creates a directive with the same signature as the
140+
* traditional `ng-disabled` directive. But this ngAria version is dedicated to
141+
* solely managing accessibility attributes. The internal `$aria` service is used to watch the
142+
* boolean attribute `ngDisabled`. If it has not been explicitly set by the developer,
143+
* `aria-disabled` is injected as an attribute with its value synchronized to the value in
144+
* `ngDisabled`.
145+
*
146+
* Because ngAria hooks into the `ng-disabled` directive, developers do not have to do
147+
* anything to enable this feature. The `aria-disabled` attribute is automatically managed
148+
* simply as a silent side-effect of using `ng-disabled` with the ngAria module.
149+
*
150+
* The full list of directives that interface with ngAria:
151+
* * **ngModel**
152+
* * **ngShow**
153+
* * **ngHide**
154+
* * **ngClick**
155+
* * **ngDblclick**
156+
* * **ngMessages**
157+
* * **ngDisabled**
158+
*
159+
* Read the {@link guide/accessibility ngAria Developer Guide} for a thorough explanation of each
160+
* directive.
161+
*
112162
*
113163
* ## Dependencies
114164
* Requires the {@link ngAria} module to be installed.

0 commit comments

Comments
 (0)