console.log('Version 1:20:2'); const appModal = $('#modalDownloadQueue'); const loader = $("#loader-wrapper"); function construct_artist_result_html(artist_list) { let html = '

Found Artist!

'; let index = 0; artist_list.forEach((element) => { index += 1; html += `

${element.name}

` if (index === 1 && artist_list.length > 1) { html += '
'; html += '
Suggested Artists
' html += '
'; } }) return html } function proc_notification(icon, html, text) { Swal.fire({ html: html, icon: icon, text: text }) } $('#settings_btn').on('click', () => { $('#modalSettings').modal('toggle'); }); $('#catalog_btn').on('click', () => { $('#modalCatalog').modal('toggle'); }); $('#queue_btn').on('click', () => { appModal.modal('toggle'); }); $('#download_btn').on('click', () => { loader.fadeIn(300); let artist = $('#search_bar').val(); let icon = 'error'; let title = 'What the flip?!'; setTimeout(() => { if (artist) { console.log('Sending search request...'); $.ajax({ url: `/artist/${artist}`, success: (response) => { console.log('Receiving response...'); console.log(response); console.log('==========='); icon = 'success'; title = construct_artist_result_html(response); proc_notification(icon, title, 'Artist found'); $('#search_bar').val(''); loader.fadeOut(700); }, error: (response) => { console.log('Receiving response...'); console.log(response); console.log('==========='); proc_notification(icon, title, response.statusText); loader.fadeOut(700); } }); } else { proc_notification(icon, title, 'You need to add an artist, c\'mon man!'); loader.fadeOut(700); } }, 100); }); document.addEventListener('alpine:init', () => { console.log('Alpine:init'); Alpine.store('app', { init() { // TODO: Poll for artists and queue this.Artists = []; this.Queue = []; this.ArtistResults = [] }, Artists: [], // Rendered in the 'Artists' modal ArtistResults: [], // Rendered in the SWAL popup Queue: [], // Rendered in the 'Queue' modal }); $("#loader-wrapper").fadeOut(900); });