mirror of
https://github.com/nextcloud/server.git
synced 2026-06-10 17:23:59 -04:00
Merge pull request #37780 from nextcloud/enh/a11y-focus-dialog
This commit is contained in:
commit
721de348ec
5 changed files with 25 additions and 4 deletions
21
core/src/jquery/ocdialog.js
vendored
21
core/src/jquery/ocdialog.js
vendored
|
|
@ -24,6 +24,7 @@
|
|||
*/
|
||||
|
||||
import $ from 'jquery'
|
||||
import { createFocusTrap } from 'focus-trap'
|
||||
import { isA11yActivation } from '../Util/a11y.js'
|
||||
|
||||
$.widget('oc.ocdialog', {
|
||||
|
|
@ -114,9 +115,9 @@ $.widget('oc.ocdialog', {
|
|||
|
||||
this._setOptions(this.options)
|
||||
this._createOverlay()
|
||||
this._useFocusTrap()
|
||||
},
|
||||
_init() {
|
||||
this.$dialog.focus()
|
||||
this._trigger('open')
|
||||
},
|
||||
_setOption(key, value) {
|
||||
|
|
@ -252,6 +253,23 @@ $.widget('oc.ocdialog', {
|
|||
this.overlay = null
|
||||
}
|
||||
},
|
||||
_useFocusTrap() {
|
||||
// Create global stack if undefined
|
||||
Object.assign(window, { _nc_focus_trap: window._nc_focus_trap || [] })
|
||||
|
||||
const dialogElement = this.$dialog[0]
|
||||
this.focusTrap = createFocusTrap(dialogElement, {
|
||||
allowOutsideClick: true,
|
||||
trapStack: window._nc_focus_trap,
|
||||
fallbackFocus: dialogElement,
|
||||
})
|
||||
|
||||
this.focusTrap.activate()
|
||||
},
|
||||
_clearFocusTrap() {
|
||||
this.focusTrap?.deactivate()
|
||||
this.focusTrap = null
|
||||
},
|
||||
widget() {
|
||||
return this.$dialog
|
||||
},
|
||||
|
|
@ -262,6 +280,7 @@ $.widget('oc.ocdialog', {
|
|||
this.enterCallback = null
|
||||
},
|
||||
close() {
|
||||
this._clearFocusTrap()
|
||||
this._destroyOverlay()
|
||||
const self = this
|
||||
// Ugly hack to catch remaining keyup events.
|
||||
|
|
|
|||
4
dist/core-main.js
vendored
4
dist/core-main.js
vendored
File diff suppressed because one or more lines are too long
2
dist/core-main.js.map
vendored
2
dist/core-main.js.map
vendored
File diff suppressed because one or more lines are too long
1
package-lock.json
generated
1
package-lock.json
generated
|
|
@ -44,6 +44,7 @@
|
|||
"debounce": "^1.2.1",
|
||||
"dompurify": "^2.3.6",
|
||||
"escape-html": "^1.0.3",
|
||||
"focus-trap": "^7.4.0",
|
||||
"focus-visible": "^5.2.0",
|
||||
"handlebars": "^4.7.7",
|
||||
"ical.js": "^1.4.0",
|
||||
|
|
|
|||
|
|
@ -69,6 +69,7 @@
|
|||
"debounce": "^1.2.1",
|
||||
"dompurify": "^2.3.6",
|
||||
"escape-html": "^1.0.3",
|
||||
"focus-trap": "^7.4.0",
|
||||
"focus-visible": "^5.2.0",
|
||||
"handlebars": "^4.7.7",
|
||||
"ical.js": "^1.4.0",
|
||||
|
|
|
|||
Loading…
Reference in a new issue