elk/layouts/default.vue

65 lines
2.5 KiB
Vue
Raw Normal View History

<script lang="ts" setup>
const route = useRoute()
const wideLayout = computed(() => route.meta.wideLayout ?? false)
</script>
2022-11-13 06:34:43 +01:00
<template>
2022-11-24 07:04:17 +01:00
<div h-full :class="{ zen: isZenMode }">
2022-12-27 21:07:19 +01:00
<main flex w-full mxa lg:max-w-80rem>
2023-01-05 12:33:00 +01:00
<aside class="hidden sm:flex w-1/8 md:w-1/6 lg:w-1/5 xl:w-1/4 justify-end xl:me-4 zen-hide" relative>
<div sticky top-0 w-20 xl:w-100 h-screen flex="~ col" lt-xl-items-center>
<slot name="left">
2023-01-05 12:33:00 +01:00
<div flex="~ col" overflow-y-auto justify-between h-full max-w-full mt-5>
2023-01-06 10:44:02 +01:00
<NavTitle />
<NavSide command />
<div flex-auto />
2022-12-26 08:45:56 +01:00
<div v-if="isMastoInitialised" flex flex-col>
2023-01-05 15:03:45 +01:00
<div hidden xl:block>
<UserSignInEntry v-if="!currentUser" />
</div>
2022-12-27 21:07:19 +01:00
<div v-if="currentUser" p6 pb8 w-full>
<div hidden xl-block>
2022-12-27 21:07:19 +01:00
<UserPicker v-if="showUserPicker" />
<div v-else flex="~" items-center justify-between>
<NuxtLink
hidden xl:block
2023-01-05 00:17:30 +01:00
rounded-3 text-primary text-start w-full
2022-12-27 21:07:19 +01:00
hover:bg-active cursor-pointer transition-100
:to="getAccountRoute(currentUser.account)"
>
<AccountInfo :account="currentUser.account" md:break-words square />
2022-12-27 21:07:19 +01:00
</NuxtLink>
<UserDropdown />
</div>
</div>
<UserDropdown xl:hidden />
</div>
</div>
</div>
</slot>
</div>
</aside>
2023-01-05 00:17:30 +01:00
<div w-full min-h-screen :class="wideLayout ? 'xl:w-full sm:w-600px' : 'sm:w-600px md:shrink-0'" border-base>
2022-12-22 17:48:57 +01:00
<div min-h="[calc(100vh-3.5rem)]" sm:min-h-screen>
<slot />
</div>
2022-12-30 19:16:23 +01:00
<div sm:hidden sticky left-0 right-0 bottom-0 z-10 bg-base pb="[env(safe-area-inset-bottom)]" transition="padding 20">
<CommonOfflineChecker :small-screen="isHydrated" />
<NavBottom v-if="isHydrated" />
</div>
2022-11-23 03:53:22 +01:00
</div>
<aside v-if="!wideLayout" class="hidden sm:none lg:block w-1/4 zen-hide">
2023-01-05 00:17:30 +01:00
<div sticky top-0 h-screen flex="~ col" gap-2 py3 ms-2>
2022-11-23 03:53:22 +01:00
<slot name="right">
<div flex-auto />
2022-12-23 19:26:28 +01:00
<PwaPrompt />
2022-11-23 03:53:22 +01:00
<NavFooter />
</slot>
</div>
</aside>
2022-11-14 15:54:30 +01:00
</main>
2022-11-23 04:48:01 +01:00
<ModalContainer />
2022-11-14 15:54:30 +01:00
</div>
2022-11-13 06:34:43 +01:00
</template>