invidious-mod/assets/js/watched_widget.js

61 行
1.8 KiB
JavaScript
Raw 通常表示 履歴

2022-04-20 17:38:24 +09:00
'use strict';
var watched_data = JSON.parse(document.getElementById('watched_data').textContent);
var payload = 'csrf_token=' + watched_data.csrf_token;
2019-05-16 03:30:30 +09: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');
helpers.xhr('POST', url, {payload: payload}, {
onNon200: function (xhr) {
tile.style.display = '';
2019-05-16 03:30:30 +09:00
}
});
2019-05-16 03:30:30 +09:00
}
function mark_unwatched(target) {
var tile = target.parentNode.parentNode.parentNode.parentNode.parentNode;
2019-06-08 09:56:41 +09:00
tile.style.display = 'none';
2022-04-20 18:05:19 +09:00
var count = document.getElementById('count');
count.textContent--;
2019-05-16 03:30:30 +09:00
var url = '/watch_ajax?action_mark_unwatched=1&redirect=false' +
'&id=' + target.getAttribute('data-id');
helpers.xhr('POST', url, {payload: payload}, {
onNon200: function (xhr) {
count.textContent++;
tile.style.display = '';
2019-05-16 03:30:30 +09:00
}
});
2022-04-25 19:14:08 +09:00
}
2022-11-08 04:03:23 +09: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);
if (watched_part === undefined) {
watched_part = total;
}
2022-11-08 04:03:23 +09:00
var percentage = Math.round((watched_part / total) * 100);
if (percentage < 5) {
percentage = 5;
}
if (percentage > 90) {
percentage = 100;
}
indicator.style.width = percentage + '%';
}