diff options
Diffstat (limited to 'src/js/app.js')
-rw-r--r-- | src/js/app.js | 30 |
1 files changed, 7 insertions, 23 deletions
diff --git a/src/js/app.js b/src/js/app.js index bfebf1c..9ad4ea1 100644 --- a/src/js/app.js +++ b/src/js/app.js @@ -1,14 +1,17 @@ import Mustache from 'mustache'; -import * as audiomixer from './agl_stubs_audiomixer'; -import { setValue } from './sliders'; var template; +var controls = [ + { id: 'MAIN', name: 'Main', volume: 50 }, +]; + function render_sliders(sliders) { var sliderContainer = document.getElementById('SliderContainer'); for( var i=0; i<sliders.length; i++) { var node = Mustache.render(template, sliders[i]); sliderContainer.innerHTML += node; + console.log(sliderContainer.innerHTML) } } @@ -16,24 +19,5 @@ export function init() { template = document.getElementById('slider-template').innerHTML; Mustache.parse(template); - audiomixer.list_controls().then(function(result) { - var sliders = []; - for( var i=0; i<result.length; i++) { - sliders.push({ - id: result[i].control, - name: result[i].control, - value: Math.floor(result[i].volume*100) - }); - } - - render_sliders(sliders); - }).catch(function(error) { - console.error('ERROR loading sliders', error); - }); - - audiomixer.on_volume_changed(function(data){ - setValue(document.getElementById("slider-"+data.control), Math.ceil(data.value*100), true); - }).then(function(result) { - console.log("SUBSCRIBED TO VOLUME CHANGED"); - }); -}
\ No newline at end of file + render_sliders(controls); +} |