FitTrackee/fittrackee_client/src/App.vue

142 lines
3.3 KiB
Vue
Raw Normal View History

<template>
<div id="top" />
<NavBar @menuInteraction="updateHideScrollBar" />
<div v-if="appLoading" class="app-container">
<div class="app-loading">
<Loader />
</div>
</div>
<div v-else class="app-container" :class="{ 'hide-scroll': hideScrollBar }">
<router-view v-if="appConfig" />
<NoConfig v-else />
2021-08-15 09:24:10 +02:00
</div>
<div class="container scroll">
<div
class="scroll-button"
:class="{ 'display-button': displayScrollButton }"
@click="scrollToTop"
>
<i class="fa fa-chevron-up" aria-hidden="true"></i>
</div>
</div>
2021-07-25 17:10:55 +02:00
<Footer />
</template>
2021-07-25 13:03:34 +02:00
<script lang="ts">
import {
ComputedRef,
computed,
defineComponent,
ref,
onBeforeMount,
onMounted,
} from 'vue'
2021-08-11 22:21:26 +02:00
import Footer from '@/components/Footer.vue'
2021-07-25 13:23:25 +02:00
import NavBar from '@/components/NavBar.vue'
import NoConfig from '@/components/NoConfig.vue'
import { ROOT_STORE } from '@/store/constants'
2021-08-21 18:36:44 +02:00
import { IAppConfig } from '@/types/application'
import { useStore } from '@/use/useStore'
2021-07-25 13:03:34 +02:00
2021-07-25 13:23:25 +02:00
export default defineComponent({
name: 'App',
components: {
2021-07-25 17:10:55 +02:00
Footer,
2021-07-25 13:23:25 +02:00
NavBar,
NoConfig,
2021-07-25 13:23:25 +02:00
},
2021-08-15 12:30:39 +02:00
setup() {
const store = useStore()
const appConfig: ComputedRef<IAppConfig> = computed(
() => store.getters[ROOT_STORE.GETTERS.APP_CONFIG]
)
const appLoading: ComputedRef<boolean> = computed(
() => store.getters[ROOT_STORE.GETTERS.APP_LOADING]
)
const hideScrollBar = ref(false)
const displayScrollButton = ref(false)
onBeforeMount(() =>
store.dispatch(ROOT_STORE.ACTIONS.GET_APPLICATION_CONFIG)
)
onMounted(() => scroll())
function updateHideScrollBar(isMenuOpen: boolean) {
hideScrollBar.value = isMenuOpen
}
function isScrolledToBottom(element: Element): boolean {
return (
element.getBoundingClientRect().top < window.innerHeight &&
element.getBoundingClientRect().bottom >= 0
)
}
function scroll() {
window.onscroll = () => {
let bottom = document.querySelector('#bottom')
displayScrollButton.value =
bottom !== null && isScrolledToBottom(bottom)
}
}
function scrollToTop() {
window.scrollTo({
top: 0,
behavior: 'smooth',
})
setTimeout(() => {
displayScrollButton.value = false
}, 300)
}
return {
appConfig,
appLoading,
hideScrollBar,
displayScrollButton,
scrollToTop,
updateHideScrollBar,
}
2021-08-15 12:30:39 +02:00
},
2021-07-25 13:23:25 +02:00
})
2021-07-25 13:03:34 +02:00
</script>
2021-09-20 12:18:40 +02:00
<style lang="scss" scoped>
@import '~@/scss/base';
2021-08-15 09:24:10 +02:00
.app-container {
height: $app-height;
&.hide-scroll {
overflow: hidden;
}
.app-loading {
display: flex;
align-items: center;
height: 100%;
}
2021-08-15 09:24:10 +02:00
}
.scroll {
display: flex;
justify-content: flex-end;
position: fixed;
bottom: 42px;
right: -15px;
padding: 0 $default-padding * 2.5;
.scroll-button {
background-color: var(--scroll-button-bg-color);
border-radius: $border-radius;
box-shadow: 1px 1px 3px lightgrey;
display: none;
padding: 0 $default-padding;
&.display-button {
display: block;
}
}
}
</style>