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

256 lines
6.4 KiB
Vue
Raw Normal View History

<template>
<div class="kmwsukvl">
<div class="body">
2022-07-15 15:09:05 +02:00
<div class="top">
2022-07-24 08:05:20 +02:00
<div class="banner" :user="$i" :style="{ backgroundImage: `url(${ $i.bannerUrl })` }"></div>
<button v-click-anime v-tooltip.noDelay.right="`${i18n.ts.account}: @${$i.username}`" class="item _button account" @click="openAccountMenu">
<MkAvatar :user="$i" class="icon"/><!-- <MkAcct class="text" :user="$i"/> -->
2022-07-15 15:09:05 +02:00
</button>
</div>
<div class="middle">
<MkA v-click-anime 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 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 class="item" active-class="active" to="/admin">
2022-11-07 03:49:47 +01:00
<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 class="item" 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">
<button 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>
</div>
</div>
</div>
</template>
2022-07-15 15:09:05 +02:00
<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, defineComponent, ref, toRef, watch } from 'vue';
import * as os from '@/os';
import { navbarItemDef } from '@/navbar';
2022-07-15 15:09:05 +02:00
import { openAccountMenu as openAccountMenu_ } from '@/account';
import { defaultStore } from '@/store';
2022-07-15 15:09:05 +02:00
import { i18n } from '@/i18n';
2022-07-15 15:09:05 +02:00
const menu = toRef(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;
});
2022-07-15 15:09:05 +02:00
function openAccountMenu(ev: MouseEvent) {
openAccountMenu_({
withExtraOperation: true,
}, ev);
}
function more() {
os.popup(defineAsyncComponent(() => import('@/components/MkLaunchPad.vue')), {}, {
2022-07-15 15:09:05 +02:00
}, 'closed');
}
</script>
<style lang="scss" scoped>
.kmwsukvl {
> .body {
2022-07-15 15:09:05 +02:00
display: flex;
flex-direction: column;
2022-07-15 15:09:05 +02:00
> .top {
position: sticky;
top: 0;
z-index: 1;
2022-07-24 08:05:20 +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;
2022-07-15 15:09:05 +02:00
left: 0;
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 08:05:20 +02:00
> .account {
position: relative;
2022-07-15 15:09:05 +02:00
display: block;
text-align: center;
width: 100%;
2022-07-15 15:09:05 +02:00
> .icon {
display: inline-block;
2022-07-24 08:05:20 +02:00
width: 55px;
2022-07-15 15:09:05 +02:00
aspect-ratio: 1;
}
}
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));
> .post {
position: relative;
display: block;
width: 100%;
height: 40px;
color: var(--fgOnAccent);
font-weight: bold;
text-align: left;
&:before {
content: "";
display: block;
2022-07-15 15:09:05 +02:00
width: calc(100% - 38px);
height: 100%;
margin: auto;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-radius: 999px;
2022-07-15 15:09:05 +02:00
background: linear-gradient(90deg, var(--buttonGradateA), var(--buttonGradateB));
}
&:hover, &.active {
&:before {
2022-07-15 15:09:05 +02:00
background: var(--accentLighten);
}
}
2022-07-15 15:09:05 +02:00
> .icon {
position: relative;
margin-left: 30px;
margin-right: 8px;
width: 32px;
}
> .text {
position: relative;
}
}
2022-07-24 08:05:20 +02:00
> .instance {
2022-07-15 15:09:05 +02:00
position: relative;
display: flex;
align-items: center;
padding-left: 30px;
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
width: 100%;
text-align: left;
box-sizing: border-box;
margin-top: 16px;
2022-07-24 08:05:20 +02:00
> .icon {
2022-07-15 15:09:05 +02:00
position: relative;
width: 32px;
aspect-ratio: 1;
2022-07-24 08:17:44 +02:00
transform: translateX(-100%);
left: 50%;
2022-07-15 15:09:05 +02:00
}
}
}
> .middle {
2022-07-20 01:56:23 +02:00
flex: 0.1;
2022-07-15 15:09:05 +02:00
> .divider {
margin: 16px 16px;
border-top: solid 0.5px var(--divider);
}
> .item {
position: relative;
display: block;
padding-left: 24px;
line-height: 2.85rem;
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;
2022-07-24 08:17:44 +02:00
margin-right: 8px;
2022-07-15 15:09:05 +02:00
}
> .indicator {
position: absolute;
top: 0;
2022-07-15 15:09:05 +02:00
left: 20px;
color: var(--navIndicator);
font-size: 8px;
animation: blink 1s infinite;
}
2022-07-15 15:09:05 +02:00
> .text {
position: relative;
font-size: 0.9em;
}
&:hover {
text-decoration: none;
color: var(--navHoverFg);
}
&.active {
color: var(--navActive);
}
&:hover, &.active {
&:before {
2022-07-15 15:09:05 +02:00
content: "";
display: block;
width: calc(100% - 24px);
height: 100%;
margin: auto;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
border-radius: 999px;
background: var(--accentedBg);
}
}
}
}
}
}
</style>