diff options
author | Alex Yatskov <alex@foosoft.net> | 2016-05-21 22:59:29 -0700 |
---|---|---|
committer | Alex Yatskov <alex@foosoft.net> | 2016-05-21 22:59:29 -0700 |
commit | 997947caedc109ba3e21017b38de36e21c4a7255 (patch) | |
tree | d7fe382b65db6db0d93c9bb7bf88ba07223ce0c3 /ext/fg/js/frame.js | |
parent | f65e9f2570636b11aa17fc82bbeeb25df6f7b550 (diff) |
Cleanup
Diffstat (limited to 'ext/fg/js/frame.js')
-rw-r--r-- | ext/fg/js/frame.js | 33 |
1 files changed, 16 insertions, 17 deletions
diff --git a/ext/fg/js/frame.js b/ext/fg/js/frame.js index 66d3a054..a61bb9ee 100644 --- a/ext/fg/js/frame.js +++ b/ext/fg/js/frame.js @@ -42,26 +42,25 @@ function onDomContentLoaded() { } function onMessage(e) { - const {action, params} = e.data, handlers = { - setActionState: ({index, state, sequence}) => { - for (const mode in state) { - const matches = document.querySelectorAll(`.action-link[data-sequence="${sequence}"][data-index="${index}"][data-mode="${mode}"]`); - if (matches.length === 0) { - return; - } + const {action, params} = e.data, method = window['api_' + action]; + if (typeof(method) === 'function') { + method(params); + } +} - const classes = matches[0].classList; - if (state[mode]) { - classes.remove('disabled'); - } else { - classes.add('disabled'); - } - } +function api_setActionState({index, state, sequence}) { + for (const mode in state) { + const matches = document.querySelectorAll(`.action-link[data-sequence="${sequence}"][data-index="${index}"][data-mode="${mode}"]`); + if (matches.length === 0) { + return; } - }; - if (handlers.hasOwnProperty(action)) { - handlers[action](params); + const classes = matches[0].classList; + if (state[mode]) { + classes.remove('disabled'); + } else { + classes.add('disabled'); + } } } |