2016-11-29 04:16:16 +00:00
<!DOCTYPE html5>
< html >
< head >
{% import "header.html" as header %}
2020-04-04 22:13:01 +00:00
< title > {{channel.name}}< / title >
2016-11-29 04:16:16 +00:00
< meta charset = "UTF-8" >
2020-01-07 05:55:01 +00:00
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" / >
2020-05-22 02:43:45 +00:00
< link rel = "stylesheet" href = "/static/css/common.css" >
< script src = "/static/js/common.js" > < / script >
2016-11-29 04:16:16 +00:00
< style >
#content_body
{
display: flex;
flex-direction: column;
2019-01-24 05:22:09 +00:00
min-width: 200px;
width: 100%;
max-width: 1440px;
2017-05-21 20:58:59 +00:00
margin-left: auto;
margin-right: auto;
2016-11-29 04:16:16 +00:00
}
2017-05-21 20:58:59 +00:00
.video_card
2016-11-29 04:16:16 +00:00
{
position: relative;
2020-04-04 22:13:01 +00:00
display: grid;
grid-template:
"thumbnail details toolbox" auto
"embed embed embed" auto
/auto 1fr auto;
grid-gap: 4px;
2016-11-29 04:16:16 +00:00
margin: 8px;
2020-04-04 22:13:01 +00:00
padding: 8px;
2016-11-29 04:16:16 +00:00
border-radius: 4px;
border: 1px solid #000;
}
2017-05-21 20:58:59 +00:00
.video_card:hover
{
box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.25);
}
2016-11-29 04:16:16 +00:00
.video_card_pending
{
background-color: #ffffaa;
}
.video_card_ignored
{
background-color: #ffc886;
}
2017-05-21 20:58:59 +00:00
.video_card_selected
{
background-color: #13f4ff !important;
}
2016-11-29 04:16:16 +00:00
.video_card_downloaded
{
background-color: #aaffaa;
}
2020-04-04 22:13:01 +00:00
.video_thumbnail
{
grid-area: thumbnail;
justify-self: center;
}
.video_details
{
grid-area: details;
align-self: center;
/*
margin-right prevents the empty space of the < a > tag from swallowing
click events meant for the video card.
*/
margin-right: auto;
}
.embed_toolbox
{
grid-area: embed;
/*
disabling pointer events on the toolbox prevents it from swallowing click
events meant for the video card. Then we must re-enable them for child
elements so the embed button is still clickable.
This one uses pointer-events instead of margin because margin makes the
whole embed too small.
*/
pointer-events: none;
}
.embed_toolbox *
{
pointer-events: auto;
}
2016-11-29 04:16:16 +00:00
.action_toolbox
{
2020-04-04 22:13:01 +00:00
grid-area: toolbox;
justify-self: right;
2016-11-29 04:16:16 +00:00
display: inline-flex;
flex-direction: row;
position: relative;
2020-04-04 22:13:01 +00:00
margin-top: auto;
margin-bottom: auto;
2016-11-29 04:16:16 +00:00
}
2020-04-04 22:13:01 +00:00
2016-11-29 04:16:16 +00:00
.video_action_dropdown
{
z-index: 1;
background-color: #fff;
padding: 4px;
border: 1px solid #000;
position: absolute;
top: 100%;
right: 0;
display: none;
flex-direction: column;
}
2020-04-03 15:43:47 +00:00
/*
Thank you SimonSimCity
https://stackoverflow.com/a/35153397
*/
.video_iframe_holder
{
position: relative;
width: 100%;
height: 0;
padding-bottom: 56.25%;
}
.video_iframe_holder iframe
{
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0;
}
2020-04-04 22:13:01 +00:00
@media screen and (max-width: 600px)
{
.video_card
{
grid-template:
"thumbnail"
"details"
"toolbox"
"embed"
/1fr;
}
}
2016-11-29 04:16:16 +00:00
< / style >
< / head >
< body >
{{header.make_header()}}
< div id = "content_body" >
2017-05-21 20:58:59 +00:00
{% if channel is not none %}
2020-04-04 22:13:01 +00:00
< span > < button class = "refresh_button" onclick = "refresh_channel('{{channel.id}}', false, function(){location.reload()})" > Refresh new videos< / button > < / span >
< span > < button class = "refresh_button" onclick = "refresh_channel('{{channel.id}}', true, function(){location.reload()})" > Refresh everything< / button > < / span >
< span > < a class = "merge_params" href = "/channel/{{channel.id}}" > All< / a > < / span >
2016-11-29 04:16:16 +00:00
{% else %}
2020-04-04 22:13:01 +00:00
< span > < a class = "merge_params" href = "/videos" > All< / a > < / span >
2016-11-29 04:16:16 +00:00
{% endif %}
2020-03-11 21:30:12 +00:00
{% for statename in all_states %}
{% if channel is not none %}
2020-04-04 22:13:01 +00:00
< span > < a class = "merge_params" href = "/channel/{{channel.id}}/{{statename}}" > {{statename}}< / a > < / span >
2020-03-11 21:30:12 +00:00
{% else %}
2020-04-04 22:13:01 +00:00
< span > < a class = "merge_params" href = "/videos/{{statename}}" > {{statename}}< / a > < / span >
2020-03-11 21:30:12 +00:00
{% endif %}
{% endfor %}
2020-04-03 21:24:48 +00:00
< p > <!-- spacer --> < / p >
2020-05-22 00:28:34 +00:00
{% if channel is not none %}
< span >
New videos are:
< select onchange = "set_automark_hook(event)" >
< option value = "pending" { { " selected " if channel . automark = = " pending " else " " } } > pending< / option >
< option value = "downloaded" { { " selected " if channel . automark = = " downloaded " else " " } } > downloaded< / option >
< option value = "ignored" { { " selected " if channel . automark = = " ignored " else " " } } > ignored< / option >
< / select >
< / span >
{% endif %}
< p > <!-- spacer --> < / p >
2020-04-03 21:24:48 +00:00
< span > Sort by
2020-04-04 22:13:01 +00:00
< a class = "merge_params" href = "?orderby=published" > Date< / a > ,
< a class = "merge_params" href = "?orderby=duration" > Duration< / a > ,
< a class = "merge_params" href = "?orderby=views" > Views< / a > ,
< a class = "merge_params" href = "?orderby=random" > Random< / a >
2020-04-03 21:24:48 +00:00
< / span >
2017-05-21 20:58:59 +00:00
2019-01-24 05:22:09 +00:00
< center > < input type = "text" id = "search_filter" / > < / center >
< center > < span id = "search_filter_count" > {{videos|length}}< / span > items< / center >
2017-05-21 20:58:59 +00:00
< div id = "video_cards" >
{% for video in videos %}
2020-04-04 22:13:01 +00:00
< div id = "video_card_{{video.id}}"
data-ytid="{{video.id}}"
2017-05-21 20:58:59 +00:00
onclick="onclick_select(event)"
2020-04-04 22:13:01 +00:00
class="video_card video_card_{{video.download}}"
2017-05-21 20:58:59 +00:00
>
2020-04-04 22:13:01 +00:00
< img class = "video_thumbnail" src = "http://i3.ytimg.com/vi/{{video.id}}/default.jpg" height = "100px" >
< div class = "video_details" >
< a class = "video_title" href = "https://www.youtube.com/watch?v={{video.id}}" > {{video._published_str}} - {{video.title}}< / a >
< span > ({{video.duration | seconds_to_hms}})< / span >
< span > ({{video.views}})< / span >
2017-05-21 20:58:59 +00:00
{% if channel is none %}
2020-04-04 22:13:01 +00:00
< a href = "/channel/{{video.author_id}}" > ({{video.author.name if video.author else video.author_id}})< / a >
2016-11-29 04:16:16 +00:00
{% endif %}
2020-04-04 22:13:01 +00:00
< / div >
2017-05-21 20:58:59 +00:00
< div class = "action_toolbox" >
< button
2020-04-04 22:13:01 +00:00
{% if video.download == "pending" %}
2017-05-21 20:58:59 +00:00
class="video_action_pending hidden"
{% else %}
class="video_action_pending"
{% endif %}
onclick="action_button_passthrough(event, mark_video_state, 'pending')"
>Revert to Pending< / button >
< button
2020-04-04 22:13:01 +00:00
{% if video.download == "pending" %}
2017-05-21 20:58:59 +00:00
class="video_action_download"
{% else %}
class="video_action_download hidden"
{% endif %}
onclick="action_button_passthrough(event, start_download)"
>Download< / button >
< button
2020-04-04 22:13:01 +00:00
{% if video.download == "pending" %}
2017-05-21 20:58:59 +00:00
class="video_action_ignore"
{% else %}
class="video_action_ignore hidden"
{% endif %}
onclick="action_button_passthrough(event, mark_video_state, 'ignored')"
>Ignore< / button >
< / div >
2020-04-04 22:13:01 +00:00
< div class = "embed_toolbox" >
2018-12-18 03:17:53 +00:00
< button class = "show_embed_button" onclick = "toggle_embed_video('{{video.id}}');" > Embed< / button >
< button class = "hide_embed_button hidden" onclick = "toggle_embed_video('{{video.id}}');" > Unembed< / button >
2020-04-04 22:13:01 +00:00
< / div >
2016-11-29 04:16:16 +00:00
< / div >
2017-05-21 20:58:59 +00:00
{% endfor %}
2016-11-29 04:16:16 +00:00
< / div >
2017-05-21 20:58:59 +00:00
2016-11-29 04:16:16 +00:00
< / div >
< / body >
< script type = "text/javascript" >
2019-01-25 23:54:31 +00:00
var DOWNLOAD_FILTER = "{{download_filter if download_filter else ""}}";
2017-05-21 20:58:59 +00:00
var video_card_first_selected = null;
var video_card_selections = [];
2019-01-24 05:22:09 +00:00
var search_filter_box = document.getElementById("search_filter");
var search_filter_hook = function(event)
{
filter_video_cards(search_filter_box.value);
}
search_filter_box.addEventListener("keyup", search_filter_hook);
function filter_video_cards(search_term)
{
2019-01-25 23:54:31 +00:00
/*
Apply the current download filter (pending, ignored, downloaded) by removing
mismatched cards from the dom.
Apply the search filter textbox by hiding the mismatched cards.
*/
2019-01-24 05:22:09 +00:00
var count = 0;
video_cards = document.getElementById("video_cards");
video_cards.classList.add("hidden");
search_term = search_term.toLocaleLowerCase();
var cards = video_cards.children;
2019-01-25 23:54:31 +00:00
var download_filter_class = "video_card_" + DOWNLOAD_FILTER;
for (var index = 0; index < video_cards.children.length ; index + = 1 )
2019-01-24 05:22:09 +00:00
{
2019-01-25 23:54:31 +00:00
var video_card = video_cards.children[index];
2019-01-24 05:22:09 +00:00
var title = video_card.getElementsByClassName("video_title")[0].innerText.toLocaleLowerCase();
2019-01-25 23:54:31 +00:00
if (DOWNLOAD_FILTER & & !video_card.classList.contains(download_filter_class))
{
video_cards.removeChild(video_card);
index -= 1;
}
else if (search_term !== "" & & title.indexOf(search_term) == -1)
2019-01-24 05:22:09 +00:00
{
video_card.classList.add("hidden");
}
else
{
video_card.classList.remove("hidden");
count += 1;
}
}
video_cards.classList.remove("hidden");
document.getElementById("search_filter_count").innerText = count;
}
2017-05-21 20:58:59 +00:00
2018-12-18 03:17:53 +00:00
function toggle_embed_video(video_id)
{
var video_card = document.getElementById("video_card_" + video_id);
var show_button = video_card.getElementsByClassName("show_embed_button")[0];
var hide_button = video_card.getElementsByClassName("hide_embed_button")[0];
2020-04-04 22:13:01 +00:00
var embed_toolbox = video_card.getElementsByClassName("embed_toolbox")[0];
2020-04-03 15:43:47 +00:00
var embeds = video_card.getElementsByClassName("video_iframe_holder");
2018-12-18 03:17:53 +00:00
if (embeds.length == 0)
{
2020-04-03 15:43:47 +00:00
var html = `< div class = "video_iframe_holder" > < iframe width = "711" height = "400" src = "https://www.youtube.com/embed/${video_id}" frameborder = "0" allow = "encrypted-media" allowfullscreen > < / iframe > < / div > `
2018-12-18 03:17:53 +00:00
var embed = html_to_element(html);
2020-04-04 22:13:01 +00:00
embed_toolbox.appendChild(embed);
2018-12-18 03:17:53 +00:00
show_button.classList.add("hidden");
hide_button.classList.remove("hidden");
}
else
{
2020-04-04 22:13:01 +00:00
embeds[0].parentElement.removeChild(embeds[0]);
2018-12-18 03:17:53 +00:00
show_button.classList.remove("hidden");
hide_button.classList.add("hidden");
}
}
2017-05-21 20:58:59 +00:00
function deselect_all()
2016-11-29 04:16:16 +00:00
{
2017-05-21 20:58:59 +00:00
var video_card_first_selected = null;
for (var index = 0; index < video_card_selections.length ; index + = 1 )
2016-11-29 04:16:16 +00:00
{
2017-05-21 20:58:59 +00:00
video_card_selections[index].classList.remove("video_card_selected");
2016-11-29 04:16:16 +00:00
}
2017-05-21 20:58:59 +00:00
video_card_selections = [];
}
2018-12-18 03:17:53 +00:00
function html_to_element(html)
{
var template = document.createElement("template");
template.innerHTML = html;
return template.content.firstChild;
}
2017-05-21 20:58:59 +00:00
function onclick_select(event)
{
if (!event.target.classList.contains("video_card"))
{
return;
}
if (video_card_first_selected === null)
{
video_card_first_selected = event.target;
}
2019-01-24 05:22:09 +00:00
var video_cards = Array.from(document.getElementById("video_cards").children);
2017-05-21 20:58:59 +00:00
if (event.shiftKey === false & & event.ctrlKey === false)
{
video_card_selections = [];
video_card_selections.push(event.target);
video_card_first_selected = event.target;
}
else if (event.shiftKey === true)
2016-11-29 04:16:16 +00:00
{
2017-05-21 20:58:59 +00:00
video_card_selections = [];
var start_index = video_cards.indexOf(video_card_first_selected);
var end_index = video_cards.indexOf(event.target);
if (end_index < start_index )
{
var temp = start_index;
start_index = end_index;
end_index = temp;
2016-11-29 04:16:16 +00:00
}
2017-05-21 20:58:59 +00:00
for (var index = start_index; index < = end_index; index += 1)
{
2019-01-24 05:22:09 +00:00
if (video_cards[index].classList.contains("hidden"))
{
continue;
}
2017-05-21 20:58:59 +00:00
video_card_selections.push(video_cards[index]);
2016-11-29 04:16:16 +00:00
}
2017-05-21 20:58:59 +00:00
}
else if (event.ctrlKey === true)
{
var existing_index = video_card_selections.indexOf(event.target)
if (existing_index == -1)
{
video_card_first_selected = event.target;
video_card_selections.push(event.target);
}
else
{
video_card_selections.splice(existing_index, 1);
}
}
for (var index = 0; index < video_cards.length ; index + = 1 )
{
card = video_cards[index];
if (video_card_selections.indexOf(card) > -1)
{
card.classList.add("video_card_selected");
}
else
{
card.classList.remove("video_card_selected");
}
}
2020-03-11 20:01:55 +00:00
document.getSelection().removeAllRanges();
2017-05-21 20:58:59 +00:00
return false;
}
function action_button_passthrough(event, action_function, action_argument)
{
var elements;
var this_card = event.target.parentElement.parentElement;
if (video_card_selections.length > 0 & & video_card_selections.indexOf(this_card) > -1)
{
elements = video_card_selections;
2016-11-29 04:16:16 +00:00
}
else
{
2017-05-21 20:58:59 +00:00
// Button -> button toolbox -> video card
elements = [this_card];
}
2019-01-24 05:22:09 +00:00
var video_ids = [];
2017-05-21 20:58:59 +00:00
for (var index = 0; index < elements.length ; index + = 1 )
{
2019-01-24 05:22:09 +00:00
video_ids.push(elements[index].dataset["ytid"]);
}
video_ids = video_ids.join(",");
if (action_argument === undefined)
{
action_function(video_ids, receive_action_response);
}
else
{
action_function(video_ids, action_argument, receive_action_response);
2016-11-29 04:16:16 +00:00
}
2020-03-11 21:30:56 +00:00
if (! event.shiftKey)
{
deselect_all();
}
2016-11-29 04:16:16 +00:00
}
2017-05-21 20:58:59 +00:00
function give_action_buttons(video_card_div)
2016-11-29 04:16:16 +00:00
{
2020-03-11 21:30:12 +00:00
var toolbox = video_card_div.getElementsByClassName("action_toolbox")[0]
var buttons = Array.from(toolbox.getElementsByTagName("button"));
var is_pending = video_card_div.classList.contains("video_card_pending");
buttons.forEach(function(button)
2017-05-21 20:58:59 +00:00
{
2020-03-11 21:30:12 +00:00
if (is_pending)
{ button.classList.remove("hidden"); }
else
{ button.classList.add("hidden"); }
});
var button_pending = video_card_div.getElementsByClassName("video_action_pending")[0];
if (is_pending)
{ button_pending.classList.add("hidden"); }
2017-05-21 20:58:59 +00:00
else
2020-03-11 21:30:12 +00:00
{ button_pending.classList.remove("hidden"); }
2016-11-29 04:16:16 +00:00
}
function receive_action_response(response)
{
2019-01-24 05:22:09 +00:00
var video_ids = response['video_ids'];
for (var index = 0; index < video_ids.length ; index + = 1 )
2016-11-29 04:16:16 +00:00
{
2019-01-24 05:22:09 +00:00
var video_id = video_ids[index];
var state = response['state'];
var card = document.getElementById("video_card_" + video_id);
2020-03-11 21:30:12 +00:00
{% for statename in all_states %}
card.classList.remove("video_card_{{statename}}");
{% endfor %}
card.classList.add("video_card_" + state);
2019-01-24 05:22:09 +00:00
give_action_buttons(card);
2016-11-29 04:16:16 +00:00
}
}
function refresh_channel(channel_id, force, callback)
{
2020-05-22 03:37:34 +00:00
var url = `/channel/${channel_id}/refresh`;
2016-11-29 04:16:16 +00:00
data = new FormData();
data.append("force", force)
2020-04-04 22:13:01 +00:00
return common.post(url, data, callback);
2016-11-29 04:16:16 +00:00
}
2020-05-22 00:28:34 +00:00
function set_automark_hook(event)
{
var url = "/channel/{{channel.id}}/set_automark";
data = new FormData();
data.append("state", event.target.value);
return common.post(url, data);
}
2019-01-24 05:22:09 +00:00
function mark_video_state(video_ids, state, callback)
2016-11-29 04:16:16 +00:00
{
var url = "/mark_video_state";
data = new FormData();
2019-01-24 05:22:09 +00:00
data.append("video_ids", video_ids);
2016-11-29 04:16:16 +00:00
data.append("state", state);
2020-04-04 22:13:01 +00:00
return common.post(url, data, callback);
2016-11-29 04:16:16 +00:00
}
2019-01-24 05:22:09 +00:00
function start_download(video_ids, callback)
2016-11-29 04:16:16 +00:00
{
var url = "/start_download";
data = new FormData();
2019-01-24 05:22:09 +00:00
data.append("video_ids", video_ids);
2020-04-04 22:13:01 +00:00
return common.post(url, data, callback);
2016-11-29 04:16:16 +00:00
}
< / script >
< / html >