2021-04-10 05:40:50 +02:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<div class="npcljfve" :class="{ iconOnly }">
|
|
|
|
<button
|
|
|
|
v-click-anime
|
|
|
|
class="item _button account"
|
|
|
|
@click="openAccountMenu"
|
|
|
|
>
|
2023-04-29 05:18:01 +02:00
|
|
|
<MkAvatar :user="$i" class="avatar" disableLink /><MkAcct
|
2023-04-08 02:01:42 +02:00
|
|
|
class="text"
|
|
|
|
:user="$i"
|
|
|
|
/>
|
|
|
|
</button>
|
|
|
|
<div class="post" data-cy-open-post-form @click="post">
|
|
|
|
<MkButton class="button" gradate full rounded>
|
|
|
|
<i class="ph-pencil ph-bold ph-lg ph-fw ph-lg"></i
|
|
|
|
><span v-if="!iconOnly" class="text">{{ i18n.ts.note }}</span>
|
|
|
|
</MkButton>
|
|
|
|
</div>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<MkA
|
|
|
|
v-click-anime
|
|
|
|
class="item index"
|
|
|
|
active-class="active"
|
|
|
|
to="/"
|
|
|
|
exact
|
|
|
|
>
|
|
|
|
<i class="ph-house ph-bold ph-lg ph-fw ph-lg"></i
|
|
|
|
><span class="text">{{ i18n.ts.timeline }}</span>
|
|
|
|
</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
|
|
|
|
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 class="text">{{ $ts[navbarItemDef[item].title] }}</span>
|
|
|
|
<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
|
|
|
|
class="item"
|
|
|
|
active-class="active"
|
|
|
|
to="/admin"
|
|
|
|
:behavior="settingsWindowed ? 'modalWindow' : null"
|
|
|
|
>
|
|
|
|
<i class="ph-door ph-bold ph-lg ph-fw ph-lg"></i
|
|
|
|
><span class="text">{{ i18n.ts.controlPanel }}</span>
|
2021-04-25 05:31:11 +02:00
|
|
|
</MkA>
|
2023-04-08 02:01:42 +02:00
|
|
|
<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 class="text">{{ i18n.ts.more }}</span>
|
|
|
|
<span v-if="otherNavItemIndicated" class="indicator"
|
|
|
|
><i class="ph-circle ph-fill"></i
|
|
|
|
></span>
|
|
|
|
</button>
|
|
|
|
<MkA
|
|
|
|
v-click-anime
|
|
|
|
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
|
|
|
|
><span class="text">{{ i18n.ts.settings }}</span>
|
|
|
|
</MkA>
|
|
|
|
<div class="divider"></div>
|
|
|
|
<div class="about">
|
|
|
|
<MkA v-click-anime class="link" @click="openInstanceMenu">
|
|
|
|
<img
|
|
|
|
:src="
|
|
|
|
$instance.iconUrl ||
|
|
|
|
$instance.faviconUrl ||
|
|
|
|
'/favicon.ico'
|
|
|
|
"
|
|
|
|
class="_ghost"
|
|
|
|
/>
|
|
|
|
</MkA>
|
|
|
|
</div>
|
|
|
|
<!--<MisskeyLogo class="misskey"/>-->
|
2021-04-12 16:13:58 +02:00
|
|
|
</div>
|
2021-04-10 05:40:50 +02:00
|
|
|
</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 { StickySidebar } from "@/scripts/sticky-sidebar";
|
2021-11-11 18:02:25 +01:00
|
|
|
//import MisskeyLogo from '@assets/client/misskey.svg';
|
2023-04-08 02:01:42 +02:00
|
|
|
import { i18n } from "@/i18n";
|
2021-04-10 05:40:50 +02:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
components: {
|
2021-04-12 16:13:58 +02:00
|
|
|
MkButton,
|
2021-11-11 18:02:25 +01:00
|
|
|
//MisskeyLogo,
|
2021-04-10 05:40:50 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
host: host,
|
|
|
|
accounts: [],
|
|
|
|
connection: null,
|
2022-07-14 10:42:12 +02:00
|
|
|
navbarItemDef: navbarItemDef,
|
2021-04-10 05:40:50 +02:00
|
|
|
iconOnly: false,
|
2021-04-11 14:09:35 +02:00
|
|
|
settingsWindowed: false,
|
2022-11-11 09:41:34 +01:00
|
|
|
i18n,
|
2021-04-10 05:40:50 +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-04-10 05:40:50 +02:00
|
|
|
if (this.menu.includes(def)) continue;
|
2022-07-14 10:42:12 +02:00
|
|
|
if (this.navbarItemDef[def].indicated) return true;
|
2021-04-10 05:40:50 +02:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
watch: {
|
2023-04-08 02:01:42 +02:00
|
|
|
"$store.reactiveState.menuDisplay.value"() {
|
2021-04-10 05:40:50 +02:00
|
|
|
this.calcViewState();
|
|
|
|
},
|
|
|
|
|
|
|
|
iconOnly() {
|
|
|
|
this.$nextTick(() => {
|
2023-04-08 02:01:42 +02:00
|
|
|
this.$emit("change-view-mode");
|
2021-04-10 05:40:50 +02:00
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
created() {
|
2023-04-08 02:01:42 +02:00
|
|
|
window.addEventListener("resize", this.calcViewState);
|
2021-04-10 05:40:50 +02:00
|
|
|
this.calcViewState();
|
|
|
|
},
|
|
|
|
|
|
|
|
mounted() {
|
|
|
|
const sticky = new StickySidebar(this.$el.parentElement, 16);
|
2023-04-08 02:01:42 +02:00
|
|
|
window.addEventListener(
|
|
|
|
"scroll",
|
|
|
|
() => {
|
|
|
|
sticky.calc(window.scrollY);
|
|
|
|
},
|
|
|
|
{ passive: true }
|
|
|
|
);
|
2021-04-10 05:40:50 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
calcViewState() {
|
2023-04-08 02:01:42 +02:00
|
|
|
this.iconOnly =
|
|
|
|
window.innerWidth <= 1400 ||
|
|
|
|
this.$store.state.menuDisplay === "sideIcon";
|
|
|
|
this.settingsWindowed = window.innerWidth > 1400;
|
2021-04-10 05:40:50 +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,
|
|
|
|
},
|
|
|
|
{},
|
|
|
|
"closed"
|
|
|
|
);
|
2021-04-10 05:40:50 +02:00
|
|
|
},
|
|
|
|
|
2022-06-10 07:36:55 +02: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-04-10 05:40:50 +02:00
|
|
|
});
|
2022-07-24 06:30:42 +02:00
|
|
|
|
|
|
|
function openInstanceMenu(ev: MouseEvent) {
|
2023-04-08 02:01:42 +02:00
|
|
|
os.popupMenu(
|
|
|
|
[
|
|
|
|
{
|
|
|
|
text: instance.name ?? host,
|
|
|
|
type: "label",
|
2022-07-24 06:30:42 +02:00
|
|
|
},
|
2023-04-08 02:01:42 +02:00
|
|
|
{
|
|
|
|
type: "link",
|
|
|
|
text: i18n.ts.instanceInfo,
|
|
|
|
icon: "ph-info ph-bold ph-lg",
|
|
|
|
to: "/about",
|
|
|
|
},
|
|
|
|
null,
|
|
|
|
{
|
|
|
|
type: "parent",
|
|
|
|
text: i18n.ts.help,
|
|
|
|
icon: "ph-question ph-bold ph-lg",
|
|
|
|
children: [
|
|
|
|
{
|
|
|
|
type: "link",
|
|
|
|
to: "/mfm-cheat-sheet",
|
|
|
|
text: i18n.ts._mfm.cheatSheet,
|
|
|
|
icon: "ph-code ph-bold ph-lg",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "link",
|
|
|
|
to: "/scratchpad",
|
|
|
|
text: i18n.ts.scratchpad,
|
|
|
|
icon: "ph-terminal-window ph-bold ph-lg",
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "link",
|
|
|
|
to: "/api-console",
|
|
|
|
text: "API Console",
|
|
|
|
icon: "ph-terminal-window ph-bold ph-lg",
|
|
|
|
},
|
|
|
|
null,
|
|
|
|
{
|
|
|
|
text: i18n.ts.document,
|
|
|
|
icon: "ph-question ph-bold ph-lg",
|
|
|
|
action: () => {
|
|
|
|
window.open(
|
|
|
|
"https://misskey-hub.net/help.html",
|
|
|
|
"_blank"
|
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: "link",
|
2023-04-18 00:37:05 +02:00
|
|
|
text: i18n.ts.aboutMisskey,
|
2023-04-08 02:01:42 +02:00
|
|
|
to: "/about-calckey",
|
|
|
|
},
|
|
|
|
],
|
|
|
|
ev.currentTarget ?? ev.target,
|
|
|
|
{
|
|
|
|
align: "left",
|
|
|
|
}
|
|
|
|
);
|
2022-07-24 06:30:42 +02:00
|
|
|
}
|
2021-04-10 05:40:50 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.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;
|
2023-04-29 05:18:01 +02:00
|
|
|
margin-inline: 0 !important;
|
2021-04-10 05:40:50 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .item {
|
|
|
|
padding-left: 0;
|
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
|
|
|
font-size: $ui-font-size * 1.1;
|
|
|
|
line-height: 3.7rem;
|
|
|
|
|
2021-04-20 16:22:59 +02:00
|
|
|
> i,
|
2021-04-10 05:40:50 +02: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 05:31:11 +02:00
|
|
|
> .about {
|
2021-04-12 16:13:58 +02:00
|
|
|
fill: currentColor;
|
|
|
|
padding: 8px 0 16px 0;
|
2021-04-25 05:31:11 +02:00
|
|
|
text-align: center;
|
|
|
|
|
|
|
|
> .link {
|
|
|
|
display: block;
|
|
|
|
width: 32px;
|
|
|
|
margin: 0 auto;
|
|
|
|
|
|
|
|
img {
|
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2021-04-12 16:13:58 +02:00
|
|
|
}
|
|
|
|
|
2021-04-10 05:40:50 +02: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 16:22:59 +02:00
|
|
|
> i {
|
2021-04-10 05:40:50 +02:00
|
|
|
width: 32px;
|
2023-04-29 05:18:01 +02:00
|
|
|
justify-content: center;
|
2021-04-10 05:40:50 +02:00
|
|
|
}
|
|
|
|
|
2021-04-20 16:22:59 +02:00
|
|
|
> i,
|
2021-04-10 05:40:50 +02:00
|
|
|
> .avatar {
|
|
|
|
margin-right: $avatar-margin;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .avatar {
|
|
|
|
width: $avatar-size;
|
|
|
|
height: $avatar-size;
|
|
|
|
vertical-align: middle;
|
|
|
|
}
|
|
|
|
|
2021-04-20 16:22:59 +02:00
|
|
|
> .indicator {
|
2021-04-10 05:40:50 +02:00
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
2021-05-31 03:35:12 +02:00
|
|
|
left: 0;
|
2021-04-10 05:40:50 +02:00
|
|
|
color: var(--navIndicator);
|
|
|
|
font-size: 8px;
|
|
|
|
animation: blink 1s infinite;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
text-decoration: none;
|
|
|
|
color: var(--navHoverFg);
|
|
|
|
}
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
color: var(--navActive);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|