86 lines
1.9 KiB
Vue
86 lines
1.9 KiB
Vue
<script setup lang="ts">
|
||
import LegacyLayout from '~/LegacyLayout.vue'
|
||
import UiApp from '~/ui/App.vue'
|
||
|
||
import type { QueueTrack } from '~/composables/audio/queue'
|
||
|
||
import { watchEffect } from 'vue'
|
||
|
||
import { useQueue } from '~/composables/audio/queue'
|
||
import { useStore } from '~/store'
|
||
|
||
import useLogger from '~/composables/useLogger'
|
||
|
||
import { useLocalStorage } from '@vueuse/core'
|
||
|
||
const logger = useLogger()
|
||
logger.debug('App setup()')
|
||
|
||
const store = useStore()
|
||
|
||
// Tracks
|
||
const { currentTrack } = useQueue()
|
||
const getTrackInformationText = (track: QueueTrack | undefined) => {
|
||
if (!track) {
|
||
return null
|
||
}
|
||
|
||
return `♫ ${track.title} – ${track.artistCredit} ♫`
|
||
}
|
||
|
||
// Update title
|
||
const initialTitle = document.title
|
||
watchEffect(() => {
|
||
const parts = [
|
||
getTrackInformationText(currentTrack.value),
|
||
store.state.ui.pageTitle,
|
||
initialTitle || 'Funkwhale'
|
||
]
|
||
|
||
document.title = parts.filter(i => i).join(' – ')
|
||
})
|
||
|
||
// Styles
|
||
const customStylesheets = computed(() => {
|
||
return store.state.instance.frontSettings.additionalStylesheets ?? []
|
||
})
|
||
|
||
useStyleTag(computed(() => store.state.instance.settings.ui.custom_css.value))
|
||
|
||
// Fake content
|
||
onMounted(async () => {
|
||
await nextTick()
|
||
document.getElementById('fake-content')?.classList.add('loaded')
|
||
})
|
||
|
||
// Time ago
|
||
useIntervalFn(() => {
|
||
// used to redraw ago dates every minute
|
||
store.commit('ui/computeLastDate')
|
||
}, 1000 * 60)
|
||
|
||
// Shortcuts
|
||
const [showShortcutsModal, toggleShortcutsModal] = useToggle(false)
|
||
onKeyboardShortcut('h', () => toggleShortcutsModal())
|
||
|
||
const { width } = useWindowSize()
|
||
|
||
// Fetch user data on startup
|
||
// NOTE: We're not checking if we're authenticated in the store,
|
||
// because we want to learn if we are authenticated at all
|
||
store.dispatch('auth/fetchUser')
|
||
|
||
const isUIv2 = useLocalStorage('ui-v2', false)
|
||
</script>
|
||
|
||
<template>
|
||
<UiApp v-if="isUIv2" />
|
||
<LegacyLayout v-else />
|
||
</template>
|
||
|
||
<style>
|
||
html, body {
|
||
font-size: 16px;
|
||
}
|
||
</style>
|