invidious-mod/assets/js/watched_widget.js

50 行
1.6 KiB
JavaScript
Raw 通常表示 履歴

var watched_data = JSON.parse(document.getElementById('watched_data').innerHTML);
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');
var xhr = new XMLHttpRequest();
xhr.responseType = 'json';
2019-06-17 02:34:00 +09:00
xhr.timeout = 10000;
2019-05-16 03:30:30 +09:00
xhr.open('POST', url, true);
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xhr.onreadystatechange = function () {
if (xhr.readyState == 4) {
if (xhr.status != 200) {
tile.style.display = '';
}
}
}
2019-06-16 00:08:06 +09:00
xhr.send('csrf_token=' + watched_data.csrf_token);
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';
2019-05-16 03:30:30 +09:00
var count = document.getElementById('count')
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-17 02:34:00 +09:00
xhr.timeout = 10000;
2019-05-16 03:30:30 +09:00
xhr.open('POST', url, true);
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
xhr.onreadystatechange = function () {
if (xhr.readyState == 4) {
if (xhr.status != 200) {
count.innerText = count.innerText - 1 + 2;
tile.style.display = '';
}
}
}
2019-06-16 00:08:06 +09:00
xhr.send('csrf_token=' + watched_data.csrf_token);
2019-05-16 03:30:30 +09:00
}