1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
PlayButton = {
create: function(episodeList) {
var button = $("<input class='playButton' type='button'/>");
button.attr("value", "play");
if (episodeList) {
this.initOnClick(button, episodeList);
}
return button;
},
initOnClick: function(button, episodeList) {
if (episodeList instanceof EpisodeList) {
button.click(PlayButton.episodeListClickCallback(episodeList));
} else if (typeof episodeList == "string") {
button.click(PlayButton.ajaxClickCallback(episodeList));
} else {
var err = "invalid initOnClick with arg" + episodeList;
throw err;
}
},
initOnClickAjax: function() {
},
episodeListClickCallback: function(episodeList) {
function nonEmptyArray(arrays) {
if (!arrays.length) { return []; }
var head = arrays[0];
var tail = arrays.length > 1 ? arrays.slice(1, arrays.length-1) : [];
return head.length != 0 ? head : nonEmptyArray(tail);
}
return function() {
var files = nonEmptyArray([episodeList.unwatchedArray(),
episodeList.rewatchPlaylist(),
episodeList.unwatchedArray(true),
episodeList.watchedArray()]);
if (files.length) {
PlayButton.play(files);
}
}
},
ajaxClickCallback: function(tvShow) {
return function() {
var url = "api/library/tvshow/" + encodeURIComponent(tvShow) +
"/details";
$.getJSON(url, function(data) {
var episodeList = new EpisodeList(data.episodes, data);
PlayButton.episodeListClickCallback(episodeList)();
});
}
},
play: function(files) {
var json = {
episodes: files
}
$.ajax({
url: "api/player/setPlaylist",
type: "POST",
data: JSON.stringify(json)
}).done(function(data) {
if (data.error) {
alert(data.error)
}
});
}
};