deemix-webui/public/js/app/search.js

159 lines
4.0 KiB
JavaScript
Raw Normal View History

// Load more content when the search page is at the end
$('#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 19:22:21 +02:00
scrolledSearch(search_selected.split('_')[0])
2020-04-09 16:06:33 +02:00
}
}
2020-04-09 16:06:33 +02:00
})
2020-04-19 19:22:21 +02: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) {
socket.emit('search', {
2020-04-19 19:22:21 +02:00
term: query,
type: type,
start: MainSearch.results[type+"Tab"].next,
nb: 30
})
2020-04-09 16:06:33 +02:00
}
}
function searchUpadate(result) {
2020-04-19 19:22:21 +02: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 16:06:33 +02:00
}
2020-04-19 19:22:21 +02:00
MainSearch.results[result.type+"Tab"].loaded = true
2020-04-09 12:50:05 +02:00
}
socket.on('search', function (result) {
searchUpadate(result)
})
2020-04-09 12:50:05 +02:00
function clickElement(button) {
return document.getElementById(button).click()
2020-04-09 12:24:49 +02:00
}
function sendAddToQueue(url, bitrate = null) {
2020-04-18 14:59:58 +02:00
if (url.indexOf(";") != -1){
urls = url.split(";")
urls.forEach(url=>{
socket.emit('addToQueue', { url: url, bitrate: bitrate })
})
}else if(url != ""){
2020-04-18 14:59:58 +02:00
socket.emit('addToQueue', { url: url, bitrate: bitrate })
}
}
let MainSearch = new Vue({
2020-04-19 19:22:21 +02:00
el: '#search_tab',
data: {
names: {
TOP_RESULT: 'Top Result',
TRACK: 'Tracks',
ARTIST: 'Artists',
ALBUM: 'Albums',
PLAYLIST: 'Playlists'
},
results: {
query: '',
allTab: {
ORDER: [],
2020-04-19 19:22:21 +02:00
TOP_RESULT: [],
ALBUM: {},
ARTIST: {},
TRACK: {},
PLAYLIST: {}
2020-04-19 19:22:21 +02: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
}
}
},
methods: {
changeSearchTab(section) {
if (section != 'TOP_RESULT') clickElement('search_' + section.toLowerCase() + '_tab')
2020-04-10 18:00:42 +02:00
},
addToQueue: function(e){e.stopPropagation(); sendAddToQueue(e.currentTarget.dataset.link)},
openQualityModal: function(e){e.preventDefault(); openQualityModal(e.currentTarget.dataset.link)}
}
2020-04-08 18:43:35 +02:00
})
2020-04-08 00:19:27 +02:00
// Search section
$("#searchbar").keyup(function(e){
2020-04-08 18:43:35 +02:00
if(e.keyCode == 13){
2020-04-19 19:22:21 +02:00
let term = this.value
if (isValidURL(term)){
if (e.ctrlKey){
openQualityModal(term);
}else{
sendAddToQueue(term);
}
}else{
2020-04-19 19:22:21 +02:00
if (term != MainSearch.query || main_selected == 'search_tab'){
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 12:24:49 +02:00
}
}
2020-04-08 00:19:27 +02:00
})
function mainSearchHandler(result) {
2020-04-19 19:22:21 +02: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}
document.getElementById('search_all_tab').click()
document.getElementById('search_tab_content').style.display = 'block'
document.getElementById('main_search_tablink').click()
2020-04-08 00:19:27 +02:00
}
socket.on('mainSearch', function (result) {
mainSearchHandler(result)
})