2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-11-17 13:52:07 +00:00
|
|
|
<template>
|
2023-05-19 04:58:09 +00:00
|
|
|
<MkModal ref="modal" v-slot="{ type, maxHeight }" :preferType="preferedModalType" :anchor="anchor" :transparentBg="true" :src="src" @click="modal.close()" @closed="emit('closed')">
|
2022-02-23 14:40:31 +00:00
|
|
|
<div class="szkkfdyq _popup _shadow" :class="{ asDrawer: type === 'drawer' }" :style="{ maxHeight: maxHeight ? maxHeight + 'px' : '' }">
|
2020-11-17 13:52:07 +00:00
|
|
|
<div class="main">
|
|
|
|
<template v-for="item in items">
|
2023-01-14 11:31:48 +00:00
|
|
|
<button v-if="item.action" v-click-anime class="_button item" @click="$event => { item.action($event); close(); }">
|
2021-04-20 14:22:59 +00:00
|
|
|
<i class="icon" :class="item.icon"></i>
|
2020-11-17 13:52:07 +00:00
|
|
|
<div class="text">{{ item.text }}</div>
|
2022-12-19 10:01:30 +00:00
|
|
|
<span v-if="item.indicate" class="indicator"><i class="_indicatorCircle"></i></span>
|
2020-11-17 13:52:07 +00:00
|
|
|
</button>
|
2023-01-14 11:31:48 +00:00
|
|
|
<MkA v-else v-click-anime :to="item.to" class="item" @click.passive="close()">
|
2021-04-20 14:22:59 +00:00
|
|
|
<i class="icon" :class="item.icon"></i>
|
2020-11-17 13:52:07 +00:00
|
|
|
<div class="text">{{ item.text }}</div>
|
2022-12-19 10:01:30 +00:00
|
|
|
<span v-if="item.indicate" class="indicator"><i class="_indicatorCircle"></i></span>
|
2020-11-17 13:52:07 +00:00
|
|
|
</MkA>
|
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</MkModal>
|
|
|
|
</template>
|
|
|
|
|
2022-02-23 14:40:31 +00:00
|
|
|
<script lang="ts" setup>
|
2022-06-29 02:13:32 +00:00
|
|
|
import { } from 'vue';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkModal from '@/components/MkModal.vue';
|
2022-07-14 08:42:12 +00:00
|
|
|
import { navbarItemDef } from '@/navbar';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { defaultStore } from '@/store.js';
|
|
|
|
import { deviceKind } from '@/scripts/device-kind.js';
|
2020-11-17 13:52:07 +00:00
|
|
|
|
2022-02-23 14:40:31 +00:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
src?: HTMLElement;
|
2022-03-27 07:28:25 +00:00
|
|
|
anchor?: { x: string; y: string; };
|
2022-02-23 14:40:31 +00:00
|
|
|
}>(), {
|
2022-03-27 07:28:25 +00:00
|
|
|
anchor: () => ({ x: 'right', y: 'center' }),
|
2020-11-17 13:52:07 +00:00
|
|
|
});
|
2022-02-23 14:40:31 +00:00
|
|
|
|
|
|
|
const emit = defineEmits<{
|
|
|
|
(ev: 'closed'): void;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const preferedModalType = (deviceKind === 'desktop' && props.src != null) ? 'popup' :
|
|
|
|
deviceKind === 'smartphone' ? 'drawer' :
|
|
|
|
'dialog';
|
|
|
|
|
2023-01-03 04:37:32 +00:00
|
|
|
const modal = $shallowRef<InstanceType<typeof MkModal>>();
|
2022-02-23 14:40:31 +00:00
|
|
|
|
|
|
|
const menu = defaultStore.state.menu;
|
|
|
|
|
2022-07-14 08:42:12 +00:00
|
|
|
const items = Object.keys(navbarItemDef).filter(k => !menu.includes(k)).map(k => navbarItemDef[k]).filter(def => def.show == null ? true : def.show).map(def => ({
|
2022-02-23 14:40:31 +00:00
|
|
|
type: def.to ? 'link' : 'button',
|
2023-01-05 04:59:48 +00:00
|
|
|
text: def.title,
|
2022-02-23 14:40:31 +00:00
|
|
|
icon: def.icon,
|
|
|
|
to: def.to,
|
|
|
|
action: def.action,
|
|
|
|
indicate: def.indicated,
|
|
|
|
}));
|
|
|
|
|
|
|
|
function close() {
|
|
|
|
modal.close();
|
|
|
|
}
|
2020-11-17 13:52:07 +00:00
|
|
|
</script>
|
|
|
|
|
2022-12-27 09:29:39 +00:00
|
|
|
<style lang="scss" scoped>
|
2020-11-17 13:52:07 +00:00
|
|
|
.szkkfdyq {
|
|
|
|
max-height: 100%;
|
2022-02-23 14:40:31 +00:00
|
|
|
width: min(460px, 100vw);
|
2023-01-14 12:04:30 +00:00
|
|
|
margin: auto;
|
2022-02-23 14:40:31 +00:00
|
|
|
padding: 24px;
|
2020-11-17 13:52:07 +00:00
|
|
|
box-sizing: border-box;
|
|
|
|
overflow: auto;
|
2022-02-23 14:40:31 +00:00
|
|
|
overscroll-behavior: contain;
|
|
|
|
text-align: left;
|
2020-11-17 13:52:07 +00:00
|
|
|
border-radius: 16px;
|
|
|
|
|
2022-02-23 14:40:31 +00:00
|
|
|
&.asDrawer {
|
|
|
|
width: 100%;
|
2023-01-10 04:50:34 +00:00
|
|
|
padding: 16px 16px max(env(safe-area-inset-bottom, 0px), 16px) 16px;
|
2022-02-23 14:40:31 +00:00
|
|
|
border-radius: 24px;
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
text-align: center;
|
2020-11-17 13:52:07 +00:00
|
|
|
}
|
2022-02-23 14:40:31 +00:00
|
|
|
|
2023-01-14 11:31:48 +00:00
|
|
|
> .main {
|
2022-02-23 14:40:31 +00:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
|
|
|
|
|
2023-01-14 11:31:48 +00:00
|
|
|
> .item {
|
2020-11-17 13:52:07 +00:00
|
|
|
position: relative;
|
2022-02-23 14:40:31 +00:00
|
|
|
display: flex;
|
2020-11-17 13:52:07 +00:00
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2021-04-25 03:31:11 +00:00
|
|
|
vertical-align: bottom;
|
2022-02-23 14:40:31 +00:00
|
|
|
height: 100px;
|
|
|
|
border-radius: 10px;
|
2020-11-17 13:52:07 +00:00
|
|
|
|
|
|
|
&:hover {
|
2022-02-23 14:40:31 +00:00
|
|
|
color: var(--accent);
|
|
|
|
background: var(--accentedBg);
|
2020-11-17 13:52:07 +00:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .icon {
|
2022-02-23 14:40:31 +00:00
|
|
|
font-size: 24px;
|
|
|
|
height: 24px;
|
2020-11-17 13:52:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
> .text {
|
2022-02-23 14:40:31 +00:00
|
|
|
margin-top: 12px;
|
|
|
|
font-size: 0.8em;
|
2020-11-17 13:52:07 +00:00
|
|
|
line-height: 1.5em;
|
|
|
|
}
|
|
|
|
|
2021-04-20 14:22:59 +00:00
|
|
|
> .indicator {
|
2020-11-17 13:52:07 +00:00
|
|
|
position: absolute;
|
|
|
|
top: 32px;
|
|
|
|
left: 32px;
|
|
|
|
color: var(--indicator);
|
|
|
|
font-size: 8px;
|
|
|
|
animation: blink 1s infinite;
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
top: 16px;
|
|
|
|
left: 16px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|