deemix-webui/public/js/frontend.js

93 lines
2.2 KiB
JavaScript
Raw Normal View History

2020-04-08 00:19:27 +02:00
// Initialization
doAjax("/init", "POST");
2020-04-08 18:43:35 +02:00
// Functions to connect to the Flask server
2020-04-08 00:19:27 +02:00
function getHttpRequestObject(){
var xmlHttpRequst = false;
if (window.XMLHttpRequest){
xmlHttpRequst = new XMLHttpRequest();
2020-04-08 18:43:35 +02:00
}else if (window.ActiveXObject){
2020-04-08 00:19:27 +02:00
xmlHttpRequst = new ActiveXObject("Microsoft.XMLHTTP");
}
return xmlHttpRequst;
}
function doAjax(url, method, responseHandler, data){
url = url || "";
method = method || "GET";
async = true;
data = data || {};
if(url == ""){
alert("URL cannot be null/blank");
return false;
}
var xmlHttpRequest = getHttpRequestObject();
if(xmlHttpRequest != false){
xmlHttpRequest.open(method, url, async);
if(method == "POST"){
xmlHttpRequest.setRequestHeader("Content-Type", "application/json");
}
2020-04-08 18:43:35 +02:00
if (typeof responseHandler === "function"){
xmlHttpRequest.onreadystatechange = function(){
if(this.readyState === XMLHttpRequest.DONE && this.status === 200) {
responseHandler(JSON.parse(this.responseText))
}
}
}
2020-04-08 00:19:27 +02:00
xmlHttpRequest.send(JSON.stringify(data));
2020-04-08 18:43:35 +02:00
}else{
2020-04-08 00:19:27 +02:00
alert("Please use a browser with Ajax support!");
}
}
// 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";
}
document.querySelector("#hide_download_tab").onclick = (ev)=>{
ev.preventDefault();
document.querySelector("#download_tab_bar").style.display = "block";
document.querySelector("#download_tab").style.display = "none";
}
2020-04-08 18:43:35 +02:00
var mainSearch = new Vue({
el: '#main_search',
data: {
names: {
"TOP_RESULT": "Top Result",
"TRACK": "Tracks",
"ARTIST": "Artists",
"ALBUM": "Albums",
"PLAYLIST": "Playlists"
},
results: {
ORDER: [],
ALBUM: {},
ARTIST: {},
TRACK: {},
TOP_RESULT: [],
PLAYLIST: {}
}
}
})
2020-04-08 00:19:27 +02:00
// Search section
2020-04-08 18:43:35 +02:00
$("#searchbar").keyup(function(e){
if(e.keyCode == 13){
term = this.value
console.log(term)
if (isValidURL(term))
doAjax("/download", "POST", null, {url: term});
else
doAjax("/search", "POST", searchHandler, {term: term});
2020-04-08 18:43:35 +02:00
}
2020-04-08 00:19:27 +02:00
})
function searchHandler(result){
console.log(result)
2020-04-08 18:43:35 +02:00
mainSearch.results = result
2020-04-08 00:19:27 +02:00
}