2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2021-04-10 03:40:50 +00:00
|
|
|
<template>
|
|
|
|
<div class="npcljfve" :class="{ iconOnly }">
|
2021-11-19 10:36:12 +00:00
|
|
|
<button v-click-anime class="item _button account" @click="openAccountMenu">
|
2023-01-16 05:18:11 +00:00
|
|
|
<MkAvatar :user="$i" class="avatar"/><MkAcct class="text" :user="$i"/>
|
2021-04-10 03:40:50 +00:00
|
|
|
</button>
|
2023-04-05 23:35:14 +00:00
|
|
|
<div class="post" data-cy-open-post-form @click="os.post">
|
2021-10-13 17:00:34 +00:00
|
|
|
<MkButton class="button" gradate full rounded>
|
2023-04-01 05:01:57 +00:00
|
|
|
<i class="ti ti-pencil ti-fw"></i><span v-if="!iconOnly" class="text">{{ i18n.ts.note }}</span>
|
2021-04-10 03:40:50 +00:00
|
|
|
</MkButton>
|
|
|
|
</div>
|
|
|
|
<div class="divider"></div>
|
2023-05-19 11:52:15 +00:00
|
|
|
<MkA v-click-anime class="item index" activeClass="active" to="/" exact>
|
2023-04-01 05:01:57 +00:00
|
|
|
<i class="ti ti-home ti-fw"></i><span class="text">{{ i18n.ts.timeline }}</span>
|
2021-04-10 03:40:50 +00:00
|
|
|
</MkA>
|
|
|
|
<template v-for="item in menu">
|
|
|
|
<div v-if="item === '-'" class="divider"></div>
|
2023-05-19 11:52:15 +00:00
|
|
|
<component :is="navbarItemDef[item].to ? 'MkA' : 'button'" v-else-if="navbarItemDef[item] && (navbarItemDef[item].show !== false)" v-click-anime class="item _button" :class="item" activeClass="active" :to="navbarItemDef[item].to" v-on="navbarItemDef[item].action ? { click: navbarItemDef[item].action } : {}">
|
2023-01-05 04:59:48 +00:00
|
|
|
<i class="ti-fw" :class="navbarItemDef[item].icon"></i><span class="text">{{ navbarItemDef[item].title }}</span>
|
2022-12-19 10:01:30 +00:00
|
|
|
<span v-if="navbarItemDef[item].indicated" class="indicator"><i class="_indicatorCircle"></i></span>
|
2021-04-10 03:40:50 +00:00
|
|
|
</component>
|
|
|
|
</template>
|
|
|
|
<div class="divider"></div>
|
2023-05-27 02:38:08 +00:00
|
|
|
<MkA v-if="$i.isAdmin || $i.isModerator" v-click-anime class="item" activeClass="active" to="/admin" :behavior="settingsWindowed ? 'window' : null">
|
2023-04-01 05:01:57 +00:00
|
|
|
<i class="ti ti-dashboard ti-fw"></i><span class="text">{{ i18n.ts.controlPanel }}</span>
|
2021-04-22 13:29:33 +00:00
|
|
|
</MkA>
|
2021-11-19 10:36:12 +00:00
|
|
|
<button v-click-anime class="item _button" @click="more">
|
2023-04-01 05:01:57 +00:00
|
|
|
<i class="ti ti-dots ti-fw"></i><span class="text">{{ i18n.ts.more }}</span>
|
2022-12-19 10:01:30 +00:00
|
|
|
<span v-if="otherNavItemIndicated" class="indicator"><i class="_indicatorCircle"></i></span>
|
2021-04-10 03:40:50 +00:00
|
|
|
</button>
|
2023-05-27 02:38:08 +00:00
|
|
|
<MkA v-click-anime class="item" activeClass="active" to="/settings" :behavior="settingsWindowed ? 'window' : null">
|
2023-04-01 05:01:57 +00:00
|
|
|
<i class="ti ti-settings ti-fw"></i><span class="text">{{ i18n.ts.settings }}</span>
|
2021-04-10 03:40:50 +00:00
|
|
|
</MkA>
|
2021-04-12 14:13:58 +00:00
|
|
|
<div class="divider"></div>
|
2021-04-25 03:31:11 +00:00
|
|
|
<div class="about">
|
2022-12-28 05:44:53 +00:00
|
|
|
<button v-click-anime class="item _button" @click="openInstanceMenu">
|
2023-04-01 04:46:04 +00:00
|
|
|
<img :src="instance.iconUrl ?? instance.faviconUrl ?? '/favicon.ico'" class="_ghost"/>
|
2022-12-28 05:44:53 +00:00
|
|
|
</button>
|
2021-04-12 14:13:58 +00:00
|
|
|
</div>
|
|
|
|
<!--<MisskeyLogo class="misskey"/>-->
|
2021-04-10 03:40:50 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2023-04-05 23:35:14 +00:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { defineAsyncComponent, onMounted, computed, watch, nextTick } from 'vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { openInstanceMenu } from './_common_/common.js';
|
|
|
|
// import { host } from '@/config.js';
|
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { navbarItemDef } from '@/navbar.js';
|
|
|
|
import { openAccountMenu as openAccountMenu_, $i } from '@/account.js';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
// import { StickySidebar } from '@/scripts/sticky-sidebar.js';
|
|
|
|
// import { mainRouter } from '@/router.js';
|
2021-11-11 17:02:25 +00:00
|
|
|
//import MisskeyLogo from '@assets/client/misskey.svg';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { defaultStore } from '@/store.js';
|
|
|
|
import { instance } from '@/instance.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
2021-04-10 03:40:50 +00:00
|
|
|
|
2023-04-05 23:35:14 +00:00
|
|
|
const WINDOW_THRESHOLD = 1400;
|
|
|
|
|
|
|
|
const menu = $ref(defaultStore.state.menu);
|
|
|
|
const menuDisplay = computed(defaultStore.makeGetterSetter('menuDisplay'));
|
|
|
|
const otherNavItemIndicated = computed<boolean>(() => {
|
|
|
|
for (const def in navbarItemDef) {
|
|
|
|
if (menu.includes(def)) continue;
|
|
|
|
if (navbarItemDef[def].indicated) return true;
|
|
|
|
}
|
|
|
|
return false;
|
2021-04-10 03:40:50 +00:00
|
|
|
});
|
2023-04-05 23:35:14 +00:00
|
|
|
let el = $shallowRef<HTMLElement>();
|
|
|
|
// let accounts = $ref([]);
|
|
|
|
// let connection = $ref(null);
|
|
|
|
let iconOnly = $ref(false);
|
|
|
|
let settingsWindowed = $ref(false);
|
|
|
|
|
|
|
|
function calcViewState() {
|
|
|
|
iconOnly = (window.innerWidth <= WINDOW_THRESHOLD) || (menuDisplay.value === 'sideIcon');
|
|
|
|
settingsWindowed = (window.innerWidth > WINDOW_THRESHOLD);
|
|
|
|
}
|
|
|
|
|
|
|
|
function more(ev: MouseEvent) {
|
|
|
|
os.popup(defineAsyncComponent(() => import('@/components/MkLaunchPad.vue')), {
|
|
|
|
src: ev.currentTarget ?? ev.target,
|
|
|
|
}, {}, 'closed');
|
|
|
|
}
|
|
|
|
|
|
|
|
function openAccountMenu(ev: MouseEvent) {
|
|
|
|
openAccountMenu_({
|
|
|
|
withExtraOperation: true,
|
|
|
|
}, ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
watch(defaultStore.reactiveState.menuDisplay, () => {
|
|
|
|
calcViewState();
|
|
|
|
});
|
|
|
|
|
2021-04-10 03:40:50 +00:00
|
|
|
</script>
|
|
|
|
|
2022-12-27 09:29:39 +00:00
|
|
|
<style lang="scss" scoped>
|
2021-04-10 03:40:50 +00:00
|
|
|
.npcljfve {
|
|
|
|
$ui-font-size: 1em; // TODO: どこかに集約したい
|
|
|
|
$nav-icon-only-width: 78px; // TODO: どこかに集約したい
|
|
|
|
$avatar-size: 32px;
|
|
|
|
$avatar-margin: 8px;
|
|
|
|
|
|
|
|
padding: 0 16px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
width: 260px;
|
|
|
|
|
|
|
|
&.iconOnly {
|
|
|
|
flex: 0 0 $nav-icon-only-width;
|
|
|
|
width: $nav-icon-only-width !important;
|
|
|
|
|
|
|
|
> .divider {
|
|
|
|
margin: 8px auto;
|
|
|
|
width: calc(100% - 32px);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .post {
|
|
|
|
> .button {
|
|
|
|
width: 46px;
|
|
|
|
height: 46px;
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .item {
|
|
|
|
padding-left: 0;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
font-size: $ui-font-size * 1.1;
|
|
|
|
line-height: 3.7rem;
|
|
|
|
|
2021-04-20 14:22:59 +00:00
|
|
|
> i,
|
2021-04-10 03:40:50 +00:00
|
|
|
> .avatar {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
> i {
|
|
|
|
left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .text {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .divider {
|
|
|
|
margin: 10px 0;
|
|
|
|
border-top: solid 0.5px var(--divider);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .post {
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
z-index: 1;
|
|
|
|
padding: 16px 0;
|
|
|
|
background: var(--bg);
|
|
|
|
|
|
|
|
> .button {
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-25 03:31:11 +00:00
|
|
|
> .about {
|
2021-04-12 14:13:58 +00:00
|
|
|
fill: currentColor;
|
|
|
|
padding: 8px 0 16px 0;
|
2021-04-25 03:31:11 +00:00
|
|
|
text-align: center;
|
|
|
|
|
2022-12-28 05:44:53 +00:00
|
|
|
> .item {
|
2021-04-25 03:31:11 +00:00
|
|
|
display: block;
|
|
|
|
width: 32px;
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2021-04-12 14:13:58 +00:00
|
|
|
}
|
|
|
|
|
2021-04-10 03:40:50 +00:00
|
|
|
> .item {
|
|
|
|
position: relative;
|
|
|
|
display: block;
|
|
|
|
font-size: $ui-font-size;
|
|
|
|
line-height: 2.6rem;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
overflow: hidden;
|
|
|
|
white-space: nowrap;
|
|
|
|
width: 100%;
|
|
|
|
text-align: left;
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
2021-04-20 14:22:59 +00:00
|
|
|
> i {
|
2021-04-10 03:40:50 +00:00
|
|
|
width: 32px;
|
|
|
|
}
|
|
|
|
|
2021-04-20 14:22:59 +00:00
|
|
|
> i,
|
2021-04-10 03:40:50 +00:00
|
|
|
> .avatar {
|
|
|
|
margin-right: $avatar-margin;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
width: $avatar-size;
|
|
|
|
height: $avatar-size;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2021-04-20 14:22:59 +00:00
|
|
|
> .indicator {
|
2021-04-10 03:40:50 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2021-05-31 01:35:12 +00:00
|
|
|
left: 0;
|
2021-04-10 03:40:50 +00:00
|
|
|
color: var(--navIndicator);
|
|
|
|
font-size: 8px;
|
|
|
|
animation: blink 1s infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
color: var(--navHoverFg);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: var(--navActive);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|