-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
fix(dropdown): Menu focusout close handling #2252
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
tmorehouse
merged 16 commits into
bootstrap-vue:dev
from
jacobmllr95:fix-dropdown-menu-focusout-handling
Dec 10, 2018
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
1fb338f
fix(dropdown): Menu focusout close handling
jacobmllr95 3d1447b
Improve focus handling
jacobmllr95 cb7c709
Revert "Improve focus handling"
jacobmllr95 cee905d
TEMP: Fix Safari
jacobmllr95 a8b53cd
Use `target` insted of `relatedTarget`
jacobmllr95 8175472
Fix dropdown focus and click-out handling
jacobmllr95 4d5c244
Remove redudant import
jacobmllr95 763ad40
Remove reduant failing test
jacobmllr95 d3a162c
Revert to old "clone on dropdown item click" logic
jacobmllr95 45dd4e6
Fix toggle functionality
jacobmllr95 11f7d63
Fix dropleft and dropright placement options
jacobmllr95 fe37d72
Return focus to toggle when dropdown item is clicked
jacobmllr95 bfb1d7f
Further improve new mixins
jacobmllr95 0858dc6
Fix event reference error
jacobmllr95 0c919eb
Declare non-reactive properties in mixins on `beforeCreate()`
jacobmllr95 1989544
Make `toggler` computed prop reference error safe
jacobmllr95 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
import { contains, eventOff, eventOn } from '../utils/dom' | ||
|
||
export default { | ||
data () { | ||
return { | ||
listenForClickOut: false | ||
} | ||
}, | ||
watch: { | ||
listenForClickOut (newValue, oldValue) { | ||
if (newValue !== oldValue) { | ||
eventOff(this.clickOutElement, this.clickOutEventName, this._clickOutHandler, false) | ||
if (newValue) { | ||
eventOn(this.clickOutElement, this.clickOutEventName, this._clickOutHandler, false) | ||
} | ||
} | ||
} | ||
}, | ||
beforeCreate () { | ||
// Declare non-reactive properties | ||
this.clickOutElement = null | ||
this.clickOutEventName = null | ||
}, | ||
mounted () { | ||
if (!this.clickOutElement) { | ||
this.clickOutElement = document | ||
} | ||
if (!this.clickOutEventName) { | ||
this.clickOutEventName = 'ontouchstart' in document.documentElement ? 'touchstart' : 'click' | ||
} | ||
if (this.listenForClickOut) { | ||
eventOn(this.clickOutElement, this.clickOutEventName, this._clickOutHandler, false) | ||
} | ||
}, | ||
beforeDestroy () { | ||
eventOff(this.clickOutElement, this.clickOutEventName, this._clickOutHandler, false) | ||
}, | ||
methods: { | ||
isClickOut (evt) { | ||
return !contains(this.$el, evt.target) | ||
}, | ||
_clickOutHandler (evt) { | ||
if (this.clickOutHandler && this.isClickOut(evt)) { | ||
this.clickOutHandler(evt) | ||
} | ||
} | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
import { eventOff, eventOn } from '../utils/dom' | ||
|
||
export default { | ||
data () { | ||
return { | ||
listenForFocusIn: false | ||
} | ||
}, | ||
watch: { | ||
listenForFocusIn (newValue, oldValue) { | ||
if (newValue !== oldValue) { | ||
eventOff(this.focusInElement, 'focusin', this._focusInHandler, false) | ||
if (newValue) { | ||
eventOn(this.focusInElement, 'focusin', this._focusInHandler, false) | ||
} | ||
} | ||
} | ||
}, | ||
beforeCreate () { | ||
// Declare non-reactive properties | ||
this.focusInElement = null | ||
}, | ||
mounted () { | ||
if (!this.focusInElement) { | ||
this.focusInElement = document | ||
} | ||
if (this.listenForFocusIn) { | ||
eventOn(this.focusInElement, 'focusin', this._focusInHandler, false) | ||
} | ||
}, | ||
beforeDestroy () { | ||
eventOff(this.focusInElement, 'focusin', this._focusInHandler, false) | ||
}, | ||
methods: { | ||
_focusInHandler (evt) { | ||
if (this.focusInHandler) { | ||
this.focusInHandler(evt) | ||
} | ||
} | ||
} | ||
} |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.