invidious/assets/js/watched_widget.js

51 lines
1.6 KiB
JavaScript
Raw Normal View History

2022-04-20 08:38:24 +00:00
'use strict';
var watched_data = JSON.parse(document.getElementById('watched_data').innerHTML);
2019-05-15 18:30:30 +00: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');
var xhr = new XMLHttpRequest();
xhr.responseType = 'json';
2019-06-16 17:34:00 +00:00
xhr.timeout = 10000;
2019-05-15 18:30:30 +00:00
xhr.open('POST', url, true);
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xhr.onreadystatechange = function () {
2022-04-20 09:13:16 +00:00
if (xhr.readyState === 4) {
if (xhr.status !== 200) {
2019-05-15 18:30:30 +00:00
tile.style.display = '';
}
}
2022-04-20 09:05:19 +00:00
};
2019-06-15 15:08:06 +00:00
xhr.send('csrf_token=' + watched_data.csrf_token);
2019-05-15 18:30:30 +00:00
}
function mark_unwatched(target) {
var tile = target.parentNode.parentNode.parentNode.parentNode.parentNode;
2019-06-08 00:56:41 +00:00
tile.style.display = 'none';
2022-04-20 09:05:19 +00:00
var count = document.getElementById('count');
2019-05-15 18:30:30 +00:00
count.innerText = count.innerText - 1;
var url = '/watch_ajax?action_mark_unwatched=1&redirect=false' +
'&id=' + target.getAttribute('data-id');
var xhr = new XMLHttpRequest();
xhr.responseType = 'json';
2019-06-16 17:34:00 +00:00
xhr.timeout = 10000;
2019-05-15 18:30:30 +00:00
xhr.open('POST', url, true);
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xhr.onreadystatechange = function () {
2022-04-20 09:13:16 +00:00
if (xhr.readyState === 4) {
if (xhr.status !== 200) {
2019-05-15 18:30:30 +00:00
count.innerText = count.innerText - 1 + 2;
tile.style.display = '';
}
}
2022-04-20 09:05:19 +00:00
};
2019-06-15 15:08:06 +00:00
xhr.send('csrf_token=' + watched_data.csrf_token);
2019-05-15 18:30:30 +00:00
}