koel/resources/assets/js/App.vue
2022-07-04 10:36:39 +02:00

176 lines
4.7 KiB
Vue

<template>
<div id="main" v-if="authenticated">
<Hotkeys/>
<EventListeners/>
<AppHeader/>
<MainWrapper/>
<AppFooter/>
<SupportKoel/>
<Overlay/>
</div>
<template v-else>
<div class="login-wrapper">
<LoginForm @loggedin="onUserLoggedIn"/>
</div>
</template>
<SongContextMenu ref="songContextMenu"/>
<AlbumContextMenu ref="albumContextMenu"/>
<ArtistContextMenu ref="artistContextMenu"/>
</template>
<script lang="ts" setup>
import { defineAsyncComponent, nextTick, onMounted, ref } from 'vue'
import AppHeader from '@/components/layout/AppHeader.vue'
import AppFooter from '@/components/layout/app-footer/index.vue'
import EventListeners from '@/components/utils/EventListeners.vue'
import Hotkeys from '@/components/utils/HotkeyListener.vue'
import LoginForm from '@/components/auth/LoginForm.vue'
import MainWrapper from '@/components/layout/main-wrapper/index.vue'
import Overlay from '@/components/ui/Overlay.vue'
import { $, arrayify, eventBus, hideOverlay, showOverlay } from '@/utils'
import { commonStore, favoriteStore, preferenceStore as preferences, queueStore } from '@/stores'
import { authService, playbackService, socketService } from '@/services'
const SongContextMenu = defineAsyncComponent(() => import('@/components/song/SongContextMenu.vue'))
const AlbumContextMenu = defineAsyncComponent(() => import('@/components/album/AlbumContextMenu.vue'))
const ArtistContextMenu = defineAsyncComponent(() => import('@/components/artist/ArtistContextMenu.vue'))
const SupportKoel = defineAsyncComponent(() => import('@/components/meta/SupportKoel.vue'))
const songContextMenu = ref<InstanceType<typeof SongContextMenu>>()
const albumContextMenu = ref<InstanceType<typeof AlbumContextMenu>>()
const artistContextMenu = ref<InstanceType<typeof ArtistContextMenu>>()
const authenticated = ref(false)
/**
* Request for notification permission if it's not provided and the user is OK with notifications.
*/
const requestNotificationPermission = async () => {
if (window.Notification && preferences.notify && window.Notification.permission !== 'granted') {
preferences.notify = await window.Notification.requestPermission() === 'denied'
}
}
const onUserLoggedIn = () => {
authenticated.value = true
init()
}
const subscribeToBroadcastEvents = () => {
socketService.listen('SOCKET_TOGGLE_FAVORITE', (): void => {
if (queueStore.current) {
favoriteStore.toggleOne(queueStore.current)
}
})
}
onMounted(async () => {
// The app has just been initialized, check if we can get the user data with an already existing token
if (authService.hasToken()) {
authenticated.value = true
await init()
}
// Add an ugly mac/non-mac class for OS-targeting styles.
// I'm crying inside.
$.addClass(document.documentElement, navigator.userAgent.includes('Mac') ? 'mac' : 'non-mac')
})
eventBus.on('SONG_CONTEXT_MENU_REQUESTED', async (e: MouseEvent, songs: Song | Song[]) => {
await nextTick()
songContextMenu.value?.open(e.pageY, e.pageX, { songs: arrayify(songs) })
})
eventBus.on('ALBUM_CONTEXT_MENU_REQUESTED', async (e: MouseEvent, album: Album) => {
await nextTick()
albumContextMenu.value?.open(e.pageY, e.pageX, { album })
})
eventBus.on('ARTIST_CONTEXT_MENU_REQUESTED', async (e: MouseEvent, artist: Artist) => {
await nextTick()
artistContextMenu.value?.open(e.pageY, e.pageX, { artist })
})
const init = async () => {
showOverlay()
await socketService.init()
try {
await commonStore.init()
window.setTimeout(() => {
playbackService.init()
hideOverlay()
requestNotificationPermission()
window.addEventListener('beforeunload', (e: BeforeUnloadEvent): void => {
if (!preferences.confirmClosing) {
return
}
e.preventDefault()
e.returnValue = ''
})
subscribeToBroadcastEvents()
// Let all other components know we're ready.
eventBus.emit('KOEL_READY')
}, 100)
} catch (err) {
authenticated.value = false
throw err
}
}
</script>
<style lang="scss">
@import "#/app.scss";
#dragGhost {
display: inline-block;
background: var(--color-green);
padding: .8rem;
border-radius: .2rem;
color: var(--color-text-primary);
font-family: var(--font-family);
font-size: 1rem;
font-weight: var(--font-weight-light);
position: fixed;
top: 0;
left: 0;
z-index: -1;
@media (hover: none) {
display: none;
}
}
#copyArea {
position: absolute;
left: -9999px;
width: 1px;
height: 1px;
bottom: 1px;
@media (hover: none) {
display: none;
}
}
#main, .login-wrapper {
display: flex;
height: 100vh;
flex-direction: column;
}
.login-wrapper {
@include vertical-center();
user-select: none;
padding-bottom: 0;
}
</style>