summaryrefslogtreecommitdiff
path: root/packages/frontend/src/ui/_common_/mobile-footer-menu.vue
diff options
context:
space:
mode:
Diffstat (limited to 'packages/frontend/src/ui/_common_/mobile-footer-menu.vue')
-rw-r--r--packages/frontend/src/ui/_common_/mobile-footer-menu.vue144
1 files changed, 144 insertions, 0 deletions
diff --git a/packages/frontend/src/ui/_common_/mobile-footer-menu.vue b/packages/frontend/src/ui/_common_/mobile-footer-menu.vue
new file mode 100644
index 0000000000..37b70847ca
--- /dev/null
+++ b/packages/frontend/src/ui/_common_/mobile-footer-menu.vue
@@ -0,0 +1,144 @@
+<!--
+SPDX-FileCopyrightText: syuilo and misskey-project
+SPDX-License-Identifier: AGPL-3.0-only
+-->
+
+<template>
+<div ref="rootEl" :class="$style.root">
+ <button :class="$style.item" class="_button" @click="drawerMenuShowing = true">
+ <div :class="$style.itemInner">
+ <i :class="$style.itemIcon" class="ti ti-menu-2"></i><span v-if="menuIndicated" :class="$style.itemIndicator" class="_blink"><i class="_indicatorCircle"></i></span>
+ </div>
+ </button>
+
+ <button :class="$style.item" class="_button" @click="mainRouter.push('/')">
+ <div :class="$style.itemInner">
+ <i :class="$style.itemIcon" class="ti ti-home"></i>
+ </div>
+ </button>
+
+ <button :class="$style.item" class="_button" @click="mainRouter.push('/my/notifications')">
+ <div :class="$style.itemInner">
+ <i :class="$style.itemIcon" class="ti ti-bell"></i>
+ <span v-if="$i?.hasUnreadNotification" :class="$style.itemIndicator" class="_blink">
+ <span class="_indicateCounter" :class="$style.itemIndicateValueIcon">{{ $i.unreadNotificationsCount > 99 ? '99+' : $i.unreadNotificationsCount }}</span>
+ </span>
+ </div>
+ </button>
+
+ <button :class="$style.item" class="_button" @click="widgetsShowing = true">
+ <div :class="$style.itemInner">
+ <i :class="$style.itemIcon" class="ti ti-apps"></i>
+ </div>
+ </button>
+
+ <button :class="[$style.item, $style.post]" class="_button" @click="os.post()">
+ <div :class="$style.itemInner">
+ <i :class="$style.itemIcon" class="ti ti-pencil"></i>
+ </div>
+ </button>
+</div>
+</template>
+
+<script lang="ts" setup>
+import { computed, ref, useTemplateRef, watch } from 'vue';
+import { $i } from '@/i.js';
+import * as os from '@/os.js';
+import { mainRouter } from '@/router.js';
+import { navbarItemDef } from '@/navbar.js';
+
+const drawerMenuShowing = defineModel<boolean>('drawerMenuShowing');
+const widgetsShowing = defineModel<boolean>('widgetsShowing');
+
+const rootEl = useTemplateRef('rootEl');
+
+const menuIndicated = computed(() => {
+ for (const def in navbarItemDef) {
+ if (def === 'notifications') continue; // 通知は下にボタンとして表示されてるから
+ if (navbarItemDef[def].indicated) return true;
+ }
+ return false;
+});
+
+const rootElHeight = ref(0);
+
+watch(rootEl, () => {
+ if (rootEl.value) {
+ rootElHeight.value = rootEl.value.offsetHeight;
+ window.document.body.style.setProperty('--MI-minBottomSpacing', 'var(--MI-minBottomSpacingMobile)');
+ } else {
+ rootElHeight.value = 0;
+ window.document.body.style.setProperty('--MI-minBottomSpacing', '0px');
+ }
+}, {
+ immediate: true,
+});
+</script>
+
+<style lang="scss" module>
+.root {
+ padding: 12px 12px max(12px, env(safe-area-inset-bottom, 0px)) 12px;
+ display: grid;
+ grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
+ grid-gap: 8px;
+ width: 100%;
+ box-sizing: border-box;
+ background: var(--MI_THEME-bg);
+ border-top: solid 0.5px var(--MI_THEME-divider);
+}
+
+.item {
+ &.post {
+ .itemInner {
+ background: linear-gradient(90deg, var(--MI_THEME-buttonGradateA), var(--MI_THEME-buttonGradateB));
+ color: var(--MI_THEME-fgOnAccent);
+
+ &:hover {
+ background: linear-gradient(90deg, hsl(from var(--MI_THEME-accent) h s calc(l + 5)), hsl(from var(--MI_THEME-accent) h s calc(l + 5)));
+ }
+
+ &:active {
+ background: linear-gradient(90deg, hsl(from var(--MI_THEME-accent) h s calc(l + 5)), hsl(from var(--MI_THEME-accent) h s calc(l + 5)));
+ }
+ }
+ }
+}
+
+.itemInner {
+ position: relative;
+ padding: 0;
+ aspect-ratio: 1;
+ width: 100%;
+ max-width: 50px;
+ margin: auto;
+ align-content: center;
+ border-radius: 100%;
+ background: var(--MI_THEME-panel);
+ color: var(--MI_THEME-fg);
+
+ &:hover {
+ background: var(--MI_THEME-panelHighlight);
+ }
+
+ &:active {
+ background: hsl(from var(--MI_THEME-panel) h s calc(l - 2));
+ }
+}
+
+.itemIcon {
+ font-size: 14px;
+}
+
+.itemIndicator {
+ position: absolute;
+ top: 0;
+ left: 0;
+ color: var(--MI_THEME-indicator);
+ font-size: 16px;
+
+ &:has(.itemIndicateValueIcon) {
+ animation: none;
+ font-size: 12px;
+ }
+}
+</style>