mirror of https://github.com/calzoneman/sync.git
Add button to get playlist URLs
This commit is contained in:
parent
a93e7fe3c2
commit
e5b61ef91c
6
user.js
6
user.js
|
@ -108,6 +108,12 @@ User.prototype.initCallbacks = function() {
|
|||
this.playerReady = true;
|
||||
}.bind(this));
|
||||
|
||||
this.socket.on("requestPlaylist", function() {
|
||||
if(this.channel != null) {
|
||||
this.channel.sendPlaylist(this);
|
||||
}
|
||||
}.bind(this));
|
||||
|
||||
this.socket.on("queue", function(data) {
|
||||
if(this.channel != null) {
|
||||
this.channel.tryQueue(this, data);
|
||||
|
|
|
@ -80,8 +80,7 @@ if(params["channel"] == undefined) {
|
|||
var label = $("<label/>").text("Enter Channel:").appendTo(div);
|
||||
var entry = $("<input/>").attr("type", "text").appendTo(div);
|
||||
entry.keydown(function(ev) {
|
||||
if(ev.keyCode == 13) {
|
||||
document.location = document.location + "?channel=" + entry.val();
|
||||
if(ev.keyCode == 13) { document.location = document.location + "?channel=" + entry.val();
|
||||
socket.emit("joinChannel", {
|
||||
name: entry.val()
|
||||
});
|
||||
|
@ -274,6 +273,64 @@ $("#chatline").keydown(function(ev) {
|
|||
$("#messagebuffer").mouseenter(function() { SCROLLCHAT = false; });
|
||||
$("#messagebuffer").mouseleave(function() { SCROLLCHAT = true; });
|
||||
|
||||
$("#getplaylist").click(function() {
|
||||
var callback = function(data) {
|
||||
socket.listeners("playlist").splice(
|
||||
socket.listeners("playlist").indexOf(callback));
|
||||
var list = [];
|
||||
for(var i = 0; i < data.pl.length; i++) {
|
||||
var entry;
|
||||
switch(data.pl[i].type) {
|
||||
case "yt":
|
||||
entry = "http://youtube.com/watch?v="+data.pl[i].id;
|
||||
break;
|
||||
case "vi":
|
||||
entry = "http://vimeo.com/"+data.pl[i].id;
|
||||
break;
|
||||
case "dm":
|
||||
entry = "http://dailymotion.com/video/"+data.pl[i].id;
|
||||
break;
|
||||
case "sc":
|
||||
entry = data.pl[i].id;
|
||||
break;
|
||||
case "li":
|
||||
entry = "http://livestream.com/"+data.pl[i].id;
|
||||
break;
|
||||
case "tw":
|
||||
entry = "http://twitch.tv/"+data.pl[i].id;
|
||||
break;
|
||||
case "rt":
|
||||
entry = data.pl[i].id;
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
list.push(entry);
|
||||
}
|
||||
var urls = list.join(",");
|
||||
|
||||
var modal = $("<div/>").addClass("modal hide fade")
|
||||
.appendTo($("body"));
|
||||
var head = $("<div/>").addClass("modal-header")
|
||||
.appendTo(modal);
|
||||
$("<button/>").addClass("close")
|
||||
.attr("data-dismiss", "modal")
|
||||
.attr("aria-hidden", "true")
|
||||
.appendTo(head)[0].innerHTML = "×";
|
||||
$("<h3/>").text("Playlist URLs").appendTo(head);
|
||||
var body = $("<div/>").addClass("modal-body").appendTo(modal);
|
||||
$("<input/>").attr("type", "text")
|
||||
.val(urls)
|
||||
.appendTo(body);
|
||||
$("<div/>").addClass("modal-footer").appendTo(modal);
|
||||
modal.on("hidden", function() {
|
||||
modal.remove();
|
||||
});
|
||||
modal.modal();
|
||||
}
|
||||
socket.on("playlist", callback);
|
||||
socket.emit("requestPlaylist");
|
||||
});
|
||||
|
||||
$("#opt_submit").click(function() {
|
||||
var ptitle = $("#opt_pagetitle").val();
|
||||
|
|
|
@ -86,6 +86,7 @@
|
|||
<ul id="queue" class="videolist">
|
||||
</ul>
|
||||
<button class="btn btn-danger" id="qlockbtn" style="width: 100%; display:none;">Unlock Queue</button>
|
||||
<button class="btn" id="getplaylist" style="width: 100%;">Get Playlist URLs</button>
|
||||
</div>
|
||||
<div class="span6" id="librarydiv">
|
||||
<div class="input-append">
|
||||
|
|
Loading…
Reference in New Issue