open-consul/ui/packages/consul-ui/app/components/consul
John Cowen a2fa60681a
ui: a11y modals (#9819)
This PR uses the excellent a11y-dialog to implement our modal functionality across the UI.

This package covers all our a11y needs - overlay click and ESC to close, controlling aria-* attributes, focus trap and restore. It's also very small (1.6kb) and has good DOM and JS APIs and also seems to be widely used and well tested.

There is one downside to using this, and that is:

We made use of a very handy characteristic of the relationship between HTML labels and inputs in order to implement our modals previously. Adding a for="id" attribute to a label meant you can control an <input id="id" /> from anywhere else in the page without having to pass javascript objects around. It's just based on using the same string for the for attribute and the id attribute. This allowed us to easily open our login dialog with CSS from anywhere within the UI without having to manage passing around a javascript object/function/method in order to open the dialog.

We've PRed #9813 which includes an approach which would make passing around JS modal object easier to do. But in the meantime we've added a little 'hack' here using an additional <input /> element and a change listener which allows us to keep this label/input characteristic of our old modals. I'd originally thought this would be a temporary amend in order to wait on #9813 but the more I think about it, the more I think its quite a nice thing to keep - so longer term we may/may not keep this.
2021-03-09 09:30:01 +00:00
..
acl ui: Search/filtering 'Filtered by:' search status (#9442) 2021-01-25 18:13:54 +00:00
auth-method ui: Auth Methods List view (#9617) 2021-02-17 13:56:56 -05:00
discovery-chain ui: Re-organize our %h* placeholders (#9584) 2021-01-26 17:53:45 +00:00
exposed-path/list ui: Add EmptyState for exposed paths, plus additional details (#9445) 2021-01-05 16:59:16 +00:00
external-source ui: Re-organize our %h* placeholders (#9584) 2021-01-26 17:53:45 +00:00
health-check ui: Re-organize our %h* placeholders (#9584) 2021-01-26 17:53:45 +00:00
instance-checks ui: [BUGFIX] Ensure we show the correct count of instances for each node (#9749) 2021-02-11 11:36:36 +00:00
intention ui: a11y modals (#9819) 2021-03-09 09:30:01 +00:00
kind ui: Re-organize our %h* placeholders (#9584) 2021-01-26 17:53:45 +00:00
kv ui: Restrict the viewing/editing of certain UI elements based on the users ACLs (#9687) 2021-02-19 16:42:16 +00:00
loader
lock-session ui: Restrict the viewing/editing of certain UI elements based on the users ACLs (#9687) 2021-02-19 16:42:16 +00:00
metadata/list ui: Remove storybook, add docfy (#9831) 2021-03-08 12:22:01 +00:00
node ui: [BUGFIX] Ensure we show the correct count of instances for each node (#9749) 2021-02-11 11:36:36 +00:00
node-identity/template
nspace ui: Search/filtering 'Filtered by:' search status (#9442) 2021-01-25 18:13:54 +00:00
policy ui: Search/filtering 'Filtered by:' search status (#9442) 2021-01-25 18:13:54 +00:00
role ui: Search/filtering 'Filtered by:' search status (#9442) 2021-01-25 18:13:54 +00:00
service ui: Search/filtering 'Filtered by:' search status (#9442) 2021-01-25 18:13:54 +00:00
service-identity/template
service-instance ui: Search/filtering 'Filtered by:' search status (#9442) 2021-01-25 18:13:54 +00:00
token ui: Search/filtering 'Filtered by:' search status (#9442) 2021-01-25 18:13:54 +00:00
tomography/graph ui: Move linting to the `node:test` script (#9385) 2020-12-14 15:28:35 +00:00
upstream ui: Search/filtering 'Filtered by:' search status (#9442) 2021-01-25 18:13:54 +00:00
upstream-instance ui: Search/filtering 'Filtered by:' search status (#9442) 2021-01-25 18:13:54 +00:00