2022-04-20 10:38:24 +02:00
|
|
|
'use strict';
|
2022-04-20 12:40:30 +02:00
|
|
|
var watched_data = JSON.parse(document.getElementById('watched_data').textContent);
|
2022-05-06 03:46:59 +02:00
|
|
|
var payload = 'csrf_token=' + watched_data.csrf_token;
|
2020-03-15 22:46:08 +01:00
|
|
|
|
2019-05-15 20:30:30 +02: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-06 03:46:59 +02:00
|
|
|
helpers.xhr('POST', url, {payload: payload}, {
|
|
|
|
onNon200: function (xhr) {
|
|
|
|
tile.style.display = '';
|
2019-05-15 20:30:30 +02:00
|
|
|
}
|
2022-05-06 03:46:59 +02:00
|
|
|
});
|
2019-05-15 20:30:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
function mark_unwatched(target) {
|
|
|
|
var tile = target.parentNode.parentNode.parentNode.parentNode.parentNode;
|
2019-06-08 02:56:41 +02:00
|
|
|
tile.style.display = 'none';
|
2022-04-20 11:05:19 +02:00
|
|
|
var count = document.getElementById('count');
|
2022-05-21 12:35:41 +02:00
|
|
|
count.textContent--;
|
2019-05-15 20:30:30 +02:00
|
|
|
|
|
|
|
var url = '/watch_ajax?action_mark_unwatched=1&redirect=false' +
|
|
|
|
'&id=' + target.getAttribute('data-id');
|
|
|
|
|
2022-05-06 03:46:59 +02:00
|
|
|
helpers.xhr('POST', url, {payload: payload}, {
|
|
|
|
onNon200: function (xhr) {
|
2022-05-21 12:35:41 +02:00
|
|
|
count.textContent++;
|
2022-05-06 03:46:59 +02:00
|
|
|
tile.style.display = '';
|
2019-05-15 20:30:30 +02:00
|
|
|
}
|
2022-05-06 03:46:59 +02:00
|
|
|
});
|
2022-04-25 12:14:08 +02:00
|
|
|
}
|