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