iceshrimp-legacy/packages/client/src/ui/_common_/navbar.vue

567 lines
14 KiB
Vue
Raw Normal View History

<template>
<div class="mvcprjjd" :class="{ iconOnly }">
<div class="body">
2022-07-15 15:09:05 +02:00
<div class="top">
2022-07-24 04:18:44 +02:00
<div class="banner" :user="$i" :style="{ backgroundImage: `url(${ $i.bannerUrl })` }"></div>
2022-07-24 04:54:13 +02:00
<button v-click-anime v-tooltip.noDelay.right="`${i18n.ts.account}: @${$i.username}`" class="item _button account" @click="openAccountMenu">
2022-07-24 04:28:57 +02:00
<MkAvatar :user="$i" class="icon"/><!-- <MkAcct class="text" :user="$i"/> -->
</button>
2022-07-15 15:09:05 +02:00
</div>
<div class="middle">
2022-07-16 06:49:23 +02:00
<MkA v-click-anime v-tooltip.noDelay.right="i18n.ts.timeline" class="item index" active-class="active" to="/" exact>
2022-11-07 03:49:47 +01:00
<i class="icon ph-house-bold ph-lg ph-fw ph-lg"></i><span class="text">{{ i18n.ts.timeline }}</span>
2022-07-15 15:09:05 +02:00
</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
2022-07-16 06:49:23 +02:00
v-tooltip.noDelay.right="i18n.ts[navbarItemDef[item].title]"
2022-07-15 15:09:05 +02:00
class="item _button"
:class="[item, { active: navbarItemDef[item].active }]"
active-class="active"
:to="navbarItemDef[item].to"
v-on="navbarItemDef[item].action ? { click: navbarItemDef[item].action } : {}"
>
2022-11-07 03:49:47 +01:00
<i class="icon ph-fw ph-lg" :class="navbarItemDef[item].icon"></i><span class="text">{{ i18n.ts[navbarItemDef[item].title] }}</span>
2022-11-07 03:51:51 +01:00
<span v-if="navbarItemDef[item].indicated" class="indicator"><i class="icon ph-circle-fill"></i></span>
2022-07-15 15:09:05 +02:00
</component>
</template>
<div class="divider"></div>
<MkA v-if="$i.isAdmin || $i.isModerator" v-click-anime v-tooltip.noDelay.right="i18n.ts.controlPanel" class="item _button" active-class="active" to="/admin">
2022-11-07 03:49:47 +01:00
<span v-if="thereIsUnresolvedAbuseReport || noMaintainerInformation || noBotProtection || noEmailServer || updateAvailable" class="indicator"></span><i class="icon ph-door-bold ph-lg ph-fw ph-lg"></i><span class="text">{{ i18n.ts.controlPanel }}</span>
2022-07-15 15:09:05 +02:00
</MkA>
<button v-click-anime class="item _button" @click="more">
2022-11-07 03:49:47 +01:00
<i class="icon ph-dots-three-outline-bold ph-lg ph-fw ph-lg"></i><span class="text">{{ i18n.ts.more }}</span>
2022-11-07 03:51:51 +01:00
<span v-if="otherMenuItemIndicated" class="indicator"><i class="icon ph-circle-fill"></i></span>
2022-07-15 15:09:05 +02:00
</button>
<MkA v-click-anime v-tooltip.noDelay.right="i18n.ts.settings" class="item _button" active-class="active" to="/settings">
2022-11-07 03:49:47 +01:00
<i class="icon ph-gear-six-bold ph-lg ph-fw ph-lg"></i><span class="text">{{ i18n.ts.settings }}</span>
2022-07-15 15:09:05 +02:00
</MkA>
</div>
<div class="bottom">
2022-07-16 06:49:23 +02:00
<button v-tooltip.noDelay.right="i18n.ts.note" class="item _button post" data-cy-open-post-form @click="os.post">
2022-11-07 03:49:47 +01:00
<i class="icon ph-pencil-bold ph-lg ph-fw ph-lg"></i><span class="text">{{ i18n.ts.note }}</span>
2022-07-15 15:09:05 +02:00
</button>
2022-07-24 04:54:13 +02:00
<button v-click-anime v-tooltip.noDelay.right="$instance.name ?? i18n.ts.instance" class="item _button instance" @click="openInstanceMenu">
<img :src="$instance.iconUrl || $instance.faviconUrl || '/favicon.ico'" alt="" class="icon"/>
2022-07-20 01:51:37 +02:00
</button>
2022-07-24 04:54:13 +02:00
<!-- <button v-click-anime v-tooltip.noDelay.right="`${i18n.ts.account}: @${$i.username}`" class="item _button account" @click="openAccountMenu">
<MkAvatar :user="$i" class="account"/><MkAcct class="text" :user="$i"/>
</button> -->
2022-07-15 15:09:05 +02:00
</div>
</div>
</div>
</template>
<script lang="ts" setup>
refactor: use Vite to build instead of webpack (#8575) * update stream.ts * https://github.com/misskey-dev/misskey/pull/7769#issuecomment-917542339 * fix lint * clean up? * add app * fix * nanka iroiro * wip * wip * fix lint * fix loginId * fix * refactor * refactor * remove follow action * clean up * Revert "remove follow action" This reverts commit defbb416480905af2150d1c92f10d8e1d1288c0a. * Revert "clean up" This reverts commit f94919cb9cff41e274044fc69c56ad36a33974f2. * remove fetch specification * renoteの条件追加 * apiFetch => cli * bypass fetch? * fix * refactor: use path alias * temp: add submodule * remove submodule * enhane: unison-reloadに指定したパスに移動できるように * null * null * feat: ログインするアカウントのIDをクエリ文字列で指定する機能 * null * await? * rename * rename * Update read.ts * merge * get-note-summary * fix * swパッケージに * add missing packages * fix getNoteSummary * add webpack-cli * :v: * remove plugins * sw-inject分離したがテストしてない * fix notification.vue * remove a blank line * disconnect intersection observer * disconnect2 * fix notification.vue * remove a blank line * disconnect intersection observer * disconnect2 * fix * :v: * clean up config * typesを戻した * Update packages/client/src/components/notification.vue Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> * disconnect * oops * Failed to load the script unexpectedly回避 sw.jsとlib.tsを分離してみた * truncate notification * Update packages/client/src/ui/_common_/common.vue Co-authored-by: syuilo <Syuilotan@yahoo.co.jp> * clean up * clean up * キャッシュ対策 * Truncate push notification message * クライアントがあったらストリームに接続しているということなので通知しない判定の位置を修正 * components/drive-file-thumbnail.vue * components/drive-select-dialog.vue * components/drive-window.vue * merge * fix * Service Workerのビルドにesbuildを使うようにする * return createEmptyNotification() * fix * i18n.ts * update * :v: * remove ts-loader * fix * fix * enhance: Service Workerを常に登録するように * pollEnded * URLをsw.jsに戻す * clean up * wip * wip * wip * wip * wip * wip * :v: * use import * fix * install rollup * use defineAsyncComponent. * fix emojilist * wip use defineAsyncComponent * popup(import -> popup(defineAsyncComponent(() => import * draggable? * fix init import * clean up * fix router * add comment * :v: * :v: * :v: * remove webpack * update vite * fix boot sequence * Revert "fix boot sequence" This reverts commit e893dbf37aed83bf9f12e427d98c78a7065b4a39. * revert boot import * never make two app div * ; * remove console.log * change clientEntry sequence * fix * Revert "fix" This reverts commit 12741b3d89950a31dbb1bb81477ddb27b0e9951a. * fix * add comment https://github.com/misskey-dev/misskey/pull/8575#issuecomment-1114239210 * add log * add comment Co-authored-by: Acid Chicken (硫酸鶏) <root@acid-chicken.com> Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
2022-05-01 15:51:07 +02:00
import { computed, defineAsyncComponent, ref, watch } from 'vue';
2022-11-12 22:46:13 +01:00
import XTutorial from '@/components/MkTutorialDialog.vue';
2021-11-11 18:02:25 +01:00
import * as os from '@/os';
import { navbarItemDef } from '@/navbar';
import { $i, openAccountMenu as openAccountMenu_ } from '@/account';
import { defaultStore } from '@/store';
2022-07-14 10:52:59 +02:00
import { i18n } from '@/i18n';
2022-07-15 15:09:05 +02:00
import { instance } from '@/instance';
import { host, version } from '@/config';
const isEmpty = (x: string | null) => x == null || x === '';
const iconOnly = ref(false);
const menu = computed(() => defaultStore.state.menu);
const otherMenuItemIndicated = computed(() => {
for (const def in navbarItemDef) {
if (menu.value.includes(def)) continue;
if (navbarItemDef[def].indicated) return true;
}
return false;
});
const calcViewState = () => {
iconOnly.value = (window.innerWidth <= 1279) || (defaultStore.state.menuDisplay === 'sideIcon');
};
calcViewState();
window.addEventListener('resize', calcViewState);
watch(defaultStore.reactiveState.menuDisplay, () => {
calcViewState();
});
let noMaintainerInformation = isEmpty(instance.maintainerName) || isEmpty(instance.maintainerEmail);
let noBotProtection = !instance.disableRegistration && !instance.enableHcaptcha && !instance.enableRecaptcha;
let noEmailServer = !instance.enableEmail;
let thereIsUnresolvedAbuseReport = $ref(false);
let updateAvailable = $ref(false);
if ($i?.isAdmin) {
os.api('admin/abuse-user-reports', {
state: 'unresolved',
limit: 1,
}).then(reports => {
if (reports?.length > 0) thereIsUnresolvedAbuseReport = true;
});
}
if (defaultStore.state.showAdminUpdates) {
os.api('latest-version').then(res => {
const cleanRes = parseInt(res?.tag_name.replace(/[^0-9]/g, ''));
const cleanVersion = parseInt(version.replace(/[^0-9]/g, ''));
if (cleanRes > cleanVersion) {
updateAvailable = true;
}
});
}
function openAccountMenu(ev: MouseEvent) {
openAccountMenu_({
withExtraOperation: true,
}, ev);
}
2022-07-15 15:09:05 +02:00
function openInstanceMenu(ev: MouseEvent) {
os.popupMenu([{
text: instance.name ?? host,
type: 'label',
}, {
type: 'link',
text: i18n.ts.instanceInfo,
2022-11-07 03:49:47 +01:00
icon: 'ph-info-bold ph-lg',
2022-07-15 15:09:05 +02:00
to: '/about',
2022-07-17 14:06:33 +02:00
}, null, {
type: 'parent',
text: i18n.ts.help,
2022-11-07 03:49:47 +01:00
icon: 'ph-question-bold ph-lg',
2022-07-17 14:06:33 +02:00
children: [{
type: 'link',
to: '/mfm-cheat-sheet',
text: i18n.ts._mfm.cheatSheet,
2022-11-07 03:49:47 +01:00
icon: 'ph-code-bold ph-lg',
2022-11-12 22:46:13 +01:00
}, {
type: 'button',
action: async () => {
defaultStore.set('tutorial', 0);
os.popup(XTutorial, {}, {}, 'closed');
},
2022-11-13 21:06:39 +01:00
text: i18n.ts.replayTutorial,
2022-11-12 22:46:13 +01:00
icon: 'ph-circle-wavy-question-bold ph-lg',
2022-07-17 14:06:33 +02:00
}, {
type: 'link',
to: '/scratchpad',
text: i18n.ts.scratchpad,
2022-11-07 03:49:47 +01:00
icon: 'ph-terminal-window-bold ph-lg',
2022-07-17 14:06:33 +02:00
}, {
type: 'link',
to: '/api-console',
text: 'API Console',
2022-11-07 03:49:47 +01:00
icon: 'ph-terminal-window-bold ph-lg',
2022-07-17 14:06:33 +02:00
}, null, {
text: i18n.ts.document,
2022-11-07 03:49:47 +01:00
icon: 'ph-question-bold ph-lg',
2022-07-17 14:06:33 +02:00
action: () => {
window.open('https://misskey-hub.net/help.html', '_blank');
},
}],
}, {
type: 'link',
text: i18n.ts.aboutMisskey,
to: '/about-calckey',
2022-07-15 15:09:05 +02:00
}], ev.currentTarget ?? ev.target, {
align: 'left',
});
}
function more(ev: MouseEvent) {
os.popup(defineAsyncComponent(() => import('@/components/MkLaunchPad.vue')), {
src: ev.currentTarget ?? ev.target,
}, {
}, 'closed');
}
</script>
<style lang="scss" scoped>
.mvcprjjd {
$nav-width: 250px;
2022-07-18 11:41:17 +02:00
$nav-icon-only-width: 80px;
flex: 0 0 $nav-width;
width: $nav-width;
box-sizing: border-box;
> .body {
position: fixed;
top: 0;
left: 0;
z-index: 1001;
2022-07-15 15:09:05 +02:00
width: $nav-icon-only-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);
contain: strict;
2022-07-15 15:09:05 +02:00
display: flex;
flex-direction: column;
}
2022-07-15 15:09:05 +02:00
&:not(.iconOnly) {
> .body {
width: $nav-width;
2022-07-15 15:09:05 +02:00
> .top {
position: sticky;
top: 0;
2022-07-15 15:09:05 +02:00
z-index: 1;
2022-07-24 04:54:13 +02:00
padding: 2rem 0;
2022-07-15 15:09:05 +02:00
background: var(--X14);
-webkit-backdrop-filter: var(--blur, blur(8px));
backdrop-filter: var(--blur, blur(8px));
2022-07-15 15:09:05 +02:00
> .banner {
position: absolute;
top: 0;
left: 0;
2022-07-15 15:09:05 +02:00
width: 100%;
height: 100%;
background-size: cover;
background-position: center center;
-webkit-mask-image: linear-gradient(0deg, rgba(0,0,0,0) 15%, rgba(0,0,0,0.75) 100%);
mask-image: linear-gradient(0deg, rgba(0,0,0,0) 15%, rgba(0,0,0,0.75) 100%);
}
2022-07-24 04:54:13 +02:00
> .account {
2022-07-15 15:09:05 +02:00
position: relative;
display: block;
text-align: center;
width: 100%;
> .icon {
display: inline-block;
2022-07-24 05:10:17 +02:00
width: 55px;
2022-07-15 15:09:05 +02:00
aspect-ratio: 1;
}
}
}
2022-07-15 15:09:05 +02:00
> .bottom {
position: sticky;
2022-07-15 15:09:05 +02:00
bottom: 0;
padding: 20px 0;
background: var(--X14);
-webkit-backdrop-filter: var(--blur, blur(8px));
backdrop-filter: var(--blur, blur(8px));
2020-08-01 03:53:23 +02:00
2022-07-15 15:09:05 +02:00
> .post {
position: relative;
display: block;
width: 100%;
height: 40px;
color: var(--fgOnAccent);
font-weight: bold;
text-align: left;
2020-08-01 03:53:23 +02:00
&:before {
2022-07-15 15:09:05 +02:00
content: "";
display: block;
width: calc(100% - 38px);
height: 100%;
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);
2022-11-07 21:47:57 +01:00
transition: all 0.4s ease;
2022-07-15 15:09:05 +02:00
}
}
2022-07-24 05:21:19 +02:00
2022-07-24 06:10:34 +02:00
> .icon, > .text {
2022-07-24 05:21:19 +02:00
position: relative;
2022-07-24 06:10:34 +02:00
left: 3rem;
color: var(--fgOnAccent);
2022-11-07 04:42:01 +01:00
transform: translateY(0em)
2022-07-24 05:21:19 +02:00
}
2022-07-24 06:10:34 +02:00
2022-07-24 06:16:35 +02:00
> .text {
margin-left: 1rem;
}
2022-07-24 05:10:17 +02:00
}
2022-07-15 15:09:05 +02:00
2022-07-24 05:01:24 +02:00
> .instance {
position: relative;
display: block;
text-align: center;
width: 100%;
2022-07-15 15:09:05 +02:00
> .icon {
2022-07-24 05:01:24 +02:00
display: inline-block;
width: 32px !important;
aspect-ratio: 1;
2022-07-24 06:39:48 +02:00
margin-top: 1rem;
2022-07-15 15:09:05 +02:00
}
2022-07-24 05:01:24 +02:00
}
2022-07-15 15:09:05 +02:00
> .account {
position: relative;
2022-07-24 04:54:13 +02:00
display: block;
text-align: center;
2022-07-15 15:09:05 +02:00
width: 100%;
2022-07-24 04:54:13 +02:00
> .icon {
display: inline-block;
width: 38px;
2022-07-15 15:09:05 +02:00
aspect-ratio: 1;
2020-08-01 03:53:23 +02:00
}
}
}
2022-07-15 15:09:05 +02:00
> .middle {
2022-07-20 00:14:37 +02:00
flex: 0.1;
2020-08-01 03:53:23 +02:00
2022-07-15 15:09:05 +02:00
> .divider {
margin: 16px 16px;
border-top: solid 0.5px var(--divider);
}
2022-07-15 15:09:05 +02:00
> .item {
position: relative;
display: block;
padding-left: 30px;
line-height: 2.85rem;
2022-07-24 05:06:26 +02:00
margin-bottom: 0.5rem;
2022-07-15 15:09:05 +02:00
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
width: 100%;
text-align: left;
box-sizing: border-box;
color: var(--navFg);
> .icon {
position: relative;
width: 32px;
margin-right: 8px;
2022-11-07 05:01:45 +01:00
transform: translateY(0.15em);
2022-07-15 15:09:05 +02:00
}
> .indicator {
position: absolute;
top: 0;
left: 20px;
color: var(--navIndicator);
font-size: 8px;
animation: blink 1s infinite;
}
> .text {
position: relative;
font-size: 0.9em;
}
&:hover {
text-decoration: none;
color: var(--navHoverFg);
2022-11-07 21:47:57 +01:00
transition: all 0.4s ease;
2022-07-15 15:09:05 +02:00
}
&.active {
color: var(--navActive);
}
&:hover, &.active {
color: var(--accent);
2022-11-07 21:47:57 +01:00
transition: all 0.4s ease;
2022-07-15 15:09:05 +02:00
&:before {
content: "";
display: block;
width: calc(100% - 34px);
height: 100%;
margin: auto;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-radius: 999px;
background: var(--accentedBg);
}
2020-08-01 03:53:23 +02:00
}
}
}
}
}
&.iconOnly {
flex: 0 0 $nav-icon-only-width;
width: $nav-icon-only-width;
> .body {
width: $nav-icon-only-width;
2022-07-15 15:09:05 +02:00
> .top {
position: sticky;
top: 0;
z-index: 1;
2022-07-24 04:54:13 +02:00
padding: 2rem 0;
2022-07-15 15:09:05 +02:00
background: var(--X14);
-webkit-backdrop-filter: var(--blur, blur(8px));
backdrop-filter: var(--blur, blur(8px));
2022-07-24 04:54:13 +02:00
> .account {
2022-07-15 15:09:05 +02:00
display: block;
text-align: center;
width: 100%;
> .icon {
display: inline-block;
2022-07-24 05:01:24 +02:00
width: 40px;
2022-07-15 15:09:05 +02:00
aspect-ratio: 1;
2022-11-07 04:42:01 +01:00
transform: translateY(0em);
2022-07-15 15:09:05 +02:00
}
}
}
2022-07-15 15:09:05 +02:00
> .bottom {
position: sticky;
bottom: 0;
padding: 20px 0;
background: var(--X14);
-webkit-backdrop-filter: var(--blur, blur(8px));
backdrop-filter: var(--blur, blur(8px));
2022-07-15 15:09:05 +02:00
> .post {
display: block;
2022-07-15 15:09:05 +02:00
position: relative;
width: 100%;
height: 52px;
margin-bottom: 16px;
text-align: center;
2022-07-15 15:09:05 +02:00
&:before {
content: "";
display: block;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
margin: auto;
width: 52px;
aspect-ratio: 1/1;
border-radius: 100%;
background: linear-gradient(90deg, var(--buttonGradateA), var(--buttonGradateB));
}
2022-07-15 15:09:05 +02:00
&:hover, &.active {
&:before {
background: var(--accentLighten);
2022-11-07 21:47:57 +01:00
transition: all 0.4s ease;
2022-07-15 15:09:05 +02:00
}
}
2022-07-15 15:09:05 +02:00
> .icon {
position: relative;
color: var(--fgOnAccent);
2022-11-07 04:42:01 +01:00
transform: translate(0.15em, 0em)
2021-09-20 19:01:25 +02:00
}
2022-07-15 15:09:05 +02:00
> .text {
display: none;
}
}
2022-07-24 05:01:24 +02:00
> .instance {
2022-07-24 04:54:13 +02:00
position: relative;
2022-07-15 15:09:05 +02:00
display: block;
text-align: center;
width: 100%;
2022-07-24 04:54:13 +02:00
> .icon {
2022-07-15 15:09:05 +02:00
display: inline-block;
2022-07-24 05:01:24 +02:00
width: 32px !important;
2022-07-15 15:09:05 +02:00
aspect-ratio: 1;
}
}
2022-07-15 15:09:05 +02:00
}
2021-09-20 19:01:25 +02:00
2022-07-15 15:09:05 +02:00
> .middle {
2022-07-20 04:56:37 +02:00
flex: 0.1;
2022-07-15 15:09:05 +02:00
> .divider {
margin: 8px auto;
width: calc(100% - 32px);
border-top: solid 0.5px var(--divider);
}
2022-07-15 15:09:05 +02:00
> .item {
display: block;
position: relative;
2022-07-28 06:00:41 +02:00
padding: 1.1rem 0;
2022-07-28 05:43:51 +02:00
margin-bottom: 0.2rem;
2022-07-15 15:09:05 +02:00
width: 100%;
text-align: center;
2021-12-04 10:27:31 +01:00
> .icon {
2022-07-15 15:09:05 +02:00
display: block;
margin: 0 auto;
opacity: 0.7;
2022-11-07 04:42:01 +01:00
transform: translateY(0em);
2022-07-15 15:09:05 +02:00
}
> .text {
display: none;
2021-12-04 10:27:31 +01:00
}
2021-09-20 19:01:25 +02:00
2022-07-15 15:09:05 +02:00
> .indicator {
position: absolute;
top: 6px;
left: 24px;
color: var(--navIndicator);
font-size: 8px;
animation: blink 1s infinite;
}
&:hover, &.active {
text-decoration: none;
color: var(--accent);
2022-11-07 21:47:57 +01:00
transition: all 0.4s ease;
2022-07-15 15:09:05 +02:00
&:before {
content: "";
display: block;
height: 100%;
aspect-ratio: 1;
margin: auto;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-radius: 999px;
background: var(--accentedBg);
}
> .icon, > .text {
opacity: 1;
}
}
}
}
}
}
}
</style>