]> git.gir.st - VimFx.git/blob - extension/lib/vim-frame.coffee
Fix `<label>`s getting hints too often
[VimFx.git] / extension / lib / vim-frame.coffee
1 ###
2 # Copyright Anton Khodakivskiy 2012, 2013.
3 # Copyright Simon Lydell 2013, 2014, 2015.
4 #
5 # This file is part of VimFx.
6 #
7 # VimFx is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation, either version 3 of the License, or
10 # (at your option) any later version.
11 #
12 # VimFx is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
16 #
17 # You should have received a copy of the GNU General Public License
18 # along with VimFx. If not, see <http://www.gnu.org/licenses/>.
19 ###
20
21 # This file is the equivalent to vim.coffee. `vim.window` is called
22 # `vim.content` to be consistent with Firefox’s frame script terminology and to
23 # avoid confusion about what it represents. There is one `VimFrame` instance for
24 # each tab. It mostly tries to mimic the `Vim` class in vim.coffee, but also
25 # keeps track of web page state. `VimFrame` is not part of the public API.
26
27 messageManager = require('./message-manager')
28 ScrollableElements = require('./scrollable-elements')
29 utils = require('./utils')
30
31 MINIMUM_SCROLL = 5
32
33 class VimFrame
34 constructor: (@content) ->
35 @mode = 'normal'
36
37 @resetState()
38
39 messageManager.listen('modeChange', ({mode}) =>
40 @mode = mode
41 )
42
43 messageManager.listen('markPageInteraction',
44 @markPageInteraction.bind(this))
45
46 # If the target is the topmost document, reset everything. Otherwise filter
47 # out elements belonging to the target frame. On some sites, such as Gmail,
48 # some elements might be dead at this point.
49 resetState: (target = @content.document) ->
50 if target == @content.document
51 @state =
52 hasInteraction: false
53 shouldRefocus: false
54 marks: {}
55 autofocusPrevented: false
56 lastFocusedTextInput: null
57 scrollableElements: new ScrollableElements(@content, MINIMUM_SCROLL)
58 markerElements: []
59 inputs: null
60
61 else
62 isDead = (element) ->
63 return Cu.isDeadWrapper(element) or element.ownerDocument == target
64 check = (prop) =>
65 @state[prop] = null if @state[prop] and isDead(@state[prop])
66
67 check('lastFocusedTextInput')
68 @state.scrollableElements.reject(isDead)
69 # `markerElements` and `inputs` could theoretically need to be filtered
70 # too at this point. YAGNI until an issue arises from it.
71
72 options: (prefs) -> messageManager.get('options', {prefs})
73
74 enterMode: (@mode, args...) ->
75 messageManager.send('vimMethod', {
76 method: 'enterMode'
77 args: [@mode, args...]
78 })
79
80 onInput: (event) ->
81 focusType = utils.getFocusType(event.originalTarget)
82 suppress = messageManager.get('consumeKeyEvent', {focusType})
83 return suppress
84
85 notify: (args...) ->
86 messageManager.send('vimMethod', {method: 'notify', args})
87
88 markPageInteraction: -> @state.hasInteraction = true
89
90 module.exports = VimFrame
Imprint / Impressum