2015-12-13 04:42:28 +00:00
|
|
|
<template>
|
2015-12-29 01:35:22 +00:00
|
|
|
<div id="app" tabindex="0" v-show="authenticated"
|
2015-12-13 04:42:28 +00:00
|
|
|
@keydown.space="togglePlayback"
|
|
|
|
@keydown.j = "playNext"
|
|
|
|
@keydown.k = "playPrev"
|
|
|
|
@keydown.f = "search"
|
2015-12-22 01:58:58 +00:00
|
|
|
@keydown.177 = "playPrev"
|
|
|
|
@keydown.176 = "playNext"
|
|
|
|
@keydown.179 = "togglePlayback"
|
2015-12-13 04:42:28 +00:00
|
|
|
>
|
|
|
|
<site-header></site-header>
|
|
|
|
<main-wrapper></main-wrapper>
|
|
|
|
<site-footer></site-footer>
|
2015-12-15 16:28:54 +00:00
|
|
|
<overlay :state.sync="overlayState"></overlay>
|
2015-12-13 04:42:28 +00:00
|
|
|
</div>
|
2015-12-29 01:16:36 +00:00
|
|
|
|
|
|
|
<div class="login-wrapper" v-else>
|
|
|
|
<login-form></login-form>
|
|
|
|
</div>
|
2015-12-13 04:42:28 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import $ from 'jquery';
|
|
|
|
|
|
|
|
import siteHeader from './components/site-header/index.vue';
|
|
|
|
import siteFooter from './components/site-footer/index.vue';
|
|
|
|
import mainWrapper from './components/main-wrapper/index.vue';
|
|
|
|
import overlay from './components/shared/overlay.vue';
|
2015-12-29 01:16:36 +00:00
|
|
|
import loginForm from './components/auth/login-form.vue';
|
2015-12-13 04:42:28 +00:00
|
|
|
|
|
|
|
import sharedStore from './stores/shared';
|
2015-12-30 04:14:47 +00:00
|
|
|
import queueStore from './stores/queue';
|
2015-12-13 04:42:28 +00:00
|
|
|
import preferenceStore from './stores/preference';
|
|
|
|
import playback from './services/playback';
|
2016-01-03 08:23:29 +00:00
|
|
|
import focusDirective from './directives/focus';
|
2015-12-29 01:35:22 +00:00
|
|
|
import ls from './services/ls';
|
2015-12-13 04:42:28 +00:00
|
|
|
|
|
|
|
export default {
|
2015-12-29 01:16:36 +00:00
|
|
|
components: { siteHeader, siteFooter, mainWrapper, overlay, loginForm },
|
2015-12-13 04:42:28 +00:00
|
|
|
|
|
|
|
replace: false,
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
prefs: preferenceStore.state,
|
2015-12-29 01:35:22 +00:00
|
|
|
authenticated: false,
|
2015-12-15 16:28:54 +00:00
|
|
|
|
|
|
|
overlayState: {
|
|
|
|
showing: true,
|
|
|
|
dismissable: false,
|
|
|
|
type: 'loading',
|
|
|
|
message: '',
|
|
|
|
},
|
2015-12-13 04:42:28 +00:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
ready() {
|
2015-12-29 01:35:22 +00:00
|
|
|
// The app has just been initialized, check if we can get the user data with an already existing token
|
2016-01-01 06:16:17 +00:00
|
|
|
var token = ls.get('jwt-token');
|
2015-12-29 01:35:22 +00:00
|
|
|
if (token) {
|
|
|
|
this.authenticated = true;
|
2015-12-29 01:16:36 +00:00
|
|
|
this.init();
|
|
|
|
}
|
2016-01-16 01:37:29 +00:00
|
|
|
|
|
|
|
// Create the element to be the ghost drag image.
|
|
|
|
$('<div id="dragGhost"></div>').appendTo('body');
|
2015-12-29 01:16:36 +00:00
|
|
|
},
|
2015-12-13 04:42:28 +00:00
|
|
|
|
2015-12-29 01:16:36 +00:00
|
|
|
methods: {
|
|
|
|
init() {
|
|
|
|
this.showOverlay();
|
2015-12-13 04:42:28 +00:00
|
|
|
|
2015-12-29 01:16:36 +00:00
|
|
|
// Make the most important HTTP request to get all necessary data from the server.
|
|
|
|
// Afterwards, init all mandatory stores and services.
|
|
|
|
sharedStore.init(() => {
|
|
|
|
playback.init(this);
|
2015-12-13 04:42:28 +00:00
|
|
|
|
2015-12-29 01:16:36 +00:00
|
|
|
this.hideOverlay();
|
2015-12-13 04:42:28 +00:00
|
|
|
|
2016-01-01 07:47:03 +00:00
|
|
|
// Load the default view.
|
|
|
|
this.loadMainView('queue');
|
|
|
|
|
|
|
|
// Ask for user's notification permission.
|
2015-12-29 01:16:36 +00:00
|
|
|
this.requestNotifPermission();
|
|
|
|
|
2016-01-12 15:39:50 +00:00
|
|
|
// To confirm or not to confirm closing, it's a question.
|
|
|
|
window.onbeforeunload = e => {
|
|
|
|
if (!this.prefs.confirmClosing) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 'You asked Koel to confirm before closing, so here it is.';
|
|
|
|
};
|
|
|
|
|
2015-12-29 01:16:36 +00:00
|
|
|
// Let all other compoenents know we're ready.
|
|
|
|
this.$broadcast('koel:ready');
|
2015-12-29 01:35:22 +00:00
|
|
|
}, () => this.authenticated = false);
|
2015-12-29 01:16:36 +00:00
|
|
|
},
|
2015-12-13 04:42:28 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Toggle playback when user presses Space key.
|
|
|
|
*
|
2015-12-24 10:02:47 +00:00
|
|
|
* @param {Object} e The keydown event
|
2015-12-13 04:42:28 +00:00
|
|
|
*/
|
|
|
|
togglePlayback(e) {
|
|
|
|
if ($(e.target).is('input,textarea,button,select')) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Ah... Good ol' jQuery. Whatever play/pause control is there, we blindly click it.
|
|
|
|
$('#mainFooter .play:visible, #mainFooter .pause:visible').click();
|
|
|
|
e.preventDefault();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
2015-12-29 19:02:19 +00:00
|
|
|
* Play the previous song when user presses K.
|
2015-12-13 04:42:28 +00:00
|
|
|
*
|
2015-12-24 10:02:47 +00:00
|
|
|
* @param {Object} e The keydown event
|
2015-12-13 04:42:28 +00:00
|
|
|
*/
|
|
|
|
playPrev(e) {
|
|
|
|
if ($(e.target).is('input,textarea')) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
playback.playPrev();
|
|
|
|
e.preventDefault();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Play the next song when user presses J.
|
|
|
|
*
|
2015-12-24 10:02:47 +00:00
|
|
|
* @param {Object} e The keydown event
|
2015-12-13 04:42:28 +00:00
|
|
|
*/
|
|
|
|
playNext(e) {
|
|
|
|
if ($(e.target).is('input,textarea')) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
playback.playNext();
|
|
|
|
e.preventDefault();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Put focus into the search field when user presses F.
|
|
|
|
*
|
2015-12-24 10:02:47 +00:00
|
|
|
* @param {Object} e The keydown event
|
2015-12-13 04:42:28 +00:00
|
|
|
*/
|
|
|
|
search(e) {
|
2015-12-24 10:02:47 +00:00
|
|
|
if ($(e.target).is('input,textarea') || e.metaKey || e.ctrlKey) {
|
2015-12-13 04:42:28 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
$('#searchForm input[type="search"]').focus().select();
|
|
|
|
e.preventDefault();
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Request for notification permission if it's not provided and the user is OK with notifs.
|
|
|
|
*/
|
|
|
|
requestNotifPermission() {
|
|
|
|
if (window.Notification && this.prefs.notify && Notification.permission !== 'granted') {
|
|
|
|
Notification.requestPermission(result => {
|
|
|
|
if (result === 'denied') {
|
|
|
|
preferenceStore.set('notify', false);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load (display) a main panel (view).
|
|
|
|
*
|
2016-01-15 08:13:23 +00:00
|
|
|
* @param string view The view, which can be found under components/main-wrapper/main-content.
|
|
|
|
* @param [...args] Extra data to attach to the view.
|
2015-12-13 04:42:28 +00:00
|
|
|
*/
|
2016-01-15 08:13:23 +00:00
|
|
|
loadMainView(view, ...args) {
|
|
|
|
this.$broadcast('main-content-view:load', view, ...args);
|
2015-12-13 04:42:28 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load a playlist into the main panel.
|
|
|
|
*
|
2015-12-24 10:02:47 +00:00
|
|
|
* @param {Object} playlist The playlist object
|
2015-12-13 04:42:28 +00:00
|
|
|
*/
|
|
|
|
loadPlaylist(playlist) {
|
2016-01-15 08:13:23 +00:00
|
|
|
this.loadMainView('playlist', playlist);
|
2015-12-13 04:42:28 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load the Favorites view.
|
|
|
|
*/
|
|
|
|
loadFavorites() {
|
|
|
|
this.loadMainView('favorites');
|
|
|
|
},
|
|
|
|
|
2016-01-15 07:27:25 +00:00
|
|
|
/**
|
|
|
|
* Load an album into the main panel.
|
|
|
|
*
|
|
|
|
* @param {Object} album The album object
|
|
|
|
*/
|
|
|
|
loadAlbum(album) {
|
2016-01-15 08:13:23 +00:00
|
|
|
this.loadMainView('album', album);
|
2016-01-15 07:27:25 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Load an artist into the main panel.
|
|
|
|
*
|
|
|
|
* @param {Object} artist The artist object
|
|
|
|
*/
|
|
|
|
loadArtist(artist) {
|
2016-01-15 08:13:23 +00:00
|
|
|
this.loadMainView('artist', artist);
|
2016-01-15 07:27:25 +00:00
|
|
|
},
|
|
|
|
|
2015-12-13 04:42:28 +00:00
|
|
|
/**
|
2015-12-15 16:28:54 +00:00
|
|
|
* Shows the overlay.
|
|
|
|
*
|
|
|
|
* @param {String} message The message to display.
|
|
|
|
* @param {String} type (loading|success|info|warning|error)
|
|
|
|
* @param {Boolean} dismissable Whether to show the Close button
|
|
|
|
*/
|
|
|
|
showOverlay(message = 'Just a little patience…', type = 'loading', dismissable = false) {
|
|
|
|
this.overlayState.message = message;
|
|
|
|
this.overlayState.type = type;
|
|
|
|
this.overlayState.dismissable = dismissable;
|
|
|
|
this.overlayState.showing = true;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Hides the overlay.
|
2015-12-13 04:42:28 +00:00
|
|
|
*/
|
2015-12-15 16:28:54 +00:00
|
|
|
hideOverlay() {
|
|
|
|
this.overlayState.showing = false;
|
|
|
|
},
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Shows the close button, allowing the user to close the overlay.
|
|
|
|
*/
|
|
|
|
setOverlayDimissable() {
|
|
|
|
this.overlayState.dismissable = true;
|
|
|
|
},
|
2015-12-30 04:14:47 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Log the current user out and reset the application state.
|
|
|
|
*/
|
|
|
|
logout() {
|
|
|
|
ls.remove('jwt-token');
|
|
|
|
this.authenticated = false;
|
|
|
|
playback.stop();
|
|
|
|
queueStore.clear();
|
|
|
|
this.loadMainView('queue');
|
|
|
|
this.$broadcast('koel:teardown');
|
|
|
|
},
|
2015-12-13 04:42:28 +00:00
|
|
|
},
|
2015-12-29 01:35:22 +00:00
|
|
|
|
|
|
|
events: {
|
|
|
|
'user:loggedin': function () {
|
|
|
|
this.authenticated = true;
|
|
|
|
this.init();
|
|
|
|
},
|
|
|
|
},
|
2015-12-13 04:42:28 +00:00
|
|
|
};
|
|
|
|
|
2015-12-14 18:55:13 +00:00
|
|
|
/**
|
|
|
|
* Modified version of orderBy that is case insensitive
|
|
|
|
*
|
|
|
|
* @source https://github.com/vuejs/vue/blob/dev/src/filters/array-filters.js
|
|
|
|
*/
|
2015-12-15 12:26:03 +00:00
|
|
|
Vue.filter('caseInsensitiveOrderBy', (arr, sortKey, reverse) => {
|
2015-12-14 18:55:13 +00:00
|
|
|
if (!sortKey) {
|
2015-12-15 12:26:03 +00:00
|
|
|
return arr;
|
2015-12-14 18:55:13 +00:00
|
|
|
}
|
2015-12-15 12:26:03 +00:00
|
|
|
|
2015-12-14 18:55:13 +00:00
|
|
|
var order = (reverse && reverse < 0) ? -1 : 1
|
2015-12-15 12:26:03 +00:00
|
|
|
|
2015-12-14 18:55:13 +00:00
|
|
|
// sort on a copy to avoid mutating original array
|
2015-12-15 12:26:03 +00:00
|
|
|
return arr.slice().sort((a, b) => {
|
2015-12-14 19:54:56 +00:00
|
|
|
a = Vue.util.isObject(a) ? Vue.parsers.path.getPath(a, sortKey) : a
|
|
|
|
b = Vue.util.isObject(b) ? Vue.parsers.path.getPath(b, sortKey) : b
|
2015-12-14 18:55:13 +00:00
|
|
|
|
|
|
|
a = a === undefined ? a : a.toLowerCase()
|
|
|
|
b = b === undefined ? b : b.toLowerCase()
|
|
|
|
|
|
|
|
return a === b ? 0 : a > b ? order : -order
|
2015-12-15 12:26:03 +00:00
|
|
|
});
|
2015-12-14 18:55:13 +00:00
|
|
|
});
|
|
|
|
|
2015-12-13 04:42:28 +00:00
|
|
|
// Register the global directives
|
2016-01-03 08:23:29 +00:00
|
|
|
Vue.directive('koel-focus', focusDirective);
|
2015-12-13 04:42:28 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="sass">
|
|
|
|
@import "resources/assets/sass/partials/_vars.scss";
|
|
|
|
@import "resources/assets/sass/partials/_mixins.scss";
|
2015-12-19 16:36:44 +00:00
|
|
|
@import "resources/assets/sass/partials/_shared.scss";
|
2015-12-13 04:42:28 +00:00
|
|
|
|
2016-01-16 01:37:29 +00:00
|
|
|
#dragGhost {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
background: $colorGreen;
|
|
|
|
padding: 10px;
|
|
|
|
border-radius: 3px;
|
|
|
|
color: #fff;
|
|
|
|
font-family: $fontFamily;
|
|
|
|
font-size: $fontSize;
|
|
|
|
font-weight: $fontWeight_Thin;
|
|
|
|
}
|
|
|
|
|
2015-12-29 01:16:36 +00:00
|
|
|
#app, .login-wrapper {
|
2015-12-13 04:42:28 +00:00
|
|
|
display: flex;
|
|
|
|
min-height: 100vh;
|
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
background: $colorMainBgr;
|
|
|
|
color: $colorMainText;
|
|
|
|
|
|
|
|
font-family: $fontFamily;
|
|
|
|
font-size: $fontSize;
|
|
|
|
line-height: $fontSize * 1.5;
|
|
|
|
font-weight: $fontWeight_Thin;
|
|
|
|
|
|
|
|
padding-bottom: $footerHeight;
|
|
|
|
}
|
2015-12-29 01:16:36 +00:00
|
|
|
|
|
|
|
.login-wrapper {
|
|
|
|
@include vertical-center();
|
2016-01-12 15:09:30 +00:00
|
|
|
|
|
|
|
padding-bottom: 0;
|
2015-12-29 01:16:36 +00:00
|
|
|
}
|
2015-12-13 04:42:28 +00:00
|
|
|
</style>
|