2020-04-10 14:12:21 +00:00
|
|
|
// Initialization
|
|
|
|
const socket = io.connect(window.location.href)
|
|
|
|
localStorage = window.localStorage;
|
2020-04-13 10:06:17 +00:00
|
|
|
// tabs stuff
|
2020-04-10 14:12:21 +00:00
|
|
|
search_selected = ""
|
|
|
|
main_selected=""
|
2020-04-13 10:06:17 +00:00
|
|
|
// toasts stuff
|
2020-04-11 10:51:22 +00:00
|
|
|
toastsWithId = {}
|
2020-04-14 17:58:54 +00:00
|
|
|
// settings
|
|
|
|
lastSettings = {}
|
2020-04-16 08:37:02 +00:00
|
|
|
lastCredentials = {}
|
2020-04-11 10:51:22 +00:00
|
|
|
|
|
|
|
function toast(msg, icon=null, dismiss=true, id=null){
|
2020-04-11 19:55:12 +00:00
|
|
|
if (toastsWithId[id]){
|
2020-04-14 14:48:13 +00:00
|
|
|
let toastObj = toastsWithId[id]
|
|
|
|
let toastDOM = $(`div.toastify[toast_id=${id}]`)
|
2020-04-11 19:55:12 +00:00
|
|
|
if (msg){
|
|
|
|
toastDOM.find(".toast-message").html(msg)
|
|
|
|
}
|
|
|
|
if (icon){
|
|
|
|
if (icon=='loading')
|
|
|
|
icon = `<div class="circle-loader"></div>`
|
|
|
|
else
|
|
|
|
icon = `<i class="material-icons">${icon}</i>`
|
|
|
|
toastDOM.find(".toast-icon").html(icon)
|
|
|
|
}
|
|
|
|
if (dismiss !== null && dismiss){
|
2020-04-12 22:14:34 +00:00
|
|
|
setTimeout(function(){
|
|
|
|
toastObj.hideToast()
|
|
|
|
delete toastsWithId[id]
|
|
|
|
}, 3000);
|
2020-04-11 19:55:12 +00:00
|
|
|
}
|
|
|
|
}else{
|
|
|
|
if (icon == null)
|
|
|
|
icon = ""
|
|
|
|
else if (icon=='loading')
|
|
|
|
icon = `<div class="circle-loader"></div>`
|
|
|
|
else
|
|
|
|
icon = `<i class="material-icons">${icon}</i>`
|
2020-04-14 14:48:13 +00:00
|
|
|
let toastObj = Toastify({
|
2020-04-11 19:55:12 +00:00
|
|
|
text: `<span class="toast-icon">${icon}</span><span class="toast-message">${msg}</toast>`,
|
|
|
|
duration: dismiss ? 3000 : 0,
|
|
|
|
gravity: 'bottom',
|
|
|
|
position: 'left'
|
|
|
|
}).showToast()
|
|
|
|
if (id){
|
|
|
|
toastsWithId[id] = toastObj
|
|
|
|
$(toastObj.toastElement).attr('toast_id', id)
|
|
|
|
}
|
2020-04-11 10:51:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
socket.on("toast", (data)=>{
|
|
|
|
toast(data.msg, data.icon || null, data.dismiss !== undefined ? data.dismiss : true, data.id || null)
|
|
|
|
})
|
|
|
|
|
2020-04-14 17:58:54 +00:00
|
|
|
// Debug messages for socketio
|
|
|
|
socket.on("message", function(msg){
|
|
|
|
console.log(msg)
|
|
|
|
})
|
|
|
|
|
2020-04-13 10:06:17 +00:00
|
|
|
$(function(){
|
|
|
|
if (localStorage.getItem("arl")){
|
|
|
|
socket.emit("login", localStorage.getItem("arl"));
|
|
|
|
$("#login_input_arl").val(localStorage.getItem("arl"))
|
|
|
|
}
|
|
|
|
// Check if download tab should be open
|
|
|
|
if (eval(localStorage.getItem("downloadTabOpen")))
|
|
|
|
$("#show_download_tab").click()
|
|
|
|
else
|
|
|
|
$("#hide_download_tab").click()
|
|
|
|
|
|
|
|
// Open default tab
|
|
|
|
document.getElementById("main_home_tablink").click();
|
|
|
|
})
|
|
|
|
|
|
|
|
// Show/Hide Download Tab
|
|
|
|
document.querySelector("#show_download_tab").onclick = (ev)=>{
|
|
|
|
ev.preventDefault();
|
|
|
|
document.querySelector("#download_tab_bar").style.display = "none";
|
|
|
|
document.querySelector("#download_tab").style.display = "block";
|
|
|
|
localStorage.setItem("downloadTabOpen", true)
|
|
|
|
}
|
|
|
|
document.querySelector("#hide_download_tab").onclick = (ev)=>{
|
|
|
|
ev.preventDefault();
|
|
|
|
document.querySelector("#download_tab_bar").style.display = "block";
|
|
|
|
document.querySelector("#download_tab").style.display = "none";
|
|
|
|
localStorage.setItem("downloadTabOpen", false)
|
|
|
|
}
|
|
|
|
|
|
|
|
// Login stuff
|
2020-04-11 19:55:12 +00:00
|
|
|
|
2020-04-12 22:14:34 +00:00
|
|
|
function loginButton(){
|
|
|
|
let arl = document.querySelector("#login_input_arl").value
|
|
|
|
if (arl != "" && arl != localStorage.getItem("arl")){
|
|
|
|
socket.emit("login", arl, true)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function copyARLtoClipboard(){
|
|
|
|
$("#login_input_arl").attr("type", "text");
|
|
|
|
let copyText = document.querySelector("#login_input_arl")
|
|
|
|
copyText.select();
|
|
|
|
copyText.setSelectionRange(0, 99999);
|
|
|
|
document.execCommand("copy");
|
|
|
|
$("#login_input_arl").attr("type", "password");
|
|
|
|
toast("ARL copied to clipboard", 'assignment')
|
2020-04-11 19:55:12 +00:00
|
|
|
}
|
|
|
|
|
2020-04-12 22:14:34 +00:00
|
|
|
function logout(){
|
|
|
|
socket.emit("logout");
|
|
|
|
}
|
|
|
|
|
2020-04-11 19:55:12 +00:00
|
|
|
socket.on("logging_in", function(){
|
|
|
|
toast("Logging in", "loading", false, "login-toast")
|
|
|
|
})
|
|
|
|
|
|
|
|
socket.on("logged_in", function(data){
|
2020-04-12 22:14:34 +00:00
|
|
|
console.log(data)
|
|
|
|
switch (data.status) {
|
|
|
|
case 1:
|
|
|
|
case 3:
|
|
|
|
toast("Logged in", "done", true, "login-toast")
|
|
|
|
if (data.arl){
|
|
|
|
localStorage.setItem("arl", data.arl)
|
|
|
|
$("#login_input_arl").val(data.arl)
|
|
|
|
}
|
|
|
|
$('#open_login_prompt').hide()
|
|
|
|
if (data.user){
|
|
|
|
$("#settings_username").text(data.user.name)
|
|
|
|
$("#settings_picture").attr("src",`https://e-cdns-images.dzcdn.net/images/user/${data.user.picture}/125x125-000000-80-0-0.jpg`)
|
|
|
|
$("#logged_in_info").show()
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
toast("Already logged in", "done", true, "login-toast")
|
|
|
|
if (data.user){
|
|
|
|
$("#settings_username").text(data.user.name)
|
|
|
|
$("#settings_picture").attr("src",`https://e-cdns-images.dzcdn.net/images/user/${data.user.picture}/125x125-000000-80-0-0.jpg`)
|
|
|
|
$("#logged_in_info").show()
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 0:
|
|
|
|
toast("Couldn't log in", "close", true, "login-toast")
|
|
|
|
localStorage.removeItem("arl")
|
|
|
|
$("#login_input_arl").val("")
|
|
|
|
$('#open_login_prompt').show()
|
|
|
|
$("#logged_in_info").hide()
|
|
|
|
$("#settings_username").text("Not Logged")
|
|
|
|
$("#settings_picture").attr("src",`https://e-cdns-images.dzcdn.net/images/user/125x125-000000-80-0-0.jpg`)
|
|
|
|
break;
|
2020-04-11 10:51:22 +00:00
|
|
|
}
|
|
|
|
})
|
2020-04-12 22:14:34 +00:00
|
|
|
|
|
|
|
socket.on("logged_out", function(){
|
|
|
|
toast("Logged out", "done", true, "login-toast")
|
|
|
|
localStorage.removeItem("arl")
|
|
|
|
$("#login_input_arl").val("")
|
|
|
|
$('#open_login_prompt').show()
|
|
|
|
$("#logged_in_info").hide()
|
|
|
|
$("#settings_username").text("Not Logged")
|
|
|
|
$("#settings_picture").attr("src",`https://e-cdns-images.dzcdn.net/images/user/125x125-000000-80-0-0.jpg`)
|
|
|
|
})
|
2020-04-13 18:05:26 +00:00
|
|
|
|
2020-04-14 17:58:54 +00:00
|
|
|
// settings stuff
|
2020-04-13 18:05:26 +00:00
|
|
|
var settingsTab = new Vue({
|
|
|
|
el: '#settings_tab',
|
|
|
|
data: {
|
2020-04-16 11:38:59 +00:00
|
|
|
settings: {tags: {}},
|
2020-04-16 08:37:02 +00:00
|
|
|
spotifyFeatures: {}
|
2020-04-13 18:05:26 +00:00
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2020-04-16 08:37:02 +00:00
|
|
|
socket.on("init_settings", function(settings, credentials){
|
|
|
|
console.log(settings,credentials)
|
|
|
|
loadSettings(settings, credentials)
|
2020-04-14 17:58:54 +00:00
|
|
|
toast("Settings loaded!", 'settings')
|
2020-04-13 18:05:26 +00:00
|
|
|
})
|
2020-04-14 17:58:54 +00:00
|
|
|
|
2020-04-16 08:37:02 +00:00
|
|
|
socket.on("updateSettings", function(settings, credentials){
|
|
|
|
loadSettings(settings, credentials)
|
2020-04-14 17:58:54 +00:00
|
|
|
toast("Settings updated!", 'settings')
|
|
|
|
})
|
|
|
|
|
2020-04-16 08:37:02 +00:00
|
|
|
function loadSettings(settings, spotifyCredentials){
|
2020-04-14 17:58:54 +00:00
|
|
|
lastSettings = {...settings}
|
2020-04-16 08:37:02 +00:00
|
|
|
lastCredentials = {...spotifyCredentials}
|
2020-04-14 17:58:54 +00:00
|
|
|
settingsTab.settings = settings
|
2020-04-16 08:37:02 +00:00
|
|
|
settingsTab.spotifyFeatures = spotifyCredentials
|
2020-04-14 17:58:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function saveSettings(){
|
|
|
|
lastSettings = {...settingsTab.settings}
|
2020-04-16 08:37:02 +00:00
|
|
|
lastCredentials = {...settingsTab.spotifyFeatures}
|
|
|
|
socket.emit("saveSettings", lastSettings, lastCredentials)
|
2020-04-14 17:58:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// tabs stuff
|
|
|
|
function changeTab(evt, section, tabName) {
|
|
|
|
var i, tabcontent, tablinks;
|
|
|
|
tabcontent = document.getElementsByClassName(section+"_tabcontent");
|
|
|
|
for (i = 0; i < tabcontent.length; i++) {
|
|
|
|
tabcontent[i].style.display = "none";
|
|
|
|
}
|
|
|
|
tablinks = document.getElementsByClassName(section+"_tablinks");
|
|
|
|
for (i = 0; i < tablinks.length; i++) {
|
|
|
|
tablinks[i].className = tablinks[i].className.replace(" active", "");
|
|
|
|
}
|
|
|
|
if (tabName == "settings_tab" && main_selected != "settings_tab"){
|
|
|
|
settingsTab.settings = {...lastSettings}
|
|
|
|
}
|
|
|
|
document.getElementById(tabName).style.display = "block";
|
|
|
|
window[section+"_selected"] = tabName
|
|
|
|
evt.currentTarget.className += " active";
|
|
|
|
// Check if you need to load more content in the search tab
|
|
|
|
if (document.getElementById("content").offsetHeight >= document.getElementById("content").scrollHeight && main_selected == "search_tab" && ["track_search", "album_search", "artist_search", "playlist_search"].indexOf(search_selected) != -1){
|
|
|
|
scrolledSearch(window[search_selected.split("_")[0]+"Search"])
|
|
|
|
}
|
|
|
|
}
|
2020-04-16 11:38:59 +00:00
|
|
|
|
|
|
|
// quality modal stuff
|
|
|
|
var modalQuality = document.getElementById('modal_quality');
|
|
|
|
modalQuality.open = false
|
|
|
|
|
|
|
|
function openQualityModal(link){
|
|
|
|
$(modalQuality).data("url", link)
|
|
|
|
$(modalQuality).css('display', 'block')
|
|
|
|
$(modalQuality).addClass('animated fadeIn')
|
|
|
|
}
|
|
|
|
|
|
|
|
function modalQualityButton(bitrate){
|
|
|
|
var url=$(modalQuality).data("url")
|
|
|
|
if (url.indexOf(";") != -1){
|
|
|
|
urls = url.split(";")
|
|
|
|
urls.forEach(url=>{
|
|
|
|
sendAddToQueue(url, bitrate)
|
|
|
|
})
|
|
|
|
}else{
|
|
|
|
sendAddToQueue(url, bitrate)
|
|
|
|
}
|
|
|
|
$(modalQuality).addClass('animated fadeOut')
|
|
|
|
$(modalQuality).css('display', 'none')
|
|
|
|
}
|