2022-04-20 14:08:24 +05:30
|
|
|
'use strict';
|
2020-03-16 03:16:08 +05:30
|
|
|
var playlist_data = JSON.parse(document.getElementById('playlist_data').innerHTML);
|
|
|
|
|
2020-04-08 00:04:40 +05:30
|
|
|
function add_playlist_video(target) {
|
|
|
|
var select = target.parentNode.children[0].children[1];
|
|
|
|
var option = select.children[select.selectedIndex];
|
|
|
|
|
|
|
|
var url = '/playlist_ajax?action_add_video=1&redirect=false' +
|
|
|
|
'&video_id=' + target.getAttribute('data-id') +
|
|
|
|
'&playlist_id=' + option.getAttribute('data-plid');
|
|
|
|
var xhr = new XMLHttpRequest();
|
|
|
|
xhr.responseType = 'json';
|
|
|
|
xhr.timeout = 10000;
|
|
|
|
xhr.open('POST', url, true);
|
|
|
|
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
|
|
|
|
|
|
|
|
xhr.onreadystatechange = function () {
|
2022-04-20 14:43:16 +05:30
|
|
|
if (xhr.readyState === 4) {
|
|
|
|
if (xhr.status === 200) {
|
2020-04-08 00:04:40 +05:30
|
|
|
option.innerText = '✓' + option.innerText;
|
|
|
|
}
|
|
|
|
}
|
2022-04-20 14:35:19 +05:30
|
|
|
};
|
2020-04-08 00:04:40 +05:30
|
|
|
|
|
|
|
xhr.send('csrf_token=' + playlist_data.csrf_token);
|
|
|
|
}
|
|
|
|
|
2019-08-06 05:19:13 +05:30
|
|
|
function add_playlist_item(target) {
|
|
|
|
var tile = target.parentNode.parentNode.parentNode.parentNode.parentNode;
|
|
|
|
tile.style.display = 'none';
|
|
|
|
|
|
|
|
var url = '/playlist_ajax?action_add_video=1&redirect=false' +
|
|
|
|
'&video_id=' + target.getAttribute('data-id') +
|
|
|
|
'&playlist_id=' + target.getAttribute('data-plid');
|
|
|
|
var xhr = new XMLHttpRequest();
|
|
|
|
xhr.responseType = 'json';
|
|
|
|
xhr.timeout = 10000;
|
|
|
|
xhr.open('POST', url, true);
|
|
|
|
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
|
|
|
|
|
|
|
|
xhr.onreadystatechange = function () {
|
2022-04-20 14:43:16 +05:30
|
|
|
if (xhr.readyState === 4) {
|
|
|
|
if (xhr.status !== 200) {
|
2019-08-06 05:19:13 +05:30
|
|
|
tile.style.display = '';
|
|
|
|
}
|
|
|
|
}
|
2022-04-20 14:35:19 +05:30
|
|
|
};
|
2019-08-06 05:19:13 +05:30
|
|
|
|
|
|
|
xhr.send('csrf_token=' + playlist_data.csrf_token);
|
|
|
|
}
|
|
|
|
|
|
|
|
function remove_playlist_item(target) {
|
|
|
|
var tile = target.parentNode.parentNode.parentNode.parentNode.parentNode;
|
|
|
|
tile.style.display = 'none';
|
|
|
|
|
|
|
|
var url = '/playlist_ajax?action_remove_video=1&redirect=false' +
|
|
|
|
'&set_video_id=' + target.getAttribute('data-index') +
|
|
|
|
'&playlist_id=' + target.getAttribute('data-plid');
|
|
|
|
var xhr = new XMLHttpRequest();
|
|
|
|
xhr.responseType = 'json';
|
|
|
|
xhr.timeout = 10000;
|
|
|
|
xhr.open('POST', url, true);
|
|
|
|
xhr.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
|
|
|
|
|
|
|
|
xhr.onreadystatechange = function () {
|
2022-04-20 14:43:16 +05:30
|
|
|
if (xhr.readyState === 4) {
|
|
|
|
if (xhr.status !== 200) {
|
2019-08-06 05:19:13 +05:30
|
|
|
tile.style.display = '';
|
|
|
|
}
|
|
|
|
}
|
2022-04-20 14:35:19 +05:30
|
|
|
};
|
2019-08-06 05:19:13 +05:30
|
|
|
|
|
|
|
xhr.send('csrf_token=' + playlist_data.csrf_token);
|
|
|
|
}
|