re-organized main search methods, changed Utils export

This commit is contained in:
Roberto Tonino 2020-04-23 21:26:47 +02:00
parent da41d8f58b
commit 2c887d9e28
4 changed files with 51 additions and 43 deletions

View File

@ -57,13 +57,13 @@ const MainSearch = new Vue({
switch (topResultType) { switch (topResultType) {
case 'artist': case 'artist':
artistView(event) this.artistView(event)
break break
case 'album': case 'album':
albumView(event) this.albumView(event)
break break
case 'playlist': case 'playlist':
playlistView(event) this.playlistView(event)
break break
default: default:
@ -114,24 +114,20 @@ const MainSearch = new Vue({
nb: 30 nb: 30
}) })
} }
} },
} handleMainSearch(result) {
}).$mount('#search_tab')
socket.on('mainSearch', result => {
let resetObj = { data: [], next: 0, total: 0, loaded: false } let resetObj = { data: [], next: 0, total: 0, loaded: false }
MainSearch.results.allTab = result this.results.allTab = result
MainSearch.results.query = result.QUERY this.results.query = result.QUERY
MainSearch.results.trackTab = { ...resetObj } this.results.trackTab = { ...resetObj }
MainSearch.results.albumTab = { ...resetObj } this.results.albumTab = { ...resetObj }
MainSearch.results.artistTab = { ...resetObj } this.results.artistTab = { ...resetObj }
MainSearch.results.playlistTab = { ...resetObj } this.results.playlistTab = { ...resetObj }
document.getElementById('search_all_tab').click() document.getElementById('search_all_tab').click()
document.getElementById('search_tab_content').style.display = 'block' document.getElementById('search_tab_content').style.display = 'block'
document.getElementById('main_search_tablink').click() document.getElementById('main_search_tablink').click()
}) },
handleSearch(result) {
socket.on('search', result => {
let next = 0 let next = 0
if (result.next) { if (result.next) {
@ -140,15 +136,21 @@ socket.on('search', result => {
next = result.total next = result.total
} }
if (MainSearch.results[result.type + 'Tab'].total != result.total) { if (this.results[result.type + 'Tab'].total != result.total) {
MainSearch.results[result.type + 'Tab'].total = result.total this.results[result.type + 'Tab'].total = result.total
} }
if (MainSearch.results[result.type + 'Tab'].next != next) { if (this.results[result.type + 'Tab'].next != next) {
MainSearch.results[result.type + 'Tab'].next = next this.results[result.type + 'Tab'].next = next
MainSearch.results[result.type + 'Tab'].data = MainSearch.results[result.type + 'Tab'].data.concat(result.data) this.results[result.type + 'Tab'].data = this.results[result.type + 'Tab'].data.concat(result.data)
} }
MainSearch.results[result.type + 'Tab'].loaded = true this.results[result.type + 'Tab'].loaded = true
}) }
},
mounted() {
socket.on('mainSearch', this.handleMainSearch)
socket.on('search', this.handleSearch)
}
}).$mount('#search_tab')
export default MainSearch export default MainSearch

View File

@ -1,5 +1,5 @@
import MainSearch from './main-search.js' import MainSearch from './main-search.js'
import * as Utils from './utils.js' import Utils from './utils.js'
import QualityModal from './quality-modal.js' import QualityModal from './quality-modal.js'
import Downloads from './downloads.js' import Downloads from './downloads.js'
import { socket } from './socket.js' import { socket } from './socket.js'

View File

@ -4,7 +4,6 @@ import Downloads from './downloads.js'
import QualityModal from './quality-modal.js' import QualityModal from './quality-modal.js'
const TracklistTab = new Vue({ const TracklistTab = new Vue({
el: '#tracklist_tab',
data: { data: {
title: '', title: '',
metadata: '', metadata: '',
@ -116,6 +115,6 @@ const TracklistTab = new Vue({
socket.on('show_album', this.showAlbum) socket.on('show_album', this.showAlbum)
socket.on('show_playlist', this.showPlaylist) socket.on('show_playlist', this.showPlaylist)
} }
}) }).$mount('#tracklist_tab')
export default TracklistTab export default TracklistTab

View File

@ -1,4 +1,4 @@
export function isValidURL(text) { function isValidURL(text) {
if (text.toLowerCase().startsWith('http')) { if (text.toLowerCase().startsWith('http')) {
if (text.toLowerCase().indexOf('deezer.com') >= 0 || text.toLowerCase().indexOf('open.spotify.com') >= 0) if (text.toLowerCase().indexOf('deezer.com') >= 0 || text.toLowerCase().indexOf('open.spotify.com') >= 0)
return true return true
@ -6,7 +6,7 @@ export function isValidURL(text) {
return false return false
} }
export function convertDuration(duration) { function convertDuration(duration) {
//convert from seconds only to mm:ss format //convert from seconds only to mm:ss format
let mm, ss let mm, ss
mm = Math.floor(duration / 60) mm = Math.floor(duration / 60)
@ -18,7 +18,7 @@ export function convertDuration(duration) {
return mm + ':' + ss return mm + ':' + ss
} }
export function convertDurationSeparated(duration) { function convertDurationSeparated(duration) {
let hh, mm, ss let hh, mm, ss
mm = Math.floor(duration / 60) mm = Math.floor(duration / 60)
hh = Math.floor(mm / 60) hh = Math.floor(mm / 60)
@ -29,7 +29,7 @@ export function convertDurationSeparated(duration) {
// On scroll event, returns currentTarget = null // On scroll event, returns currentTarget = null
// Probably on other events too // Probably on other events too
export function debounce(func, wait, immediate) { function debounce(func, wait, immediate) {
var timeout var timeout
return function () { return function () {
var context = this var context = this
@ -44,3 +44,10 @@ export function debounce(func, wait, immediate) {
if (callNow) func.apply(context, args) if (callNow) func.apply(context, args)
} }
} }
export default {
isValidURL,
convertDuration,
convertDurationSeparated,
debounce
}