Dominik Pschenitschni
23707fc493
All checks were successful
continuous-integration/drone/push Build is passing
108 lines
3.4 KiB
Vue
108 lines
3.4 KiB
Vue
<template>
|
|
<Ready>
|
|
<template v-if="authUser">
|
|
<TheNavigation />
|
|
<ContentAuth />
|
|
</template>
|
|
<ContentLinkShare v-else-if="authLinkShare" />
|
|
<NoAuthWrapper v-else>
|
|
<RouterView />
|
|
</NoAuthWrapper>
|
|
|
|
<KeyboardShortcuts v-if="keyboardShortcutsActive" />
|
|
|
|
<Teleport to="body">
|
|
<AddToHomeScreen />
|
|
<UpdateNotification />
|
|
<Notification />
|
|
<DemoMode />
|
|
</Teleport>
|
|
</Ready>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import {computed, watch} from 'vue'
|
|
import {useRoute, useRouter} from 'vue-router'
|
|
import {useI18n} from 'vue-i18n'
|
|
import isTouchDevice from 'is-touch-device'
|
|
|
|
import Notification from '@/components/misc/Notification.vue'
|
|
import UpdateNotification from '@/components/home/UpdateNotification.vue'
|
|
import KeyboardShortcuts from '@/components/misc/keyboard-shortcuts/index.vue'
|
|
|
|
import TheNavigation from '@/components/home/TheNavigation.vue'
|
|
import ContentAuth from '@/components/home/ContentAuth.vue'
|
|
import ContentLinkShare from '@/components/home/ContentLinkShare.vue'
|
|
import NoAuthWrapper from '@/components/misc/NoAuthWrapper.vue'
|
|
import Ready from '@/components/misc/Ready.vue'
|
|
|
|
import {setLanguage} from '@/i18n'
|
|
|
|
import {useAuthStore} from '@/stores/auth'
|
|
import {useBaseStore} from '@/stores/base'
|
|
|
|
import {useColorScheme} from '@/composables/useColorScheme'
|
|
import {useBodyClass} from '@/composables/useBodyClass'
|
|
import AddToHomeScreen from '@/components/home/AddToHomeScreen.vue'
|
|
import DemoMode from '@/components/home/DemoMode.vue'
|
|
|
|
const importAccountDeleteService = () => import('@/services/accountDelete')
|
|
import {success} from '@/message'
|
|
|
|
const baseStore = useBaseStore()
|
|
const authStore = useAuthStore()
|
|
const router = useRouter()
|
|
const route = useRoute()
|
|
|
|
useBodyClass('is-touch', isTouchDevice())
|
|
const keyboardShortcutsActive = computed(() => baseStore.keyboardShortcutsActive)
|
|
|
|
const authUser = computed(() => authStore.authUser)
|
|
const authLinkShare = computed(() => authStore.authLinkShare)
|
|
|
|
const {t} = useI18n({useScope: 'global'})
|
|
|
|
// setup account deletion verification
|
|
const accountDeletionConfirm = computed(() => route.query?.accountDeletionConfirm as (string | undefined))
|
|
watch(accountDeletionConfirm, async (accountDeletionConfirm) => {
|
|
if (accountDeletionConfirm === undefined) {
|
|
return
|
|
}
|
|
|
|
const AccountDeleteService = (await importAccountDeleteService()).default
|
|
const accountDeletionService = new AccountDeleteService()
|
|
await accountDeletionService.confirm(accountDeletionConfirm)
|
|
success({message: t('user.deletion.confirmSuccess')})
|
|
authStore.refreshUserInfo()
|
|
}, { immediate: true })
|
|
|
|
// setup password reset redirect
|
|
const userPasswordReset = computed(() => route.query?.userPasswordReset as (string | undefined))
|
|
watch(userPasswordReset, (userPasswordReset) => {
|
|
if (userPasswordReset === undefined) {
|
|
return
|
|
}
|
|
|
|
localStorage.setItem('passwordResetToken', userPasswordReset)
|
|
router.push({name: 'user.password-reset.reset'})
|
|
}, { immediate: true })
|
|
|
|
// setup email verification redirect
|
|
const userEmailConfirm = computed(() => route.query?.userEmailConfirm as (string | undefined))
|
|
watch(userEmailConfirm, (userEmailConfirm) => {
|
|
if (userEmailConfirm === undefined) {
|
|
return
|
|
}
|
|
|
|
localStorage.setItem('emailConfirmToken', userEmailConfirm)
|
|
router.push({name: 'user.login'})
|
|
}, { immediate: true })
|
|
|
|
setLanguage(authStore.settings.language)
|
|
useColorScheme()
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import '@/styles/global.scss';
|
|
</style>
|