elk/layouts/default.vue

72 wiersze
2.8 KiB
Vue
Czysty Zwykły widok Historia

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-21 21:39:25 +00:00
<div v-if="isMastoInitialised && showUserSwitcherSidebar" fixed h-full hidden lg:block bg-code border-r-1 border-base>
<UserPicker />
</div>
2022-12-21 21:39:25 +00:00
<main flex w-full mxa lg:max-w-80rem :class="isMastoInitialised && showUserSwitcherSidebar ? 'user-switcher-sidebar' : ''">
<aside class="hidden sm:flex w-1/8 md:w-1/6 justify-end lg:w-1/4 zen-hide" relative>
2022-12-21 21:39:25 +00:00
<div sticky top-0 w-20 lg:w-100 h-screen flex="~ col">
<slot name="left">
2022-11-25 23:46:25 +00:00
<NavTitle mx3 mt4 mb2 self-start />
<div flex="~ col" overflow-y-auto justify-between h-full>
<div flex flex-col>
<NavSide />
<PublishButton m5 />
</div>
<div flex flex-col>
2022-12-21 20:54:38 +00:00
<UserSignInEntry v-if="isMastoInitialised && !currentUser" sm:hidden />
<div v-if="isMastoInitialised && currentUser" p6 pb8 w-full flex="~" items-center justify-between>
<NuxtLink
2022-12-21 20:54:38 +00:00
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>
<VDropdown :distance="0" placement="bottom-end">
<button btn-action-icon :aria-label="$t('action.switch_account')">
2022-12-21 20:54:38 +00:00
<div hidden lg:block i-ri:more-2-line />
<AccountAvatar lg:hidden :account="currentUser.account" w-9 h-9 />
</button>
<template #popper="{ hide }">
<UserSwitcher @click="hide" />
</template>
</VDropdown>
</div>
</div>
</div>
</slot>
</div>
</aside>
<div class="w-full sm:w-600px min-h-screen" border="none sm:l sm:r base">
<div min-h-screen>
<slot />
</div>
<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.value" />
<NavBottom v-if="isHydrated.value" />
</div>
2022-11-23 02:53:22 +00:00
</div>
<aside 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 />
<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>
2022-12-21 21:39:25 +00:00
<style scoped>
@media (max-width: 1500px) and (min-width: 1024px) {
.user-switcher-sidebar {
padding-left: min(5rem, calc((1500px - 100vw) / 2));
}
}
</style>