2022-04-20 04:38:24 -04:00
|
|
|
'use strict';
|
2022-04-20 06:40:30 -04:00
|
|
|
var watched_data = JSON.parse(document.getElementById('watched_data').textContent);
|
2022-05-05 21:46:59 -04:00
|
|
|
var payload = 'csrf_token=' + watched_data.csrf_token;
|
2020-03-15 17:46:08 -04:00
|
|
|
|
2019-05-15 14:30:30 -04:00
|
|
|
function mark_watched(target) {
|
|
|
|
var tile = target.parentNode.parentNode.parentNode.parentNode.parentNode;
|
|
|
|
tile.style.display = 'none';
|
|
|
|
|
|
|
|
var url = '/watch_ajax?action_mark_watched=1&redirect=false' +
|
|
|
|
'&id=' + target.getAttribute('data-id');
|
|
|
|
|
2022-05-05 21:46:59 -04:00
|
|
|
helpers.xhr('POST', url, {payload: payload}, {
|
|
|
|
onNon200: function (xhr) {
|
|
|
|
tile.style.display = '';
|
2019-05-15 14:30:30 -04:00
|
|
|
}
|
2022-05-05 21:46:59 -04:00
|
|
|
});
|
2019-05-15 14:30:30 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
function mark_unwatched(target) {
|
|
|
|
var tile = target.parentNode.parentNode.parentNode.parentNode.parentNode;
|
2019-06-07 20:56:41 -04:00
|
|
|
tile.style.display = 'none';
|
2022-04-20 05:05:19 -04:00
|
|
|
var count = document.getElementById('count');
|
2022-05-21 06:35:41 -04:00
|
|
|
count.textContent--;
|
2019-05-15 14:30:30 -04:00
|
|
|
|
|
|
|
var url = '/watch_ajax?action_mark_unwatched=1&redirect=false' +
|
|
|
|
'&id=' + target.getAttribute('data-id');
|
|
|
|
|
2022-05-05 21:46:59 -04:00
|
|
|
helpers.xhr('POST', url, {payload: payload}, {
|
|
|
|
onNon200: function (xhr) {
|
2022-05-21 06:35:41 -04:00
|
|
|
count.textContent++;
|
2022-05-05 21:46:59 -04:00
|
|
|
tile.style.display = '';
|
2019-05-15 14:30:30 -04:00
|
|
|
}
|
2022-05-05 21:46:59 -04:00
|
|
|
});
|
2022-04-25 06:14:08 -04:00
|
|
|
}
|
2022-11-07 14:03:23 -05:00
|
|
|
|
|
|
|
var save_player_pos_key = 'save_player_pos';
|
|
|
|
|
|
|
|
function get_all_video_times() {
|
|
|
|
return helpers.storage.get(save_player_pos_key) || {};
|
|
|
|
}
|
|
|
|
|
|
|
|
var watchedIndicators = document.getElementsByClassName('watched-indicator');
|
|
|
|
for (var i = 0; i < watchedIndicators.length; i++) {
|
|
|
|
var indicator = watchedIndicators[i];
|
|
|
|
var watched_part = get_all_video_times()[indicator.getAttribute('data-id')];
|
|
|
|
var total = parseInt(indicator.getAttribute('data-length'), 10);
|
2022-11-08 17:22:44 -05:00
|
|
|
if (watched_part === undefined) {
|
|
|
|
watched_part = total;
|
|
|
|
}
|
2022-11-07 14:03:23 -05:00
|
|
|
var percentage = Math.round((watched_part / total) * 100);
|
|
|
|
|
|
|
|
if (percentage < 5) {
|
|
|
|
percentage = 5;
|
|
|
|
}
|
|
|
|
if (percentage > 90) {
|
|
|
|
percentage = 100;
|
|
|
|
}
|
|
|
|
|
|
|
|
indicator.style.width = percentage + '%';
|
|
|
|
}
|