2022-04-20 08:38:24 +00:00
|
|
|
'use strict';
|
2022-04-20 10:40:30 +00:00
|
|
|
var playlist_data = JSON.parse(document.getElementById('playlist_data').textContent);
|
2022-05-06 01:46:59 +00:00
|
|
|
var payload = 'csrf_token=' + playlist_data.csrf_token;
|
2020-03-15 21:46:08 +00:00
|
|
|
|
2020-04-07 18:34:40 +00:00
|
|
|
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');
|
|
|
|
|
2022-05-06 01:46:59 +00:00
|
|
|
helpers.xhr('POST', url, {payload: payload}, {
|
|
|
|
on200: function (response) {
|
2022-05-21 10:35:41 +00:00
|
|
|
option.textContent = '✓' + option.textContent;
|
2020-04-07 18:34:40 +00:00
|
|
|
}
|
2022-05-06 01:46:59 +00:00
|
|
|
});
|
2020-04-07 18:34:40 +00:00
|
|
|
}
|
|
|
|
|
2019-08-05 23:49:13 +00:00
|
|
|
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');
|
|
|
|
|
2022-05-06 01:46:59 +00:00
|
|
|
helpers.xhr('POST', url, {payload: payload}, {
|
|
|
|
onNon200: function (xhr) {
|
|
|
|
tile.style.display = '';
|
2019-08-05 23:49:13 +00:00
|
|
|
}
|
2022-05-06 01:46:59 +00:00
|
|
|
});
|
2019-08-05 23:49:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
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');
|
|
|
|
|
2022-05-06 01:46:59 +00:00
|
|
|
helpers.xhr('POST', url, {payload: payload}, {
|
|
|
|
onNon200: function (xhr) {
|
|
|
|
tile.style.display = '';
|
2019-08-05 23:49:13 +00:00
|
|
|
}
|
2022-05-06 01:46:59 +00:00
|
|
|
});
|
2022-04-25 10:14:08 +00:00
|
|
|
}
|