elk/components/main/MainContent.vue

45 lines
1.2 KiB
Vue
Raw Normal View History

2022-11-26 13:58:10 +01:00
<script setup lang="ts">
defineProps<{
back?: boolean
}>()
</script>
<template>
<div relative>
2022-11-23 09:08:49 +01:00
<div
sticky top-0 z10
border="b base"
2022-11-27 00:13:52 +01:00
class="bg-base dark:bg-transparent"
backdrop="dark:blur-10px dark:brightness-30"
2022-11-26 08:21:15 +01:00
:class="isZenMode ? 'op0 hover:op100 transition duration-300' : ''"
2022-11-23 09:08:49 +01:00
>
<div flex justify-between px5 py4>
2022-11-26 13:58:10 +01:00
<div flex gap-3>
<NuxtLink v-if="back" flex="~ gap1" items-center btn-text p-0 @click="$router.go(-1)">
<div i-ri-arrow-left-line />
</NuxtLink>
<slot name="title" />
<div h-7 w-1px />
</div>
<div flex items-center>
<slot name="actions" />
<template v-if="currentUser">
<NuxtLink md:hidden :to="`/@${currentUser.account?.username}`">
<AccountAvatar :account="currentUser.account" h="1.5em" />
</NuxtLink>
</template>
2022-11-26 04:53:23 +01:00
<template v-else>
<button md-hidden btn-solid text-sm px-2 py-1 text-center @click="openSigninDialog()">
2022-11-26 04:53:23 +01:00
Sign in
</button>
</template>
</div>
</div>
2022-11-23 09:08:49 +01:00
<slot name="header" />
</div>
<div>
<slot />
</div>
</div>
</template>