2022-11-26 12:58:10 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
defineProps<{
|
|
|
|
back?: boolean
|
|
|
|
}>()
|
|
|
|
</script>
|
|
|
|
|
2022-11-15 13:50:41 +00:00
|
|
|
<template>
|
2022-11-20 21:30:21 +00:00
|
|
|
<div relative>
|
2022-11-23 08:08:49 +00:00
|
|
|
<div
|
|
|
|
sticky top-0 z10
|
|
|
|
border="b base"
|
|
|
|
backdrop="blur-10px brightness-120 dark:brightness-80"
|
2022-11-26 07:21:15 +00:00
|
|
|
:class="isZenMode ? 'op0 hover:op100 transition duration-300' : ''"
|
2022-11-23 08:08:49 +00:00
|
|
|
>
|
|
|
|
<div flex justify-between px5 py4>
|
2022-11-26 12:58:10 +00: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 />
|
2022-11-20 21:30:21 +00:00
|
|
|
</div>
|
2022-11-25 08:13:35 +00:00
|
|
|
<div flex items-center>
|
2022-11-20 21:30:21 +00:00
|
|
|
<slot name="actions" />
|
2022-11-25 08:13:35 +00:00
|
|
|
<template v-if="currentUser">
|
|
|
|
<NuxtLink md:hidden :to="`/@${currentUser.account?.username}`">
|
|
|
|
<AccountAvatar :account="currentUser.account" h="1.5em" />
|
|
|
|
</NuxtLink>
|
|
|
|
</template>
|
2022-11-26 03:53:23 +00:00
|
|
|
<template v-else>
|
2022-11-26 06:27:05 +00:00
|
|
|
<button md-hidden btn-solid text-sm px-2 py-1 text-center @click="openSigninDialog()">
|
2022-11-26 03:53:23 +00:00
|
|
|
Sign in
|
|
|
|
</button>
|
|
|
|
</template>
|
2022-11-20 21:30:21 +00:00
|
|
|
</div>
|
2022-11-15 13:50:41 +00:00
|
|
|
</div>
|
2022-11-23 08:08:49 +00:00
|
|
|
<slot name="header" />
|
2022-11-15 13:50:41 +00:00
|
|
|
</div>
|
2022-11-20 21:30:21 +00:00
|
|
|
<div>
|
|
|
|
<slot />
|
|
|
|
</div>
|
2022-11-15 13:50:41 +00:00
|
|
|
</div>
|
|
|
|
</template>
|