summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortamaina <tamaina@hotmail.co.jp>2023-05-28 20:58:39 +0900
committerGitHub <noreply@github.com>2023-05-28 20:58:39 +0900
commita80003cde57da44b39189e32d43c5297f963f0cf (patch)
tree2c126361ae8148943a99e6770b0c7de026ab0803
parent:art: (diff)
downloadmisskey-a80003cde57da44b39189e32d43c5297f963f0cf.tar.gz
misskey-a80003cde57da44b39189e32d43c5297f963f0cf.tar.bz2
misskey-a80003cde57da44b39189e32d43c5297f963f0cf.zip
fix(frontend): Zen UIで、デッキ設定で直接/以外を表示したときデッキに戻るボタンを表示 (#10909)
* fix(frontend): デッキ設定で直接/以外を表示したときのZen UIでデッキに戻るボタン * fix style * ?zenが指定されていた場合はボタンを表示しない
-rw-r--r--packages/frontend/src/ui/zen.vue44
1 files changed, 42 insertions, 2 deletions
diff --git a/packages/frontend/src/ui/zen.vue b/packages/frontend/src/ui/zen.vue
index e656f00bb2..d516a5df75 100644
--- a/packages/frontend/src/ui/zen.vue
+++ b/packages/frontend/src/ui/zen.vue
@@ -1,9 +1,17 @@
<template>
-<div :class="$style.root" style="container-type: inline-size;">
+<div :class="showBottom ? $style.rootWithBottom : $style.root" style="container-type: inline-size;">
<RouterView/>
<XCommon/>
</div>
+
+<!--
+ デッキUIが設定されている場合はデッキUIに戻れるようにする (ただし?zenが明示された場合は表示しない)
+ See https://github.com/misskey-dev/misskey/issues/10905
+-->
+<div v-if="showBottom" :class="$style.bottom">
+ <button v-tooltip="i18n.ts.goToMisskey" :class="['_button', '_shadow', $style.button]" @click="goToMisskey"><i class="ti ti-home"></i></button>
+</div>
</template>
<script lang="ts" setup>
@@ -11,10 +19,13 @@ import { provide, ComputedRef } from 'vue';
import XCommon from './_common_/common.vue';
import { mainRouter } from '@/router';
import { PageMetadata, provideMetadataReceiver } from '@/scripts/page-metadata';
-import { instanceName } from '@/config';
+import { instanceName, ui } from '@/config';
+import { i18n } from '@/i18n';
let pageMetadata = $ref<null | ComputedRef<PageMetadata>>();
+const showBottom = !(new URLSearchParams(location.search)).has('zen') && ui === 'deck';
+
provide('router', mainRouter);
provideMetadataReceiver((info) => {
pageMetadata = info;
@@ -23,6 +34,10 @@ provideMetadataReceiver((info) => {
}
});
+function goToMisskey() {
+ window.location.href = '/';
+}
+
document.documentElement.style.overflowY = 'scroll';
</script>
@@ -31,4 +46,29 @@ document.documentElement.style.overflowY = 'scroll';
min-height: 100dvh;
box-sizing: border-box;
}
+
+.rootWithBottom {
+ min-height: calc(100dvh - (60px + (var(--margin) * 2) + env(safe-area-inset-bottom, 0px)));
+ box-sizing: border-box;
+}
+
+.bottom {
+ height: calc(60px + (var(--margin) * 2) + env(safe-area-inset-bottom, 0px));
+ width: 100%;
+ margin-top: auto;
+}
+
+.button {
+ position: fixed !important;
+ padding: 0;
+ aspect-ratio: 1;
+ width: 100%;
+ max-width: 60px;
+ margin: auto;
+ border-radius: 100%;
+ background: var(--panel);
+ color: var(--fg);
+ right: var(--margin);
+ bottom: calc(var(--margin) + env(safe-area-inset-bottom, 0px));
+}
</style>