koel/resources/assets/js/components/layout/app-header.vue

113 lines
2.9 KiB
Vue
Raw Normal View History

2022-04-15 14:24:30 +00:00
<template>
2022-04-15 17:00:08 +00:00
<header id="mainHeader">
<h1 class="brand" v-once>{{ appConfig.name }}</h1>
2022-04-15 14:24:30 +00:00
<span class="hamburger" @click="toggleSidebar" role="button" title="Show or hide the sidebar">
<i class="fa fa-bars"></i>
</span>
<span class="magnifier" @click="toggleSearchForm" role="button" title="Show or hide the search form">
<i class="fa fa-search"></i>
</span>
<search-form/>
<div class="header-right">
<user-badge/>
2022-04-15 17:00:08 +00:00
<button
type="button"
@click.prevent="showAboutDialog"
class="about control"
title="About Koel"
data-testid="about-btn"
>
2022-04-15 14:24:30 +00:00
<span v-if="shouldDisplayVersionUpdate && hasNewVersion" class="new-version" data-test="new-version-available">
{{ sharedState.latestVersion }} available!
</span>
<i v-else class="fa fa-info-circle"></i>
</button>
</div>
</header>
</template>
2022-04-15 17:00:08 +00:00
<script lang="ts" setup>
import { computed, defineAsyncComponent, reactive } from 'vue'
2022-04-15 14:24:30 +00:00
import compareVersions from 'compare-versions'
2022-04-15 17:00:08 +00:00
import { eventBus } from '@/utils'
import { app as appConfig } from '@/config'
2022-04-15 14:24:30 +00:00
import { sharedStore, userStore } from '@/stores'
2022-04-15 17:00:08 +00:00
const SearchForm = defineAsyncComponent(() => import('@/components/ui/search-form.vue'))
const UserBadge = defineAsyncComponent(() => import('@/components/user/badge.vue'))
2022-04-15 14:24:30 +00:00
2022-04-15 17:00:08 +00:00
const userState = reactive(userStore.state)
const sharedState = reactive(sharedStore.state)
2022-04-15 14:24:30 +00:00
2022-04-15 17:00:08 +00:00
const shouldDisplayVersionUpdate = computed(() => userState.current.is_admin)
2022-04-15 14:24:30 +00:00
2022-04-15 17:00:08 +00:00
const hasNewVersion = computed(() => {
return compareVersions.compare(sharedState.latestVersion, sharedState.currentVersion, '>')
2022-04-15 14:24:30 +00:00
})
2022-04-15 17:00:08 +00:00
const toggleSidebar = () => eventBus.emit('TOGGLE_SIDEBAR')
const toggleSearchForm = () => eventBus.emit('TOGGLE_SEARCH_FORM')
const showAboutDialog = () => eventBus.emit('MODAL_SHOW_ABOUT_DIALOG')
2022-04-15 14:24:30 +00:00
</script>
<style lang="scss">
#mainHeader {
height: var(--header-height);
background: var(--color-bg-secondary);
display: flex;
-webkit-app-region: drag;
box-shadow: 0 0 2px 0 rgba(0, 0, 0, .4);
input, a {
-webkit-app-region: no-drag;
}
h1.brand {
flex: 1;
font-size: 1.7rem;
font-weight: var(--font-weight-thin);
opacity: 0;
line-height: var(--header-height);
text-align: center;
}
.hamburger, .magnifier {
font-size: 1.4rem;
flex: 0 0 48px;
order: -1;
line-height: var(--header-height);
text-align: center;
display: none;
}
.header-right {
display: flex;
align-items: center;
flex: 1;
justify-content: flex-end;
.about {
height: 100%;
@include vertical-center();
padding: 16px;
border-left: 1px solid rgba(255, 255, 255, .1);
}
}
@media only screen and (max-width: 667px) {
display: flex;
align-content: stretch;
justify-content: flext-start;
.hamburger, .magnifier {
display: inline-block;
}
h1.brand {
opacity: 1;
}
}
}
</style>