Files
.github
assets
.well-known
css
fonts
js
_helpers.js
community.js
embed.js
handlers.js
notifications.js
player.js
playlist_widget.js
silvermine-videojs-quality-selector.min.js
sse.js
subscribe_widget.js
themes.js
videojs-youtube-annotations.min.js
watch.js
watched_indicator.js
watched_widget.js
videojs
android-chrome-192x192.png
android-chrome-512x512.png
apple-touch-icon.png
browserconfig.xml
favicon-16x16.png
favicon-32x32.png
favicon.ico
invidious-colored-vector.svg
mstile-150x150.png
robots.txt
safari-pinned-tab.svg
site.webmanifest
config
docker
kubernetes
locales
mocks
screenshots
scripts
spec
src
.ameba.yml
.editorconfig
.gitattributes
.gitignore
.gitmodules
CHANGELOG.md
LICENSE
Makefile
README.md
TRANSLATION
docker-compose.yml
invidious.service
shard.lock
shard.yml
videojs-dependencies.yml
invidious/assets/js/watched_widget.js
meow b72b917af2 handled invalid values in storage
partial rewrite notifications.js
innerText to textContent
fixed bug with clamping
2022-05-21 13:35:41 +03:00

35 lines
1.0 KiB
JavaScript

'use strict';
var watched_data = JSON.parse(document.getElementById('watched_data').textContent);
var payload = 'csrf_token=' + watched_data.csrf_token;
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');
helpers.xhr('POST', url, {payload: payload}, {
onNon200: function (xhr) {
tile.style.display = '';
}
});
}
function mark_unwatched(target) {
var tile = target.parentNode.parentNode.parentNode.parentNode.parentNode;
tile.style.display = 'none';
var count = document.getElementById('count');
count.textContent--;
var url = '/watch_ajax?action_mark_unwatched=1&redirect=false' +
'&id=' + target.getAttribute('data-id');
helpers.xhr('POST', url, {payload: payload}, {
onNon200: function (xhr) {
count.textContent++;
tile.style.display = '';
}
});
}