From: Mike Frysinger Date: Sun, 1 Sep 2013 09:29:50 +0000 (-0400) Subject: metadata: add a bit more info to the tab X-Git-Tag: v3.0~8 X-Git-Url: https://git.wh0rd.org/?p=chrome-ext%2Fmusic-player-client.git;a=commitdiff_plain;h=e9aee305f74ecbec9552d21836c50609cab6d954;ds=sidebyside metadata: add a bit more info to the tab --- diff --git a/main.html b/main.html index 8793bf6..1af66ee 100644 --- a/main.html +++ b/main.html @@ -112,7 +112,11 @@ div#footer { diff --git a/main.js b/main.js index b83e0a2..88c146f 100644 --- a/main.js +++ b/main.js @@ -192,7 +192,6 @@ function init_ui(local_keys, sync_keys, options) { /* Setup control tab */ ui_mpc_status = document.getElementById('status'); - ui_mpc_metadata = document.getElementById('metadata'); [ 'consume', 'next', 'pause', 'play', 'previous', 'random', 'repeat', 'seekcur', 'setvol', 'single', 'stop', @@ -202,6 +201,13 @@ function init_ui(local_keys, sync_keys, options) { ele.title = id; }); + /* Setup metadata tab */ + [ + 'album', 'artist', 'date', 'file', 'title', + ].forEach(function(id) { + window['ui_mpc_metadata_' + id] = document.getElementById('metadata.' + id); + }); + /* Setup options tab */ document.getElementById('connect').onclick = mpc_connect; local_keys.forEach(function(id) { @@ -238,10 +244,12 @@ function update_ui(state, cmd) { return; } - if ('file' in state) { - // Hack: should be a real object. - ui_mpc_metadata.innerText = state.file; - } + // Hack: should be a real object. + ui_mpc_metadata_album.innerText = state.Album; + ui_mpc_metadata_artist.innerText = state.Artist; + ui_mpc_metadata_title.innerText = state.Title; + ui_mpc_metadata_date.innerText = state.Date; + ui_mpc_metadata_file.innerText = state.file; var time; if ('time' in state)