-
Notifications
You must be signed in to change notification settings - Fork 27.4k
Updated ngAria API Docs and Developer Guide #10031
Conversation
Also includes new section on ngMessages
So, we can have runnable examples in the docs pages, there are examples of this, eg https://github.com/angular/angular.js/blob/master/src/Angular.js#L664-L698 which will be rendered as an iframe with a little mini-application, it's kinda nice. I think it would be good to do something like this with the ngAria examples (and maybe also include a little snippet informing people how to enable accessibility features to try them with). The content itself looks great, I just feel like the "show and tell" style examples are better for people |
@caitp great! I'll work those in, thanks for the prompt suggestion! |
@caitp the thing to look at with ngAria is the attributes it spits out... I wrote a directive that prints the affected markup, but I think it's less clear if the directive itself is exposed to developers. See this code: <style>
md-checkbox {
background-color: black;
color: white;
}
pre {
white-space: pre-wrap;
}
</style>
<div print-markup>
<form>
<md-checkbox ng-model="user.subscribe" required>
Fake Checkbox
</md-checkbox>
</form>
<div id="output"></div>
</div>
<script>
angular.module('ngAria_ngModelExample', ['ngAria'])
.directive('printMarkup', function() {
return {
restrict: 'A',
link: function($scope, $el, $attrs) {
var form = $el[0].querySelector('form');
$el[0].querySelector('#output').innerHTML = '<pre>' +
form.innerHTML.replace(/&/g, '&').replace(/</g, '<') +
'</pre>';
}
}
});
</script> Which outputs: Fake Checkbox
<md-checkbox ng-model="user.subscribe" required="" class="ng-pristine ng-untouched ng-valid" tabindex="0">
Fake Checkbox
</md-checkbox> Is there any precedent for including directives that aren't shown in the example? |
4e76207
to
fc2bec2
Compare
@caitp @btford I added a few runnable examples to the Developer Guide. I didn't add them for every directive...that seemed like overkill. I'll defer to you on whether the live examples I added are actually useful. I have an outstanding question about how the runnable examples are set up––see my previous comment. I can always revert those two to plain HTML if that means we can get this thing merged in sooner. One issue: the "ngClick and ngDblclick" section in the Developer Guide for some reason won't produce HTML from Markdown. I can't figure out why. The accompanying heading prints out "###Example" no matter what. Thanks! |
<example module="ngAria_ngDisabledExample" deps="angular-aria.js"> | ||
<file name="index.html"> | ||
<form> | ||
<div ng-model="someModel" show-attrs> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The show-attrs directive doesn't seem to be working in this one when I run it
fc2bec2
to
e260fdc
Compare
@caitp thanks for the great feedback! I hooked up the checkboxes and made the two examples a little more thorough. I think it will be helpful to see an accessible custom control in action (like |
Very cool! It's getting there --- the last thing is that Other than that, looks awesome |
Ahh! I didn't realize jQuery was an option. I'm just fixing the keyboard accessibility and I'll have an update shortly. |
e260fdc
to
9c26cd9
Compare
Alright @caitp, I posted an update using |
jqLite is there if jQuery isn't --- but it doesn't matter a whole lot, it's fine either way. Could probably make it a bit smaller using jquery instead of pure DOM apis though. Do you guys think material is stable enough at this point to be used for the docs app? It would be really nice to showcase it in the angularjs docs. Might be worth filing a separate issue to track doing that if people agree with me that it's a good idea. |
9c26cd9
to
72c9818
Compare
So, the second demo is still broken in FF, I haven't dug in to figure out why, but it seems to be working well on Chromium --- might just be a gecko bug. It should be reproducible for them once the docs are landed, so I'll land it now |
72c9818
to
8a39e0d
Compare
@caitp I just pushed an update, there were multiple As far as Material goes, as soon as we have an official distribution channel we will be able to discuss that. There have been breaking changes in the past 2 milestones, so I personally don't think we're there yet. But, a project incorporating Material into the Angular docs would take time, so I'm sure by the time it is finished the API will be stabilized. |
Yup, the fix looks good now :) |
This PR contains updates to the ngAria API documentation as well as the Developer Guide.
@caitp @btford the more thorough examples and explanations are in the Developer Guide: is there enough detail in the API doc portion?