2021-07-19 04:36:35 +02:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<div class="azykntjl">
|
|
|
|
<div class="body">
|
|
|
|
<div class="left">
|
|
|
|
<MkA
|
|
|
|
v-click-anime
|
|
|
|
v-tooltip="i18n.ts.timeline"
|
|
|
|
class="item index"
|
|
|
|
active-class="active"
|
|
|
|
to="/"
|
|
|
|
exact
|
|
|
|
>
|
|
|
|
<i class="ph-house ph-bold ph-lg ph-fw ph-lg"></i>
|
|
|
|
</MkA>
|
|
|
|
<template v-for="item in menu">
|
|
|
|
<div v-if="item === '-'" class="divider"></div>
|
|
|
|
<component
|
|
|
|
:is="navbarItemDef[item].to ? 'MkA' : 'button'"
|
|
|
|
v-else-if="
|
|
|
|
navbarItemDef[item] &&
|
|
|
|
navbarItemDef[item].show !== false
|
|
|
|
"
|
|
|
|
v-click-anime
|
|
|
|
v-tooltip="$ts[navbarItemDef[item].title]"
|
|
|
|
class="item _button"
|
|
|
|
:class="item"
|
|
|
|
active-class="active"
|
|
|
|
:to="navbarItemDef[item].to"
|
|
|
|
v-on="
|
|
|
|
navbarItemDef[item].action
|
|
|
|
? { click: navbarItemDef[item].action }
|
|
|
|
: {}
|
|
|
|
"
|
|
|
|
>
|
|
|
|
<i
|
|
|
|
class="ph-fw ph-lg"
|
|
|
|
:class="navbarItemDef[item].icon"
|
|
|
|
></i>
|
|
|
|
<span
|
|
|
|
v-if="navbarItemDef[item].indicated"
|
|
|
|
class="indicator"
|
|
|
|
><i class="ph-circle ph-fill"></i
|
|
|
|
></span>
|
|
|
|
</component>
|
|
|
|
</template>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<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"
|
|
|
|
>
|
|
|
|
<i class="ph-door ph-bold ph-lg ph-fw ph-lg"></i>
|
|
|
|
</MkA>
|
|
|
|
<button v-click-anime class="item _button" @click="more">
|
|
|
|
<i
|
|
|
|
class="ph-dots-three-outline ph-bold ph-lg ph-fw ph-lg"
|
|
|
|
></i>
|
|
|
|
<span v-if="otherNavItemIndicated" class="indicator"
|
|
|
|
><i class="ph-circle ph-fill"></i
|
|
|
|
></span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div class="right">
|
|
|
|
<MkA
|
|
|
|
v-click-anime
|
|
|
|
v-tooltip="i18n.ts.settings"
|
|
|
|
class="item"
|
|
|
|
active-class="active"
|
|
|
|
to="/settings"
|
|
|
|
:behavior="settingsWindowed ? 'modalWindow' : null"
|
|
|
|
>
|
|
|
|
<i class="ph-gear-six ph-bold ph-lg ph-fw ph-lg"></i>
|
|
|
|
</MkA>
|
|
|
|
<button
|
|
|
|
v-click-anime
|
|
|
|
class="item _button account"
|
|
|
|
@click="openAccountMenu"
|
|
|
|
>
|
|
|
|
<MkAvatar :user="$i" class="avatar" /><MkAcct
|
|
|
|
class="acct"
|
|
|
|
:user="$i"
|
|
|
|
/>
|
|
|
|
</button>
|
|
|
|
<div class="post" @click="post">
|
|
|
|
<MkButton class="button" gradate full rounded>
|
|
|
|
<i class="ph-pencil ph-bold ph-lg ph-fw ph-lg"></i>
|
|
|
|
</MkButton>
|
|
|
|
</div>
|
2021-07-19 04:36:35 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2023-04-08 02:01:42 +02:00
|
|
|
import { defineAsyncComponent, defineComponent } from "vue";
|
|
|
|
import { host } from "@/config";
|
|
|
|
import { search } from "@/scripts/search";
|
|
|
|
import * as os from "@/os";
|
|
|
|
import { navbarItemDef } from "@/navbar";
|
|
|
|
import { openAccountMenu } from "@/account";
|
|
|
|
import MkButton from "@/components/MkButton.vue";
|
|
|
|
import { i18n } from "@/i18n";
|
2021-07-19 04:36:35 +02:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
|
|
|
MkButton,
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
host: host,
|
|
|
|
accounts: [],
|
|
|
|
connection: null,
|
2022-07-14 10:42:12 +02:00
|
|
|
navbarItemDef: navbarItemDef,
|
2021-07-19 04:36:35 +02:00
|
|
|
settingsWindowed: false,
|
2022-11-11 09:41:34 +01:00
|
|
|
i18n,
|
2021-07-19 04:36:35 +02:00
|
|
|
};
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
menu(): string[] {
|
|
|
|
return this.$store.state.menu;
|
|
|
|
},
|
|
|
|
|
|
|
|
otherNavItemIndicated(): boolean {
|
2022-07-14 10:42:12 +02:00
|
|
|
for (const def in this.navbarItemDef) {
|
2021-07-19 04:36:35 +02:00
|
|
|
if (this.menu.includes(def)) continue;
|
2022-07-14 10:42:12 +02:00
|
|
|
if (this.navbarItemDef[def].indicated) return true;
|
2021-07-19 04:36:35 +02:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
watch: {
|
2023-04-08 02:01:42 +02:00
|
|
|
"$store.reactiveState.menuDisplay.value"() {
|
2021-07-19 04:36:35 +02:00
|
|
|
this.calcViewState();
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
2023-04-08 02:01:42 +02:00
|
|
|
window.addEventListener("resize", this.calcViewState);
|
2021-07-19 04:36:35 +02:00
|
|
|
this.calcViewState();
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
calcViewState() {
|
2023-04-08 02:01:42 +02:00
|
|
|
this.settingsWindowed = window.innerWidth > 1400;
|
2021-07-19 04:36:35 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
post() {
|
|
|
|
os.post();
|
|
|
|
},
|
|
|
|
|
|
|
|
search() {
|
|
|
|
search();
|
|
|
|
},
|
|
|
|
|
|
|
|
more(ev) {
|
2023-04-08 02:01:42 +02:00
|
|
|
os.popup(
|
|
|
|
defineAsyncComponent(
|
|
|
|
() => import("@/components/MkLaunchPad.vue")
|
|
|
|
),
|
|
|
|
{
|
|
|
|
src: ev.currentTarget ?? ev.target,
|
|
|
|
anchor: { x: "center", y: "bottom" },
|
|
|
|
},
|
|
|
|
{},
|
|
|
|
"closed"
|
|
|
|
);
|
2021-07-19 04:36:35 +02:00
|
|
|
},
|
|
|
|
|
2022-02-23 15:40:31 +01:00
|
|
|
openAccountMenu: (ev) => {
|
2023-04-08 02:01:42 +02:00
|
|
|
openAccountMenu(
|
|
|
|
{
|
|
|
|
withExtraOperation: true,
|
|
|
|
},
|
|
|
|
ev
|
|
|
|
);
|
2022-01-21 12:17:31 +01:00
|
|
|
},
|
2022-07-14 10:42:12 +02:00
|
|
|
},
|
2021-07-19 04:36:35 +02:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.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);
|
|
|
|
}
|
|
|
|
|
|
|
|
> .post {
|
|
|
|
display: inline-block;
|
2023-04-08 02:01:42 +02:00
|
|
|
|
2021-07-19 04:36:35 +02:00
|
|
|
> .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>
|