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