2020-04-10 14:12:21 +00:00
|
|
|
// Load more content when the search page is at the end
|
2020-04-16 17:57:34 +00:00
|
|
|
$('#content').on('scroll', function () {
|
|
|
|
if ($(this).scrollTop() + $(this).innerHeight() >= $(this)[0].scrollHeight) {
|
|
|
|
if (
|
|
|
|
main_selected == 'search_tab' &&
|
|
|
|
['track_search', 'album_search', 'artist_search', 'playlist_search'].indexOf(search_selected) != -1
|
|
|
|
) {
|
2020-04-19 17:22:21 +00:00
|
|
|
scrolledSearch(search_selected.split('_')[0])
|
2020-04-09 14:06:33 +00:00
|
|
|
}
|
2020-04-16 17:57:34 +00:00
|
|
|
}
|
2020-04-09 14:06:33 +00:00
|
|
|
})
|
|
|
|
|
2020-04-19 17:22:21 +00:00
|
|
|
function search(type) {
|
|
|
|
query = MainSearch.results.query
|
|
|
|
socket.emit('search', {
|
|
|
|
term: query,
|
|
|
|
type: type,
|
|
|
|
start: MainSearch.results[type+"Tab"].next,
|
|
|
|
nb: 30
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
function scrolledSearch(type) {
|
|
|
|
query = MainSearch.results.query
|
|
|
|
if (MainSearch.results[type+"Tab"].next < MainSearch.results[type+"Tab"].total) {
|
2020-04-16 17:57:34 +00:00
|
|
|
socket.emit('search', {
|
2020-04-19 17:22:21 +00:00
|
|
|
term: query,
|
|
|
|
type: type,
|
|
|
|
start: MainSearch.results[type+"Tab"].next,
|
|
|
|
nb: 30
|
2020-04-16 17:57:34 +00:00
|
|
|
})
|
2020-04-09 14:06:33 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-04-16 17:57:34 +00:00
|
|
|
function searchUpadate(result) {
|
2020-04-19 17:22:21 +00:00
|
|
|
let next = 0
|
|
|
|
if (result.next) next = parseInt(result.next.match(/index=(\d*)/)[1])
|
|
|
|
else next = result.total
|
|
|
|
if (MainSearch.results[result.type+"Tab"].total != result.total) MainSearch.results[result.type+"Tab"].total = result.total
|
|
|
|
if (MainSearch.results[result.type+"Tab"].next != next) {
|
|
|
|
MainSearch.results[result.type+"Tab"].next = next
|
|
|
|
MainSearch.results[result.type+"Tab"].data = MainSearch.results[result.type+"Tab"].data.concat(result.data)
|
2020-04-09 14:06:33 +00:00
|
|
|
}
|
2020-04-19 17:22:21 +00:00
|
|
|
MainSearch.results[result.type+"Tab"].loaded = true
|
2020-04-09 10:50:05 +00:00
|
|
|
}
|
2020-04-16 17:57:34 +00:00
|
|
|
socket.on('search', function (result) {
|
|
|
|
searchUpadate(result)
|
|
|
|
})
|
2020-04-09 10:50:05 +00:00
|
|
|
|
2020-04-16 17:57:34 +00:00
|
|
|
function clickElement(button) {
|
2020-04-09 12:44:51 +00:00
|
|
|
return document.getElementById(button).click()
|
2020-04-09 10:24:49 +00:00
|
|
|
}
|
|
|
|
|
2020-04-16 17:57:34 +00:00
|
|
|
function sendAddToQueue(url, bitrate = null) {
|
2020-04-18 12:59:58 +00:00
|
|
|
if (url.indexOf(";") != -1){
|
|
|
|
urls = url.split(";")
|
|
|
|
urls.forEach(url=>{
|
|
|
|
socket.emit('addToQueue', { url: url, bitrate: bitrate })
|
|
|
|
})
|
2020-04-18 13:02:11 +00:00
|
|
|
}else if(url != ""){
|
2020-04-18 12:59:58 +00:00
|
|
|
socket.emit('addToQueue', { url: url, bitrate: bitrate })
|
|
|
|
}
|
2020-04-14 08:34:31 +00:00
|
|
|
}
|
|
|
|
|
2020-04-16 17:57:34 +00:00
|
|
|
let MainSearch = new Vue({
|
2020-04-19 17:22:21 +00:00
|
|
|
el: '#search_tab',
|
|
|
|
data: {
|
|
|
|
names: {
|
|
|
|
TOP_RESULT: 'Top Result',
|
|
|
|
TRACK: 'Tracks',
|
|
|
|
ARTIST: 'Artists',
|
|
|
|
ALBUM: 'Albums',
|
|
|
|
PLAYLIST: 'Playlists'
|
|
|
|
},
|
|
|
|
results: {
|
|
|
|
query: '',
|
|
|
|
allTab: {
|
2020-04-16 17:57:34 +00:00
|
|
|
ORDER: [],
|
2020-04-19 17:22:21 +00:00
|
|
|
TOP_RESULT: [],
|
2020-04-16 17:57:34 +00:00
|
|
|
ALBUM: {},
|
|
|
|
ARTIST: {},
|
|
|
|
TRACK: {},
|
|
|
|
PLAYLIST: {}
|
2020-04-19 17:22:21 +00:00
|
|
|
},
|
|
|
|
trackTab: {
|
|
|
|
data: [],
|
|
|
|
next: 0,
|
|
|
|
total: 0,
|
|
|
|
loaded: false
|
|
|
|
},
|
|
|
|
albumTab: {
|
|
|
|
data: [],
|
|
|
|
next: 0,
|
|
|
|
total: 0,
|
|
|
|
loaded: false
|
|
|
|
},
|
|
|
|
artistTab: {
|
|
|
|
data: [],
|
|
|
|
next: 0,
|
|
|
|
total: 0,
|
|
|
|
loaded: false
|
|
|
|
},
|
|
|
|
playlistTab: {
|
|
|
|
data: [],
|
|
|
|
next: 0,
|
|
|
|
total: 0,
|
|
|
|
loaded: false
|
2020-04-16 17:57:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2020-04-09 12:44:51 +00:00
|
|
|
methods: {
|
2020-04-16 17:57:34 +00:00
|
|
|
changeSearchTab(section) {
|
|
|
|
if (section != 'TOP_RESULT') clickElement('search_' + section.toLowerCase() + '_tab')
|
2020-04-10 16:00:42 +00:00
|
|
|
},
|
2020-04-17 10:15:12 +00:00
|
|
|
addToQueue: function(e){e.stopPropagation(); sendAddToQueue(e.currentTarget.dataset.link)},
|
2020-04-16 11:38:59 +00:00
|
|
|
openQualityModal: function(e){e.preventDefault(); openQualityModal(e.currentTarget.dataset.link)}
|
2020-04-09 12:44:51 +00:00
|
|
|
}
|
2020-04-08 16:43:35 +00:00
|
|
|
})
|
|
|
|
|
2020-04-07 22:19:27 +00:00
|
|
|
// Search section
|
2020-04-16 13:45:17 +00:00
|
|
|
$("#searchbar").keyup(function(e){
|
2020-04-08 16:43:35 +00:00
|
|
|
if(e.keyCode == 13){
|
2020-04-19 17:22:21 +00:00
|
|
|
let term = this.value
|
2020-04-16 13:28:19 +00:00
|
|
|
if (isValidURL(term)){
|
|
|
|
if (e.ctrlKey){
|
|
|
|
openQualityModal(term);
|
|
|
|
}else{
|
|
|
|
sendAddToQueue(term);
|
|
|
|
}
|
|
|
|
}else{
|
2020-04-19 17:22:21 +00:00
|
|
|
if (term != MainSearch.query || main_selected == 'search_tab'){
|
2020-04-17 10:15:12 +00:00
|
|
|
document.getElementById("search_tab_content").style.display = "none";
|
|
|
|
socket.emit("mainSearch", {term: term});
|
|
|
|
}else{
|
|
|
|
document.getElementById('search_all_tab').click()
|
|
|
|
document.getElementById('search_tab_content').style.display = 'block'
|
|
|
|
document.getElementById('main_search_tablink').click()
|
|
|
|
}
|
2020-04-09 10:24:49 +00:00
|
|
|
}
|
2020-04-16 17:57:34 +00:00
|
|
|
}
|
2020-04-07 22:19:27 +00:00
|
|
|
})
|
|
|
|
|
2020-04-16 17:57:34 +00:00
|
|
|
function mainSearchHandler(result) {
|
2020-04-19 17:22:21 +00:00
|
|
|
let resetObj = {data: [], next: 0, total: 0, loaded: false}
|
|
|
|
MainSearch.results.allTab = result
|
|
|
|
MainSearch.results.query = result.QUERY
|
|
|
|
MainSearch.results.trackTab = {...resetObj}
|
|
|
|
MainSearch.results.albumTab = {...resetObj}
|
|
|
|
MainSearch.results.artistTab = {...resetObj}
|
|
|
|
MainSearch.results.playlistTab = {...resetObj}
|
2020-04-16 17:57:34 +00:00
|
|
|
document.getElementById('search_all_tab').click()
|
|
|
|
document.getElementById('search_tab_content').style.display = 'block'
|
|
|
|
document.getElementById('main_search_tablink').click()
|
2020-04-07 22:19:27 +00:00
|
|
|
}
|
2020-04-16 19:26:00 +00:00
|
|
|
|
2020-04-16 17:57:34 +00:00
|
|
|
socket.on('mainSearch', function (result) {
|
|
|
|
mainSearchHandler(result)
|
2020-04-17 10:15:12 +00:00
|
|
|
})
|