blob: f9766e3a859193bf6ffa88e75eff4a639633eb13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
# NOTE(smblott). Ultimately, all of the FindMode-related code should be moved to this file.
# When we use find mode, the selection/focus can end up in a focusable/editable element. In this situation,
# PostFindMode handles two special cases:
# 1. Be an InsertModeBlocker. This prevents keyboard events from dropping us unintentionaly into insert
# mode. This is achieved by inheriting from InsertModeBlocker.
# 2. If the very-next keystroke is Escape, then drop immediately into insert mode.
#
class PostFindMode extends InsertModeBlocker
constructor: (findModeAnchorNode) ->
super
name: "post-find"
singleton: PostFindMode
element = document.activeElement
return @exit() unless element and findModeAnchorNode
# Special cases only arise if the active element can take input. So, exit immediately if it cannot not.
canTakeInput = DomUtils.isSelectable(element) and DomUtils.isDOMDescendant findModeAnchorNode, element
canTakeInput ||= element.isContentEditable
canTakeInput ||= findModeAnchorNode.parentElement?.isContentEditable
return @exit() unless canTakeInput
@push
keydown: (event) ->
if element == document.activeElement and KeyboardUtils.isEscape event
self.exit()
new InsertMode element
DomUtils.suppressKeyupAfterEscape handlerStack
return false
@remove()
true
# Various ways in which we can leave PostFindMode.
@push
focus: (event) => @alwaysContinueBubbling => @exit()
blur: (event) => @alwaysContinueBubbling => @exit()
keydown: (event) => @alwaysContinueBubbling => @exit() if document.activeElement != element
# If element is selectable, then it's already focused. If the user clicks on it, then there's no new
# focus event, so InsertModeTrigger doesn't fire and we don't drop automatically into insert mode.
click: (event) =>
@alwaysContinueBubbling =>
new InsertMode event.target if DomUtils.isDOMDescendant element, event.target
@exit()
root = exports ? window
root.PostFindMode = PostFindMode
|