2021-12-03 13:09:40 +00:00
|
|
|
<template>
|
|
|
|
<div class="kmwsukvl">
|
|
|
|
<div>
|
2022-09-10 04:27:44 +00:00
|
|
|
<button v-click-anime class="item _button account" @click="openAccountMenuWrapper">
|
2021-12-03 13:09:40 +00:00
|
|
|
<MkAvatar :user="$i" class="avatar"/><MkAcct class="text" :user="$i"/>
|
|
|
|
</button>
|
|
|
|
<MkA v-click-anime class="item index" active-class="active" to="/" exact>
|
|
|
|
<i class="fas fa-home fa-fw"></i><span class="text">{{ $ts.timeline }}</span>
|
|
|
|
</MkA>
|
2022-09-10 04:27:44 +00:00
|
|
|
<template v-for="item in menu" :key="item">
|
2021-12-03 13:09:40 +00:00
|
|
|
<div v-if="item === '-'" class="divider"></div>
|
|
|
|
<component :is="menuDef[item].to ? 'MkA' : 'button'" v-else-if="menuDef[item] && (menuDef[item].show !== false)" v-click-anime class="item _button" :class="[item, { active: menuDef[item].active }]" active-class="active" :to="menuDef[item].to" v-on="menuDef[item].action ? { click: menuDef[item].action } : {}">
|
|
|
|
<i class="fa-fw" :class="menuDef[item].icon"></i><span class="text">{{ $ts[menuDef[item].title] }}</span>
|
|
|
|
<span v-if="menuDef[item].indicated" class="indicator"><i class="fas fa-circle"></i></span>
|
|
|
|
</component>
|
|
|
|
</template>
|
|
|
|
<div class="divider"></div>
|
2022-09-10 04:27:44 +00:00
|
|
|
<MkA v-if="iAmModerator" v-click-anime class="item" active-class="active" to="/admin">
|
2021-12-03 13:09:40 +00:00
|
|
|
<i class="fas fa-door-open fa-fw"></i><span class="text">{{ $ts.controlPanel }}</span>
|
|
|
|
</MkA>
|
|
|
|
<button v-click-anime class="item _button" @click="more">
|
|
|
|
<i class="fa fa-ellipsis-h fa-fw"></i><span class="text">{{ $ts.more }}</span>
|
|
|
|
<span v-if="otherMenuItemIndicated" class="indicator"><i class="fas fa-circle"></i></span>
|
|
|
|
</button>
|
|
|
|
<MkA v-click-anime class="item" active-class="active" to="/settings">
|
|
|
|
<i class="fas fa-cog fa-fw"></i><span class="text">{{ $ts.settings }}</span>
|
|
|
|
</MkA>
|
|
|
|
<button class="item _button post" data-cy-open-post-form @click="post">
|
|
|
|
<i class="fas fa-pencil-alt fa-fw"></i><span class="text">{{ $ts.note }}</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-09-10 04:27:44 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { defineAsyncComponent, toRef } from 'vue';
|
2021-12-03 13:09:40 +00:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { menuDef } from '@/menu';
|
2022-09-10 04:27:44 +00:00
|
|
|
import { openAccountMenu, $i, iAmModerator } from '@/account';
|
2021-12-03 13:09:40 +00:00
|
|
|
import { defaultStore } from '@/store';
|
|
|
|
|
2022-09-10 04:27:44 +00:00
|
|
|
const menu = toRef(defaultStore.state, 'menu');
|
|
|
|
const otherMenuItemIndicated = $computed(() => {
|
|
|
|
for (const def in menuDef) {
|
|
|
|
if (menu.value.includes(def)) continue;
|
|
|
|
if (menuDef[def].indicated) return true;
|
|
|
|
}
|
|
|
|
return false;
|
2021-12-03 13:09:40 +00:00
|
|
|
});
|
2022-09-10 04:27:44 +00:00
|
|
|
const post = $ref(os.post);
|
|
|
|
|
|
|
|
function openAccountMenuWrapper(ev: MouseEvent): void {
|
|
|
|
openAccountMenu({
|
|
|
|
withExtraOperation: true,
|
|
|
|
}, ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
function more(): void {
|
|
|
|
os.popup(defineAsyncComponent(() => import('@/components/launch-pad.vue')), {}, {}, 'closed');
|
|
|
|
}
|
2021-12-03 13:09:40 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.kmwsukvl {
|
|
|
|
$ui-font-size: 1em; // TODO: どこかに集約したい
|
|
|
|
$avatar-size: 32px;
|
|
|
|
$avatar-margin: 8px;
|
|
|
|
|
|
|
|
> div {
|
|
|
|
|
|
|
|
> .divider {
|
|
|
|
margin: 16px 16px;
|
|
|
|
border-top: solid 0.5px var(--divider);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .item {
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
padding-left: 24px;
|
|
|
|
font-size: $ui-font-size;
|
|
|
|
line-height: 2.85rem;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
|
|
|
box-sizing: border-box;
|
|
|
|
color: var(--navFg);
|
|
|
|
|
|
|
|
> i {
|
|
|
|
position: relative;
|
|
|
|
width: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> i,
|
|
|
|
> .avatar {
|
|
|
|
margin-right: $avatar-margin;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
width: $avatar-size;
|
|
|
|
height: $avatar-size;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .indicator {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 20px;
|
|
|
|
color: var(--navIndicator);
|
|
|
|
font-size: 8px;
|
|
|
|
animation: blink 1s infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .text {
|
|
|
|
position: relative;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
color: var(--navHoverFg);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: var(--navActive);
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover, &.active {
|
|
|
|
&:before {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
width: calc(100% - 24px);
|
|
|
|
height: 100%;
|
|
|
|
margin: auto;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
border-radius: 999px;
|
|
|
|
background: var(--accentedBg);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child, &:last-child {
|
|
|
|
position: sticky;
|
|
|
|
z-index: 1;
|
|
|
|
padding-top: 8px;
|
|
|
|
padding-bottom: 8px;
|
|
|
|
background: var(--X14);
|
|
|
|
-webkit-backdrop-filter: var(--blur, blur(8px));
|
|
|
|
backdrop-filter: var(--blur, blur(8px));
|
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
top: 0;
|
|
|
|
|
|
|
|
&:hover, &.active {
|
|
|
|
&:before {
|
|
|
|
content: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
bottom: 0;
|
|
|
|
color: var(--fgOnAccent);
|
|
|
|
|
|
|
|
&:before {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
width: calc(100% - 20px);
|
|
|
|
height: calc(100% - 20px);
|
|
|
|
margin: auto;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
border-radius: 999px;
|
|
|
|
background: linear-gradient(90deg, var(--buttonGradateA), var(--buttonGradateB));
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover, &.active {
|
|
|
|
&:before {
|
|
|
|
background: var(--accentLighten);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|