From 9cb099e5f6aad33c70d986bd6a48668e54ee211c Mon Sep 17 00:00:00 2001 From: Alex Yatskov Date: Thu, 5 May 2016 20:06:13 -0700 Subject: Optimization --- ext/fg/js/frame.js | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-) (limited to 'ext/fg/js/frame.js') diff --git a/ext/fg/js/frame.js b/ext/fg/js/frame.js index 80fa099a..5a910dfc 100644 --- a/ext/fg/js/frame.js +++ b/ext/fg/js/frame.js @@ -43,9 +43,21 @@ function onDomContentLoaded() { function onMessage(e) { const {action, params} = e.data, handlers = { - disableAction: ({mode, index}) => { - const matches = document.querySelectorAll(`.action-link[data-index="${index}"][data-mode="${mode}"]`); - matches[0].classList.add('disabled'); + setActionStates: (states) => { + for (let i = 0, count = states.length; i < count; ++i) { + const state = states[i]; + for (const mode in state) { + const matches = document.querySelectorAll(`.action-link[data-index="${i}"][data-mode="${mode}"]`); + if (matches.length > 0) { + const classes = matches[0].classList; + if (state[mode]) { + classes.remove('disabled'); + } else { + classes.add('disabled'); + } + } + } + } } }; -- cgit v1.2.3