2021-07-19 05:36:35 +03:00
|
|
|
<template>
|
|
|
|
<div class="azykntjl">
|
|
|
|
<div class="body">
|
|
|
|
<div class="left">
|
2022-12-28 07:44:53 +02:00
|
|
|
<button v-click-anime class="item _button instance" @click="openInstanceMenu">
|
2023-04-01 07:46:04 +03:00
|
|
|
<img :src="instance.iconUrl ?? instance.faviconUrl ?? '/favicon.ico'" class="_ghost"/>
|
2022-12-28 07:44:53 +02:00
|
|
|
</button>
|
2023-04-01 08:01:57 +03:00
|
|
|
<MkA v-click-anime v-tooltip="i18n.ts.timeline" class="item index" active-class="active" to="/" exact>
|
2022-12-19 12:01:30 +02:00
|
|
|
<i class="ti ti-home ti-fw"></i>
|
2021-07-19 05:36:35 +03:00
|
|
|
</MkA>
|
|
|
|
<template v-for="item in menu">
|
|
|
|
<div v-if="item === '-'" class="divider"></div>
|
2023-01-05 06:59:48 +02:00
|
|
|
<component :is="navbarItemDef[item].to ? 'MkA' : 'button'" v-else-if="navbarItemDef[item] && (navbarItemDef[item].show !== false)" v-click-anime v-tooltip="navbarItemDef[item].title" class="item _button" :class="item" active-class="active" :to="navbarItemDef[item].to" v-on="navbarItemDef[item].action ? { click: navbarItemDef[item].action } : {}">
|
2022-12-19 12:01:30 +02:00
|
|
|
<i class="ti-fw" :class="navbarItemDef[item].icon"></i>
|
|
|
|
<span v-if="navbarItemDef[item].indicated" class="indicator"><i class="_indicatorCircle"></i></span>
|
2021-07-19 05:36:35 +03:00
|
|
|
</component>
|
|
|
|
</template>
|
|
|
|
<div class="divider"></div>
|
2023-04-01 08:01:57 +03:00
|
|
|
<MkA v-if="$i.isAdmin || $i.isModerator" v-click-anime v-tooltip="i18n.ts.controlPanel" class="item" active-class="active" to="/admin" :behavior="settingsWindowed ? 'modalWindow' : null">
|
2022-12-19 12:01:30 +02:00
|
|
|
<i class="ti ti-dashboard ti-fw"></i>
|
2021-07-19 05:36:35 +03:00
|
|
|
</MkA>
|
2021-11-19 12:36:12 +02:00
|
|
|
<button v-click-anime class="item _button" @click="more">
|
2022-12-19 12:01:30 +02:00
|
|
|
<i class="ti ti-dots ti-fw"></i>
|
|
|
|
<span v-if="otherNavItemIndicated" class="indicator"><i class="_indicatorCircle"></i></span>
|
2021-07-19 05:36:35 +03:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="right">
|
2023-04-01 08:01:57 +03:00
|
|
|
<MkA v-click-anime v-tooltip="i18n.ts.settings" class="item" active-class="active" to="/settings" :behavior="settingsWindowed ? 'modalWindow' : null">
|
2022-12-19 12:01:30 +02:00
|
|
|
<i class="ti ti-settings ti-fw"></i>
|
2021-07-19 05:36:35 +03:00
|
|
|
</MkA>
|
2021-11-19 12:36:12 +02:00
|
|
|
<button v-click-anime class="item _button account" @click="openAccountMenu">
|
2023-01-16 07:18:11 +02:00
|
|
|
<MkAvatar :user="$i" class="avatar"/><MkAcct class="acct" :user="$i"/>
|
2021-07-19 05:36:35 +03:00
|
|
|
</button>
|
2023-04-06 02:35:14 +03:00
|
|
|
<div class="post" @click="os.post()">
|
2021-10-16 13:38:51 +03:00
|
|
|
<MkButton class="button" gradate full rounded>
|
2022-12-19 12:01:30 +02:00
|
|
|
<i class="ti ti-pencil ti-fw"></i>
|
2021-07-19 05:36:35 +03:00
|
|
|
</MkButton>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2023-04-06 02:35:14 +03:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { computed, defineAsyncComponent, onMounted } from 'vue';
|
2022-12-28 07:44:53 +02:00
|
|
|
import { openInstanceMenu } from './_common_/common';
|
2021-11-11 19:02:25 +02:00
|
|
|
import * as os from '@/os';
|
2022-07-14 11:42:12 +03:00
|
|
|
import { navbarItemDef } from '@/navbar';
|
2023-04-06 02:35:14 +03:00
|
|
|
import { openAccountMenu as openAccountMenu_, $i } from '@/account';
|
2022-09-06 12:21:49 +03:00
|
|
|
import MkButton from '@/components/MkButton.vue';
|
2023-04-01 07:42:40 +03:00
|
|
|
import { defaultStore } from '@/store';
|
2023-04-01 07:46:04 +03:00
|
|
|
import { instance } from '@/instance';
|
2023-04-01 08:01:57 +03:00
|
|
|
import { i18n } from '@/i18n';
|
2021-07-19 05:36:35 +03:00
|
|
|
|
2023-04-06 02:35:14 +03:00
|
|
|
const WINDOW_THRESHOLD = 1400;
|
|
|
|
|
|
|
|
let settingsWindowed = $ref(window.innerWidth > WINDOW_THRESHOLD);
|
|
|
|
let menu = $ref(defaultStore.state.menu);
|
|
|
|
// const menuDisplay = computed(defaultStore.makeGetterSetter('menuDisplay'));
|
|
|
|
let otherNavItemIndicated = computed<boolean>(() => {
|
|
|
|
for (const def in navbarItemDef) {
|
|
|
|
if (menu.includes(def)) continue;
|
|
|
|
if (navbarItemDef[def].indicated) return true;
|
|
|
|
}
|
|
|
|
return false;
|
2021-07-19 05:36:35 +03:00
|
|
|
});
|
2023-04-06 02:35:14 +03:00
|
|
|
|
|
|
|
function more(ev: MouseEvent) {
|
|
|
|
os.popup(defineAsyncComponent(() => import('@/components/MkLaunchPad.vue')), {
|
|
|
|
src: ev.currentTarget ?? ev.target,
|
|
|
|
anchor: { x: 'center', y: 'bottom' },
|
|
|
|
}, {
|
|
|
|
}, 'closed');
|
|
|
|
}
|
|
|
|
|
|
|
|
function openAccountMenu(ev: MouseEvent) {
|
|
|
|
openAccountMenu_({
|
|
|
|
withExtraOperation: true,
|
|
|
|
}, ev);
|
|
|
|
}
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
window.addEventListener('resize', () => {
|
|
|
|
settingsWindowed = (window.innerWidth >= WINDOW_THRESHOLD);
|
|
|
|
}, { passive: true });
|
|
|
|
});
|
|
|
|
|
2021-07-19 05:36:35 +03:00
|
|
|
</script>
|
|
|
|
|
2022-12-27 11:29:39 +02:00
|
|
|
<style lang="scss" scoped>
|
2021-07-19 05:36:35 +03:00
|
|
|
.azykntjl {
|
|
|
|
$height: 60px;
|
|
|
|
$avatar-size: 32px;
|
|
|
|
$avatar-margin: 8px;
|
|
|
|
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
z-index: 1000;
|
|
|
|
width: 100%;
|
|
|
|
height: $height;
|
|
|
|
background-color: var(--bg);
|
|
|
|
|
|
|
|
> .body {
|
|
|
|
max-width: 1380px;
|
|
|
|
margin: 0 auto;
|
|
|
|
display: flex;
|
|
|
|
|
|
|
|
> .right,
|
|
|
|
> .left {
|
|
|
|
|
|
|
|
> .item {
|
|
|
|
position: relative;
|
|
|
|
font-size: 0.9em;
|
|
|
|
display: inline-block;
|
|
|
|
padding: 0 12px;
|
|
|
|
line-height: $height;
|
|
|
|
|
|
|
|
> i,
|
|
|
|
> .avatar {
|
|
|
|
margin-right: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
> i {
|
|
|
|
left: 10px;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
width: $avatar-size;
|
|
|
|
height: $avatar-size;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .indicator {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
color: var(--navIndicator);
|
|
|
|
font-size: 8px;
|
|
|
|
animation: blink 1s infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
color: var(--navHoverFg);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: var(--navActive);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .divider {
|
|
|
|
display: inline-block;
|
|
|
|
height: 16px;
|
|
|
|
margin: 0 10px;
|
|
|
|
border-right: solid 0.5px var(--divider);
|
|
|
|
}
|
|
|
|
|
2022-12-28 07:44:53 +02:00
|
|
|
> .instance {
|
|
|
|
display: inline-block;
|
|
|
|
position: relative;
|
|
|
|
width: 56px;
|
|
|
|
height: 100%;
|
|
|
|
vertical-align: bottom;
|
|
|
|
|
|
|
|
> img {
|
|
|
|
display: inline-block;
|
|
|
|
width: 24px;
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-19 05:36:35 +03:00
|
|
|
> .post {
|
|
|
|
display: inline-block;
|
|
|
|
|
|
|
|
> .button {
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
padding: 0;
|
|
|
|
min-width: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .account {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
vertical-align: top;
|
|
|
|
margin-right: 8px;
|
|
|
|
|
|
|
|
> .acct {
|
|
|
|
margin-left: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .right {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|