elk/layouts/default.vue

66 wiersze
2.5 KiB
Vue
Czysty Zwykły widok Historia

<script lang="ts" setup>
const route = useRoute()
const wideLayout = computed(() => route.meta.wideLayout ?? false)
</script>
2022-11-13 05:34:43 +00:00
<template>
2022-11-24 06:04:17 +00:00
<div h-full :class="{ zen: isZenMode }">
2022-12-27 20:07:19 +00:00
<main flex w-full mxa lg:max-w-80rem>
<aside class="hidden sm:flex w-1/8 md:w-1/6 justify-end lg:w-1/4 zen-hide" relative>
<div sticky top-0 w-20 lg:w-100 h-screen flex="~ col" lt-lg-items-center>
<slot name="left">
<NavTitle mt4 mb2 lg:mx-3 />
<div flex="~ col" overflow-y-auto justify-between h-full max-w-full>
<div flex flex-col>
2022-12-29 19:31:29 +00:00
<NavSide command />
2022-12-28 14:05:33 +00:00
<PublishButton m="y5 xa" lg:m="r5 l3" lg:rtl-m="l5 r3" />
</div>
2022-12-26 07:45:56 +00:00
<div v-if="isMastoInitialised" flex flex-col>
<UserSignInEntry v-if="!currentUser" sm:hidden />
2022-12-27 20:07:19 +00:00
<div v-if="currentUser" p6 pb8 w-full>
<div hidden lg-block>
<UserPicker v-if="showUserPicker" />
<div v-else flex="~" items-center justify-between>
<NuxtLink
hidden lg:block
rounded-full text-start w-full
hover:bg-active cursor-pointer transition-100
:to="getAccountRoute(currentUser.account)"
>
<AccountInfo :account="currentUser.account" md:break-words />
</NuxtLink>
<UserDropdown />
</div>
</div>
<UserDropdown lg:hidden />
</div>
</div>
</div>
</slot>
</div>
</aside>
2022-12-30 18:16:23 +00:00
<div class="w-full min-h-screen" :class="wideLayout ? 'lg:w-full sm:w-600px' : 'sm:w-600px'" sm:border-l sm:border-r border-base>
2022-12-22 16:48:57 +00:00
<div min-h="[calc(100vh-3.5rem)]" sm:min-h-screen>
<slot />
</div>
2022-12-30 18:16:23 +00: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 02:53:22 +00:00
</div>
<aside v-if="!wideLayout" class="hidden sm:none lg:block w-1/4 zen-hide">
<div sticky top-0 h-screen flex="~ col" py3>
2022-11-23 02:53:22 +00:00
<slot name="right">
2022-12-22 10:34:35 +00:00
<SearchWidget />
2022-11-23 02:53:22 +00:00
<div flex-auto />
2022-12-23 18:26:28 +00:00
<PwaPrompt />
2022-11-23 02:53:22 +00:00
<NavFooter />
</slot>
</div>
</aside>
2022-11-14 14:54:30 +00:00
</main>
2022-11-23 03:48:01 +00:00
<ModalContainer />
2022-11-14 14:54:30 +00:00
</div>
2022-11-13 05:34:43 +00:00
</template>