2020-07-11 04:13:11 +03:00
|
|
|
<template>
|
2021-12-03 15:09:40 +02:00
|
|
|
<div class="mvcprjjd" :class="{ iconOnly }">
|
|
|
|
<div>
|
|
|
|
<button v-click-anime class="item _button account" @click="openAccountMenu">
|
|
|
|
<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>
|
|
|
|
<template v-for="item in menu">
|
|
|
|
<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>
|
|
|
|
<MkA v-if="$i.isAdmin || $i.isModerator" v-click-anime class="item" active-class="active" to="/admin">
|
|
|
|
<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>
|
2022-02-23 16:40:31 +02:00
|
|
|
<button class="item _button post" data-cy-open-post-form @click="os.post">
|
2021-12-03 15:09:40 +02:00
|
|
|
<i class="fas fa-pencil-alt fa-fw"></i><span class="text">{{ $ts.note }}</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
2020-07-11 04:13:11 +03:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-02-23 16:40:31 +02:00
|
|
|
<script lang="ts" setup>
|
2022-05-01 16:51:07 +03:00
|
|
|
import { computed, defineAsyncComponent, ref, watch } from 'vue';
|
2021-11-11 19:02:25 +02:00
|
|
|
import * as os from '@/os';
|
|
|
|
import { menuDef } from '@/menu';
|
2022-02-23 16:40:31 +02:00
|
|
|
import { $i, openAccountMenu as openAccountMenu_ } from '@/account';
|
2021-12-03 15:09:40 +02:00
|
|
|
import { defaultStore } from '@/store';
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2022-02-23 16:40:31 +02:00
|
|
|
const iconOnly = ref(false);
|
2021-12-03 15:09:40 +02:00
|
|
|
|
2022-02-23 16:40:31 +02:00
|
|
|
const menu = computed(() => 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 15:09:40 +02:00
|
|
|
|
2022-02-23 16:40:31 +02:00
|
|
|
const calcViewState = () => {
|
|
|
|
iconOnly.value = (window.innerWidth <= 1279) || (defaultStore.state.menuDisplay === 'sideIcon');
|
|
|
|
};
|
2021-12-03 15:09:40 +02:00
|
|
|
|
2022-02-23 16:40:31 +02:00
|
|
|
calcViewState();
|
2021-12-03 15:09:40 +02:00
|
|
|
|
2022-02-23 16:40:31 +02:00
|
|
|
window.addEventListener('resize', calcViewState);
|
2021-02-14 15:26:07 +02:00
|
|
|
|
2022-02-23 16:40:31 +02:00
|
|
|
watch(defaultStore.reactiveState.menuDisplay, () => {
|
|
|
|
calcViewState();
|
2021-12-03 15:09:40 +02:00
|
|
|
});
|
2022-02-23 16:40:31 +02:00
|
|
|
|
|
|
|
function openAccountMenu(ev: MouseEvent) {
|
|
|
|
openAccountMenu_({
|
|
|
|
withExtraOperation: true,
|
|
|
|
}, ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
function more(ev: MouseEvent) {
|
2022-05-01 16:51:07 +03:00
|
|
|
os.popup(defineAsyncComponent(() => import('@/components/launch-pad.vue')), {
|
2022-02-23 16:40:31 +02:00
|
|
|
src: ev.currentTarget ?? ev.target,
|
|
|
|
}, {
|
|
|
|
}, 'closed');
|
|
|
|
}
|
2021-12-03 15:09:40 +02:00
|
|
|
</script>
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.mvcprjjd {
|
|
|
|
$ui-font-size: 1em; // TODO: どこかに集約したい
|
|
|
|
$nav-width: 250px;
|
|
|
|
$nav-icon-only-width: 86px;
|
|
|
|
$avatar-size: 32px;
|
|
|
|
$avatar-margin: 8px;
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
flex: 0 0 $nav-width;
|
|
|
|
width: $nav-width;
|
|
|
|
box-sizing: border-box;
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
> div {
|
|
|
|
position: fixed;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 1001;
|
|
|
|
width: $nav-width;
|
|
|
|
// ほんとは単に 100vh と書きたいところだが... https://css-tricks.com/the-trick-to-viewport-units-on-mobile/
|
|
|
|
height: calc(var(--vh, 1vh) * 100);
|
|
|
|
box-sizing: border-box;
|
|
|
|
overflow: auto;
|
|
|
|
overflow-x: clip;
|
|
|
|
background: var(--navBg);
|
|
|
|
|
|
|
|
> .divider {
|
|
|
|
margin: 16px 16px;
|
|
|
|
border-top: solid 0.5px var(--divider);
|
2020-08-01 04:53:23 +03:00
|
|
|
}
|
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
> .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);
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
> i {
|
|
|
|
position: relative;
|
|
|
|
width: 32px;
|
2021-02-14 15:26:07 +02:00
|
|
|
}
|
2020-08-01 04:53:23 +03:00
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
> i,
|
|
|
|
> .avatar {
|
|
|
|
margin-right: $avatar-margin;
|
|
|
|
}
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
> .avatar {
|
|
|
|
width: $avatar-size;
|
|
|
|
height: $avatar-size;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
> .indicator {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 20px;
|
|
|
|
color: var(--navIndicator);
|
|
|
|
font-size: 8px;
|
|
|
|
animation: blink 1s infinite;
|
|
|
|
}
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
> .text {
|
|
|
|
position: relative;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
color: var(--navHoverFg);
|
|
|
|
}
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
&.active {
|
|
|
|
color: var(--navActive);
|
|
|
|
}
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
&:hover, &.active {
|
2021-12-25 09:03:57 +02:00
|
|
|
color: var(--accent);
|
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
&: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);
|
|
|
|
}
|
|
|
|
}
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
&: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));
|
|
|
|
}
|
2020-08-01 04:53:23 +03:00
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
&:first-child {
|
|
|
|
top: 0;
|
2020-08-01 04:53:23 +03:00
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
&:hover, &.active {
|
|
|
|
&:before {
|
|
|
|
content: none;
|
2020-08-01 04:53:23 +03:00
|
|
|
}
|
2021-12-03 15:09:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
bottom: 0;
|
|
|
|
color: var(--fgOnAccent);
|
2020-08-01 04:53:23 +03:00
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
&: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);
|
2020-08-01 04:53:23 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-07-11 04:13:11 +03:00
|
|
|
}
|
2021-12-03 15:09:40 +02:00
|
|
|
}
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
&.iconOnly {
|
|
|
|
flex: 0 0 $nav-icon-only-width;
|
|
|
|
width: $nav-icon-only-width;
|
2020-07-11 04:13:11 +03:00
|
|
|
|
|
|
|
> div {
|
2021-12-03 15:09:40 +02:00
|
|
|
width: $nav-icon-only-width;
|
2020-07-11 04:13:11 +03:00
|
|
|
|
|
|
|
> .divider {
|
2021-12-03 15:09:40 +02:00
|
|
|
margin: 8px auto;
|
|
|
|
width: calc(100% - 32px);
|
2020-07-11 04:13:11 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
> .item {
|
2021-12-03 15:09:40 +02:00
|
|
|
padding-left: 0;
|
|
|
|
padding: 18px 0;
|
2020-07-11 04:13:11 +03:00
|
|
|
width: 100%;
|
2021-12-03 15:09:40 +02:00
|
|
|
text-align: center;
|
|
|
|
font-size: $ui-font-size * 1.1;
|
|
|
|
line-height: initial;
|
2020-07-11 04:13:11 +03:00
|
|
|
|
2021-04-20 17:22:59 +03:00
|
|
|
> i,
|
2020-07-11 04:13:11 +03:00
|
|
|
> .avatar {
|
2021-12-03 15:09:40 +02:00
|
|
|
display: block;
|
|
|
|
margin: 0 auto;
|
2020-07-11 04:13:11 +03:00
|
|
|
}
|
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
> i {
|
|
|
|
opacity: 0.7;
|
2020-07-11 04:13:11 +03:00
|
|
|
}
|
|
|
|
|
2021-09-20 20:01:25 +03:00
|
|
|
> .text {
|
2021-12-03 15:09:40 +02:00
|
|
|
display: none;
|
2020-07-11 04:13:11 +03:00
|
|
|
}
|
|
|
|
|
2021-09-20 20:01:25 +03:00
|
|
|
&:hover, &.active {
|
2021-12-03 15:09:40 +02:00
|
|
|
> i, > .text {
|
|
|
|
opacity: 1;
|
2021-09-20 20:01:25 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
&:first-child {
|
|
|
|
margin-bottom: 8px;
|
2020-07-11 04:13:11 +03:00
|
|
|
}
|
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
&:last-child {
|
|
|
|
margin-top: 8px;
|
|
|
|
}
|
2021-09-20 20:01:25 +03:00
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
&:before {
|
2021-12-28 21:38:25 +02:00
|
|
|
width: min-content;
|
2021-12-25 09:03:57 +02:00
|
|
|
height: 100%;
|
|
|
|
aspect-ratio: 1/1;
|
|
|
|
border-radius: 8px;
|
2020-07-11 04:13:11 +03:00
|
|
|
}
|
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
&.post {
|
|
|
|
height: $nav-icon-only-width;
|
2021-12-04 11:27:31 +02:00
|
|
|
|
|
|
|
> i {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
2021-12-03 15:09:40 +02:00
|
|
|
}
|
2021-09-20 20:01:25 +03:00
|
|
|
|
2021-12-03 15:09:40 +02:00
|
|
|
&.post:before {
|
2021-12-25 09:03:57 +02:00
|
|
|
width: calc(100% - 28px);
|
2022-02-12 10:28:33 +02:00
|
|
|
height: auto;
|
2021-12-25 09:03:57 +02:00
|
|
|
aspect-ratio: 1/1;
|
2021-12-03 15:09:40 +02:00
|
|
|
border-radius: 100%;
|
2020-07-11 04:13:11 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|