2020-11-17 07:52:07 -06:00
|
|
|
<template>
|
2022-03-06 08:21:19 -06:00
|
|
|
<MkModal ref="modal" v-slot="{ type, maxHeight }" :prefer-type="preferedModalType" :anchor="{ x: 'right', y: 'center' }" :transparent-bg="true" :src="src" @click="modal.close()" @closed="emit('closed')">
|
2022-02-23 08:40:31 -06:00
|
|
|
<div class="szkkfdyq _popup _shadow" :class="{ asDrawer: type === 'drawer' }" :style="{ maxHeight: maxHeight ? maxHeight + 'px' : '' }">
|
2020-11-17 07:52:07 -06:00
|
|
|
<div class="main">
|
|
|
|
<template v-for="item in items">
|
2021-11-19 04:36:12 -06:00
|
|
|
<button v-if="item.action" v-click-anime class="_button" @click="$event => { item.action($event); close(); }">
|
2021-04-20 09:22:59 -05:00
|
|
|
<i class="icon" :class="item.icon"></i>
|
2020-11-17 07:52:07 -06:00
|
|
|
<div class="text">{{ item.text }}</div>
|
2021-04-20 09:22:59 -05:00
|
|
|
<span v-if="item.indicate" class="indicator"><i class="fas fa-circle"></i></span>
|
2020-11-17 07:52:07 -06:00
|
|
|
</button>
|
2021-11-19 04:36:12 -06:00
|
|
|
<MkA v-else v-click-anime :to="item.to" @click.passive="close()">
|
2021-04-20 09:22:59 -05:00
|
|
|
<i class="icon" :class="item.icon"></i>
|
2020-11-17 07:52:07 -06:00
|
|
|
<div class="text">{{ item.text }}</div>
|
2021-04-20 09:22:59 -05:00
|
|
|
<span v-if="item.indicate" class="indicator"><i class="fas fa-circle"></i></span>
|
2020-11-17 07:52:07 -06:00
|
|
|
</MkA>
|
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
<div class="sub">
|
2021-11-19 04:36:12 -06:00
|
|
|
<a v-click-anime href="https://misskey-hub.net/help.html" target="_blank" @click.passive="close()">
|
2021-04-20 09:22:59 -05:00
|
|
|
<i class="fas fa-question-circle icon"></i>
|
2020-12-25 19:47:36 -06:00
|
|
|
<div class="text">{{ $ts.help }}</div>
|
2021-11-05 02:18:52 -05:00
|
|
|
</a>
|
2021-11-19 04:36:12 -06:00
|
|
|
<MkA v-click-anime to="/about" @click.passive="close()">
|
2021-04-20 09:22:59 -05:00
|
|
|
<i class="fas fa-info-circle icon"></i>
|
2020-11-17 07:52:07 -06:00
|
|
|
<div class="text">{{ $t('aboutX', { x: instanceName }) }}</div>
|
|
|
|
</MkA>
|
2021-11-19 04:36:12 -06:00
|
|
|
<MkA v-click-anime to="/about-misskey" @click.passive="close()">
|
2021-04-24 22:31:11 -05:00
|
|
|
<img src="/static-assets/favicon.png" class="icon"/>
|
2020-12-25 19:47:36 -06:00
|
|
|
<div class="text">{{ $ts.aboutMisskey }}</div>
|
2020-11-17 07:52:07 -06:00
|
|
|
</MkA>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</MkModal>
|
|
|
|
</template>
|
|
|
|
|
2022-02-23 08:40:31 -06:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2021-11-11 11:02:25 -06:00
|
|
|
import MkModal from '@/components/ui/modal.vue';
|
|
|
|
import { menuDef } from '@/menu';
|
|
|
|
import { instanceName } from '@/config';
|
2022-02-23 08:40:31 -06:00
|
|
|
import { defaultStore } from '@/store';
|
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
import { deviceKind } from '@/scripts/device-kind';
|
2020-11-17 07:52:07 -06:00
|
|
|
|
2022-02-23 08:40:31 -06:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
src?: HTMLElement;
|
|
|
|
}>(), {
|
2020-11-17 07:52:07 -06:00
|
|
|
});
|
2022-02-23 08:40:31 -06:00
|
|
|
|
|
|
|
const emit = defineEmits<{
|
|
|
|
(ev: 'closed'): void;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const preferedModalType = (deviceKind === 'desktop' && props.src != null) ? 'popup' :
|
|
|
|
deviceKind === 'smartphone' ? 'drawer' :
|
|
|
|
'dialog';
|
|
|
|
|
|
|
|
const modal = $ref<InstanceType<typeof MkModal>>();
|
|
|
|
|
|
|
|
const menu = defaultStore.state.menu;
|
|
|
|
|
|
|
|
const items = Object.keys(menuDef).filter(k => !menu.includes(k)).map(k => menuDef[k]).filter(def => def.show == null ? true : def.show).map(def => ({
|
|
|
|
type: def.to ? 'link' : 'button',
|
|
|
|
text: i18n.ts[def.title],
|
|
|
|
icon: def.icon,
|
|
|
|
to: def.to,
|
|
|
|
action: def.action,
|
|
|
|
indicate: def.indicated,
|
|
|
|
}));
|
|
|
|
|
|
|
|
function close() {
|
|
|
|
modal.close();
|
|
|
|
}
|
2020-11-17 07:52:07 -06:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.szkkfdyq {
|
|
|
|
max-height: 100%;
|
2022-02-23 08:40:31 -06:00
|
|
|
width: min(460px, 100vw);
|
|
|
|
padding: 24px;
|
2020-11-17 07:52:07 -06:00
|
|
|
box-sizing: border-box;
|
|
|
|
overflow: auto;
|
2022-02-23 08:40:31 -06:00
|
|
|
overscroll-behavior: contain;
|
|
|
|
text-align: left;
|
2020-11-17 07:52:07 -06:00
|
|
|
border-radius: 16px;
|
|
|
|
|
2022-02-23 08:40:31 -06:00
|
|
|
&.asDrawer {
|
|
|
|
width: 100%;
|
|
|
|
padding: 16px 16px calc(env(safe-area-inset-bottom, 0px) + 16px) 16px;
|
|
|
|
border-radius: 24px;
|
|
|
|
border-bottom-right-radius: 0;
|
|
|
|
border-bottom-left-radius: 0;
|
|
|
|
text-align: center;
|
2020-11-17 07:52:07 -06:00
|
|
|
}
|
2022-02-23 08:40:31 -06:00
|
|
|
|
2020-11-17 07:52:07 -06:00
|
|
|
> .main, > .sub {
|
2022-02-23 08:40:31 -06:00
|
|
|
display: grid;
|
|
|
|
grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
|
|
|
|
|
2020-11-17 07:52:07 -06:00
|
|
|
> * {
|
|
|
|
position: relative;
|
2022-02-23 08:40:31 -06:00
|
|
|
display: flex;
|
2020-11-17 07:52:07 -06:00
|
|
|
flex-direction: column;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2021-04-24 22:31:11 -05:00
|
|
|
vertical-align: bottom;
|
2022-02-23 08:40:31 -06:00
|
|
|
height: 100px;
|
|
|
|
border-radius: 10px;
|
2020-11-17 07:52:07 -06:00
|
|
|
|
|
|
|
&:hover {
|
2022-02-23 08:40:31 -06:00
|
|
|
color: var(--accent);
|
|
|
|
background: var(--accentedBg);
|
2020-11-17 07:52:07 -06:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
> .icon {
|
2022-02-23 08:40:31 -06:00
|
|
|
font-size: 24px;
|
|
|
|
height: 24px;
|
2020-11-17 07:52:07 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
> .text {
|
2022-02-23 08:40:31 -06:00
|
|
|
margin-top: 12px;
|
|
|
|
font-size: 0.8em;
|
2020-11-17 07:52:07 -06:00
|
|
|
line-height: 1.5em;
|
|
|
|
}
|
|
|
|
|
2021-04-20 09:22:59 -05:00
|
|
|
> .indicator {
|
2020-11-17 07:52:07 -06: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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .sub {
|
|
|
|
margin-top: 8px;
|
|
|
|
padding-top: 8px;
|
2021-04-09 22:40:50 -05:00
|
|
|
border-top: solid 0.5px var(--divider);
|
2020-11-17 07:52:07 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|