diff --git a/htdocs/js/mpd.js b/htdocs/js/mpd.js
index ce2fd8e..5112874 100644
--- a/htdocs/js/mpd.js
+++ b/htdocs/js/mpd.js
@@ -222,6 +222,18 @@ function webSocketConnect() {
if(current_app !== 'queue')
break;
+ if (obj.totalTime > 0) {
+ var hours = Math.floor(obj.totalTime / 3600);
+ var minutes = Math.floor(obj.totalTime / 60) - hours * 60;
+ var seconds = obj.totalTime - hours * 3600 - minutes * 60;
+
+ $('#panel-heading-info').text('Total: ' +
+ (hours > 0 ? hours + '\u2009h ' + (minutes < 10 ? '0' : '') : '') +
+ minutes + '\u2009m ' + (seconds < 10 ? '0' : '') + seconds + '\u2009s');
+ } else {
+ $('#panel-heading-info').empty();
+ }
+
$('#salamisandwich > tbody').empty();
for (var song in obj.data) {
var minutes = Math.floor(obj.data[song].duration / 60);
From 84b3ea71a4075aa67e7d715493e1d12ef5b84a36 Mon Sep 17 00:00:00 2001
From: eb041592 <35889760+eb041592@users.noreply.github.com>
Date: Wed, 4 Apr 2018 19:44:08 +0200
Subject: [PATCH 17/23] Switch queue's line break before album from HTML to
CSS.
---
htdocs/css/mpd.css | 6 ++++--
htdocs/js/mpd.js | 4 ++--
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/htdocs/css/mpd.css b/htdocs/css/mpd.css
index 8931c92..6579fcc 100644
--- a/htdocs/css/mpd.css
+++ b/htdocs/css/mpd.css
@@ -60,8 +60,10 @@ body {
}
#salamisandwich td:nth-child(2) span {
- font-style:italic;
- font-size:90%;
+ font-style: italic;
+ font-size: 90%;
+
+ display: block;
}
tbody {
diff --git a/htdocs/js/mpd.js b/htdocs/js/mpd.js
index 5112874..a79affa 100644
--- a/htdocs/js/mpd.js
+++ b/htdocs/js/mpd.js
@@ -241,7 +241,7 @@ function webSocketConnect() {
$('#salamisandwich > tbody').append(
"
" + (obj.data[song].pos + 1) + " " +
- "" + obj.data[song].artist + "" + obj.data[song].album + " " +
+ "" + obj.data[song].artist + "" + obj.data[song].album + " " +
"" + obj.data[song].title + " " +
"" + minutes + ":" + (seconds < 10 ? '0' : '') + seconds +
" ");
@@ -361,7 +361,7 @@ function webSocketConnect() {
if (typeof obj.data[item].artist === 'undefined') {
var details = "
" + obj.data[item].title + " ";
} else {
- var details = "
" + obj.data[item].artist + "" + obj.data[item].album + " " + obj.data[item].title + " ";
+ var details = "
" + obj.data[item].artist + "" + obj.data[item].album + " " + obj.data[item].title + " ";
}
$('#salamisandwich > tbody').append(
From c226026a51fc5503223ccae8b68a2ab968caa1e4 Mon Sep 17 00:00:00 2001
From: eb041592 <35889760+eb041592@users.noreply.github.com>
Date: Wed, 4 Apr 2018 21:09:02 +0200
Subject: [PATCH 18/23] Treat album while browsing the same way as in the
queue.
---
htdocs/js/mpd.js | 20 +++++++++++---------
1 file changed, 11 insertions(+), 9 deletions(-)
diff --git a/htdocs/js/mpd.js b/htdocs/js/mpd.js
index a79affa..7765644 100644
--- a/htdocs/js/mpd.js
+++ b/htdocs/js/mpd.js
@@ -241,8 +241,8 @@ function webSocketConnect() {
$('#salamisandwich > tbody').append(
"
" + (obj.data[song].pos + 1) + " " +
- "" + obj.data[song].artist + "" + obj.data[song].album + " " +
- "" + obj.data[song].title + " " +
+ "" + obj.data[song].artist + "" + obj.data[song].album + " " +
+ "" + obj.data[song].title + " " +
"" + minutes + ":" + (seconds < 10 ? '0' : '') + seconds +
" ");
}
@@ -358,15 +358,17 @@ function webSocketConnect() {
var minutes = Math.floor(obj.data[item].duration / 60);
var seconds = obj.data[item].duration - minutes * 60;
- if (typeof obj.data[item].artist === 'undefined') {
- var details = "
" + obj.data[item].title + " ";
- } else {
- var details = "
" + obj.data[item].artist + "" + obj.data[item].album + " " + obj.data[item].title + " ";
- }
+// if (typeof obj.data[item].artist === 'undefined') {
+// var details = "
" + obj.data[item].title + " ";
+// } else {
+// var details = "
" + obj.data[item].artist + "" + obj.data[item].album + " " + obj.data[item].title + " ";
+// }
- $('#salamisandwich > tbody').append(
+ $('#salamisandwich > tbody').append(
"
" +
- " " + details +
+ " " +
+ "" + obj.data[song].artist + "" + obj.data[song].album + " " +
+ "" + obj.data[song].title + " " +
"" + minutes + ":" + (seconds < 10 ? '0' : '') + seconds +
" "
);
From 18417b9ed581270a829ad6cf946a8c530ecaa6e1 Mon Sep 17 00:00:00 2001
From: eb041592 <35889760+eb041592@users.noreply.github.com>
Date: Wed, 4 Apr 2018 22:00:32 +0200
Subject: [PATCH 19/23] Reset #panel-heading-info on update of #panel-heading.
---
htdocs/js/mpd.js | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/htdocs/js/mpd.js b/htdocs/js/mpd.js
index 7765644..ef1ad1d 100644
--- a/htdocs/js/mpd.js
+++ b/htdocs/js/mpd.js
@@ -45,6 +45,8 @@ var app = $.sammy(function() {
socket.send('MPD_API_GET_QUEUE,'+pagination);
$('#panel-heading').text("Queue");
+ $('#panel-heading-info').empty();
+
$('#queue').addClass('active');
}
@@ -121,6 +123,8 @@ var app = $.sammy(function() {
$('#dirble_right').find("tr:gt(0)").remove();
$('#panel-heading').text("Dirble");
+ $('#panel-heading-info').empty();
+
$('#dirble').addClass('active');
$('#next').addClass('hide');
@@ -147,6 +151,8 @@ var app = $.sammy(function() {
$('#dirble_right').find("tr:gt(0)").remove();
$('#panel-heading').text("Dirble");
+ $('#panel-heading-info').empty();
+
$('#dirble').addClass('active');
dirble_stations = false;
From 2cb99de8521cdbe0aaa85eb7526360ebc75f0b77 Mon Sep 17 00:00:00 2001
From: eb041592 <35889760+eb041592@users.noreply.github.com>
Date: Thu, 5 Apr 2018 00:59:39 +0200
Subject: [PATCH 20/23] Revert some changes: There's no need to print the
artist/album for each song while browsing.
---
htdocs/js/mpd.js | 14 +++++++-------
1 file changed, 7 insertions(+), 7 deletions(-)
diff --git a/htdocs/js/mpd.js b/htdocs/js/mpd.js
index ef1ad1d..13fd4e4 100644
--- a/htdocs/js/mpd.js
+++ b/htdocs/js/mpd.js
@@ -364,17 +364,17 @@ function webSocketConnect() {
var minutes = Math.floor(obj.data[item].duration / 60);
var seconds = obj.data[item].duration - minutes * 60;
-// if (typeof obj.data[item].artist === 'undefined') {
-// var details = "
" + obj.data[item].title + " ";
-// } else {
-// var details = "
" + obj.data[item].artist + "" + obj.data[item].album + " " + obj.data[item].title + " ";
-// }
+ if (obj.data[item].artist == null) {
+ var artist = "
";
+ } else {
+ var artist = " " + obj.data[item].artist +
+ "" + obj.data[item].album + " ";
+ }
$('#salamisandwich > tbody').append(
" " +
" " +
- "" + obj.data[song].artist + "" + obj.data[song].album + " " +
- "" + obj.data[song].title + " " +
+ artist + obj.data[item].title + "" +
"" + minutes + ":" + (seconds < 10 ? '0' : '') + seconds +
" "
);
From c9e200a3ef692c3a2198e3772a6bf62b44fad51d Mon Sep 17 00:00:00 2001
From: eb041592 <35889760+eb041592@users.noreply.github.com>
Date: Tue, 10 Apr 2018 21:14:16 +0200
Subject: [PATCH 21/23] Prevent (almost) any wrapping to keep the interface
"clean".
---
htdocs/css/mpd.css | 35 +++++++++++++++++++++++++++++++++--
1 file changed, 33 insertions(+), 2 deletions(-)
diff --git a/htdocs/css/mpd.css b/htdocs/css/mpd.css
index 8931c92..cf908b5 100644
--- a/htdocs/css/mpd.css
+++ b/htdocs/css/mpd.css
@@ -21,6 +21,13 @@ body {
margin-top: 2px;
}
+#breadcrump {
+ display: block;
+
+ overflow: auto;
+ white-space: nowrap;
+}
+
#counter {
font-size: 24px;
margin-top: -6px;
@@ -55,8 +62,24 @@ body {
}
}
-#salamisandwich td:nth-last-child(2), th:nth-last-child(2) {
+h1 {
+ display: block;
+
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+
+td:nth-child(3), th:nth-child(3) {
+ /* This *has* to be placed before
+ any t[dh]:nth-last-child(2) for
+ the override to work. */
+ width: 50%;
+}
+
+td:nth-last-child(2), th:nth-last-child(2) {
text-align: right;
+ width: 6em;
}
#salamisandwich td:nth-child(2) span {
@@ -64,6 +87,14 @@ body {
font-size:90%;
}
+td:nth-child(2), td:nth-last-child(3) {
+ max-width: 0;
+
+ overflow: hidden;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+}
+
tbody {
cursor: pointer;
}
@@ -77,7 +108,7 @@ td:last-child, td:first-child {
z-index: 9999;
}
-/* Positioning */
+/* Positioning */
.notifications.top-right {
right: 10px;
top: 60px;
From ebd357a24a19548f72897b386065d90497993516 Mon Sep 17 00:00:00 2001
From: SuperBFG7
Date: Sun, 22 Apr 2018 20:48:18 +0200
Subject: [PATCH 22/23] fix layout
---
htdocs/css/mpd.css | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/htdocs/css/mpd.css b/htdocs/css/mpd.css
index c70c9c0..269902f 100644
--- a/htdocs/css/mpd.css
+++ b/htdocs/css/mpd.css
@@ -76,11 +76,11 @@ h1 {
white-space: nowrap;
}
-td:nth-child(3), th:nth-child(3) {
+td:nth-child(2), th:nth-child(2) {
/* This *has* to be placed before
any t[dh]:nth-last-child(2) for
the override to work. */
- width: 50%;
+ min-width: 50%;
}
td:nth-last-child(2), th:nth-last-child(2) {
@@ -95,7 +95,8 @@ td:nth-last-child(2), th:nth-last-child(2) {
display: block;
}
-td:nth-child(2), td:nth-last-child(3) {
+td:nth-child(3), td:nth-last-child(3) {
+ min-width: 25%;
max-width: 0;
overflow: hidden;
From e1cb953e94d6809748635acda993da073098b081 Mon Sep 17 00:00:00 2001
From: SuperBFG7
Date: Mon, 23 Apr 2018 13:38:58 +0200
Subject: [PATCH 23/23] layout improvements
---
htdocs/css/mpd.css | 21 ++++++++++++++++-----
htdocs/index.html | 10 +++++-----
htdocs/js/mpd.js | 18 +++++++++---------
3 files changed, 30 insertions(+), 19 deletions(-)
diff --git a/htdocs/css/mpd.css b/htdocs/css/mpd.css
index 269902f..ea64fc8 100644
--- a/htdocs/css/mpd.css
+++ b/htdocs/css/mpd.css
@@ -76,7 +76,7 @@ h1 {
white-space: nowrap;
}
-td:nth-child(2), th:nth-child(2) {
+td:nth-child(4), th:nth-child(4) {
/* This *has* to be placed before
any t[dh]:nth-last-child(2) for
the override to work. */
@@ -85,25 +85,36 @@ td:nth-child(2), th:nth-child(2) {
td:nth-last-child(2), th:nth-last-child(2) {
text-align: right;
- width: 6em;
+ width: 4em;
}
-#salamisandwich td:nth-child(2) span {
+#salamisandwich td:nth-child(4) span {
font-style: italic;
font-size: 90%;
display: block;
}
-td:nth-child(3), td:nth-last-child(3) {
+td:nth-child(2), td:nth-child(3) {
min-width: 25%;
- max-width: 0;
+ max-width: 10em;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
+@media only screen and (max-width: 600px) {
+ td:nth-child(2), td:nth-child(3) {
+ min-width: 0;
+ max-width: 0;
+ }
+ td:nth-child(4), th:nth-child(4) {
+ min-width: 10%;
+ white-space: normal;
+ }
+}
+
tbody {
cursor: pointer;
}
diff --git a/htdocs/index.html b/htdocs/index.html
index 69bbd88..ac05928 100644
--- a/htdocs/index.html
+++ b/htdocs/index.html
@@ -104,8 +104,8 @@
-
-
+
+
@@ -127,10 +127,10 @@
#
- Title
- Album
Artist
- Duration
+ Album
+ Title
+ Length
diff --git a/htdocs/js/mpd.js b/htdocs/js/mpd.js
index aa56611..028ad84 100644
--- a/htdocs/js/mpd.js
+++ b/htdocs/js/mpd.js
@@ -317,9 +317,9 @@ function webSocketConnect() {
$('#salamisandwich > tbody').append(
"" + (obj.data[song].pos + 1) + " " +
- ""+ obj.data[song].title +" " +
- ""+ obj.data[song].album +" " +
""+ obj.data[song].artist +" " +
+ ""+ obj.data[song].album +" " +
+ ""+ obj.data[song].title +" " +
""+ minutes + ":" + (seconds < 10 ? '0' : '') + seconds +
" ");
}
@@ -445,9 +445,9 @@ function webSocketConnect() {
$('#salamisandwich > tbody').append(
"" +
" " +
- "" + obj.data[item].title + " " +
- "" + obj.data[item].album + " " +
"" + obj.data[item].artist + " " +
+ "" + obj.data[item].album + " " +
+ "" + obj.data[item].title + " " +
"" + minutes + ":" + (seconds < 10 ? '0' : '') + seconds +
" "
);
@@ -586,7 +586,7 @@ function webSocketConnect() {
break;
case 'outputnames':
$('#btn-outputs-block button').remove();
- if (obj.data.length > 1) {
+ if ( Object.keys(obj.data).length ) {
$.each(obj.data, function(id, name){
var btn = $(' '+name+' ');
btn.appendTo($('#btn-outputs-block'));
@@ -630,14 +630,14 @@ function webSocketConnect() {
$('#currenttrack').text(" " + obj.data.title);
var notification = "" + obj.data.title + " ";
- if(obj.data.album) {
- $('#album').text(obj.data.album);
- notification += obj.data.album + " ";
- }
if(obj.data.artist) {
$('#artist').text(obj.data.artist);
notification += obj.data.artist + " ";
}
+ if(obj.data.album) {
+ $('#album').text(obj.data.album);
+ notification += obj.data.album + " ";
+ }
if ($.cookie("notification") === "true")
songNotify(obj.data.title, obj.data.artist, obj.data.album );