38d0b62167
* build(#10336): init
* fix(#10336): invalid name conversion
* build(#10336): load locales and vite config
* refactor(#10336): remove unused imports
* build(#10336): separate definitions and generated codes
* refactor(#10336): remove hatches
* refactor(#10336): module semantics
* refactor(#10336): remove unused common preferences
* fix: typo
* build(#10336): mock assets
* build(#10336): impl `SatisfiesExpression`
* build(#10336): control themes
* refactor(#10336): semantics
* build(#10336): make .storybook as an individual TypeScript project
* style(#10336): use single quote
* build(#10336): avoid intrinsic component names
* chore: suppress linter
* style: typing
* build(#10336): update dependencies
* docs: note about Storybook
* build(#10336): sync
* build(#10336): full reload server on change
* chore: use defaultStore instead
* build(#10336): show popups on Story
* refactor(#10336): remove redundant div
* docs: fix
* build(#10336): interactions
* build(#10336): add an interaction test for `<MkA/>`
* build(#10336): bump storybook
* docs(#10336): mention to pre-build misskey-js
* build(#10336): write stories for `MkAcct`
* build(#10336): write stories for `MkAd`
* build(#10336): fix missing type definition
* build(#10336): use `toHaveTextContent`
* build(#10336): write some stories
* build(#10336): hide internal args
* build(#10336): generate `components/global` stories only
* build(#10336): write stories for `MkMisskeyFlavoredMarkdown`
* fix: conflict errors
* build(#10336): subcomponents on sidebar
* refactor: restore `SatisfiesExpression`
* docs(#10336): note development status
* build(#10336): use chokidar-cli
* docs(#10336): note chokidar-cli mode
* chore(#10336): untrack generated stories files
* fix: pointer handling
* build(#10336): finalize
* chore: add static option to `MkLoading`
* refactor(#10336): bind to local args
* fix: missing case
* revert: restore `SatisfiesExpression`
This reverts commit f246699f38
.
* build(#10336): make storybook buildable
* build(#10336): staticify assets
* build(#10336): staticified directory structure
* build(#10336): normalize path for Windows
* ci(#10336): create actions
* build(#10336): ignore tsc errors
* build(#10336): ignore tsc errors
* build(#10336): missing dependencies
* build(#10336): missing dependencies
* build(#10336): use fast-glob
* fix: invalid lockfile
* ci(#10336): increase heap size
* build(#10336): use unpkg for storybook tabler icons
* build(#10336): use unpkg for storybook twemojis
* build(#10336): disable `ProfilePageCat`
* build(#10336): blur `MkA` before interaction ends
* ci(#10336): stabilize
* ci(#10336): fetch-depth
* build(#10336): isChromatic
* ci(#10336): notify on changes
* ci(#10336): fix typo
* ci(#10336): missing working directory
* ci(#10336): skip build
* ci(#10336): fix path
* build(#10336): fails on Windows
* build(#10336): available on Windows
* ci(#10336): disable animation on chromatic
* ci(#10336): add static option to `PageHeader.tabs`
* chore: void
* ci(#10336): change parameters
* docs(#10336): update CONTRIBUTING
* docs(#10336): note about meta overriding and etc.
* ci(#10336): use Chromatic for checks
* ci(#10336): use `pull_request` instead of `pull_request_target` for now
* ci(#10336): use `exitOnceUploaded`
* ci(#10336): reuse built storybook
* ci(#10336): back to `pull_request_target`
* chore: unused dependencies
* style(#10336): reduce prettier indents
* style: note about `TSSatisfiesExpression`
382 lines
9.5 KiB
Vue
382 lines
9.5 KiB
Vue
<template>
|
|
<div role="menu">
|
|
<div
|
|
ref="itemsEl" v-hotkey="keymap"
|
|
class="_popup _shadow"
|
|
:class="[$style.root, { [$style.center]: align === 'center', [$style.asDrawer]: asDrawer }]"
|
|
:style="{ width: (width && !asDrawer) ? width + 'px' : '', maxHeight: maxHeight ? maxHeight + 'px' : '' }"
|
|
@contextmenu.self="e => e.preventDefault()"
|
|
>
|
|
<template v-for="(item, i) in items2">
|
|
<div v-if="item === null" role="separator" :class="$style.divider"></div>
|
|
<span v-else-if="item.type === 'label'" role="menuitem" :class="[$style.label, $style.item]">
|
|
<span>{{ item.text }}</span>
|
|
</span>
|
|
<span v-else-if="item.type === 'pending'" role="menuitem" :tabindex="i" :class="[$style.pending, $style.item]">
|
|
<span><MkEllipsis/></span>
|
|
</span>
|
|
<MkA v-else-if="item.type === 'link'" role="menuitem" :to="item.to" :tabindex="i" class="_button" :class="$style.item" @click.passive="close(true)" @mouseenter.passive="onItemMouseEnter(item)" @mouseleave.passive="onItemMouseLeave(item)">
|
|
<i v-if="item.icon" class="ti-fw" :class="[$style.icon, item.icon]"></i>
|
|
<MkAvatar v-if="item.avatar" :user="item.avatar" :class="$style.avatar"/>
|
|
<span>{{ item.text }}</span>
|
|
<span v-if="item.indicate" :class="$style.indicator"><i class="_indicatorCircle"></i></span>
|
|
</MkA>
|
|
<a v-else-if="item.type === 'a'" role="menuitem" :href="item.href" :target="item.target" :download="item.download" :tabindex="i" class="_button" :class="$style.item" @click="close(true)" @mouseenter.passive="onItemMouseEnter(item)" @mouseleave.passive="onItemMouseLeave(item)">
|
|
<i v-if="item.icon" class="ti-fw" :class="[$style.icon, item.icon]"></i>
|
|
<span>{{ item.text }}</span>
|
|
<span v-if="item.indicate" :class="$style.indicator"><i class="_indicatorCircle"></i></span>
|
|
</a>
|
|
<button v-else-if="item.type === 'user'" role="menuitem" :tabindex="i" class="_button" :class="[$style.item, { [$style.active]: item.active }]" :disabled="item.active" @click="clicked(item.action, $event)" @mouseenter.passive="onItemMouseEnter(item)" @mouseleave.passive="onItemMouseLeave(item)">
|
|
<MkAvatar :user="item.user" :class="$style.avatar"/><MkUserName :user="item.user"/>
|
|
<span v-if="item.indicate" :class="$style.indicator"><i class="_indicatorCircle"></i></span>
|
|
</button>
|
|
<span v-else-if="item.type === 'switch'" role="menuitemcheckbox" :tabindex="i" :class="$style.item" @mouseenter.passive="onItemMouseEnter(item)" @mouseleave.passive="onItemMouseLeave(item)">
|
|
<MkSwitch v-model="item.ref" :disabled="item.disabled" class="form-switch">{{ item.text }}</MkSwitch>
|
|
</span>
|
|
<button v-else-if="item.type === 'parent'" role="menuitem" :tabindex="i" class="_button" :class="[$style.item, $style.parent, { [$style.childShowing]: childShowingItem === item }]" @mouseenter="showChildren(item, $event)">
|
|
<i v-if="item.icon" class="ti-fw" :class="[$style.icon, item.icon]"></i>
|
|
<span>{{ item.text }}</span>
|
|
<span :class="$style.caret"><i class="ti ti-chevron-right ti-fw"></i></span>
|
|
</button>
|
|
<button v-else :tabindex="i" class="_button" role="menuitem" :class="[$style.item, { [$style.danger]: item.danger, [$style.active]: item.active }]" :disabled="item.active" @click="clicked(item.action, $event)" @mouseenter.passive="onItemMouseEnter(item)" @mouseleave.passive="onItemMouseLeave(item)">
|
|
<i v-if="item.icon" class="ti-fw" :class="[$style.icon, item.icon]"></i>
|
|
<MkAvatar v-if="item.avatar" :user="item.avatar" :class="$style.avatar"/>
|
|
<span>{{ item.text }}</span>
|
|
<span v-if="item.indicate" :class="$style.indicator"><i class="_indicatorCircle"></i></span>
|
|
</button>
|
|
</template>
|
|
<span v-if="items2.length === 0" :class="[$style.none, $style.item]">
|
|
<span>{{ i18n.ts.none }}</span>
|
|
</span>
|
|
</div>
|
|
<div v-if="childMenu" :class="$style.child">
|
|
<XChild ref="child" :items="childMenu" :target-element="childTarget" :root-element="itemsEl" showing @actioned="childActioned"/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { defineAsyncComponent, nextTick, onBeforeUnmount, onMounted, ref, watch } from 'vue';
|
|
import { focusPrev, focusNext } from '@/scripts/focus';
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
|
import { MenuItem, InnerMenuItem, MenuPending, MenuAction } from '@/types/menu';
|
|
import * as os from '@/os';
|
|
import { i18n } from '@/i18n';
|
|
|
|
const XChild = defineAsyncComponent(() => import('./MkMenu.child.vue'));
|
|
|
|
const props = defineProps<{
|
|
items: MenuItem[];
|
|
viaKeyboard?: boolean;
|
|
asDrawer?: boolean;
|
|
align?: 'center' | string;
|
|
width?: number;
|
|
maxHeight?: number;
|
|
}>();
|
|
|
|
const emit = defineEmits<{
|
|
(ev: 'close', actioned?: boolean): void;
|
|
}>();
|
|
|
|
let itemsEl = $shallowRef<HTMLDivElement>();
|
|
|
|
let items2: InnerMenuItem[] = $ref([]);
|
|
|
|
let child = $shallowRef<InstanceType<typeof XChild>>();
|
|
|
|
let keymap = $computed(() => ({
|
|
'up|k|shift+tab': focusUp,
|
|
'down|j|tab': focusDown,
|
|
'esc': close,
|
|
}));
|
|
|
|
let childShowingItem = $ref<MenuItem | null>();
|
|
|
|
watch(() => props.items, () => {
|
|
const items: (MenuItem | MenuPending)[] = [...props.items].filter(item => item !== undefined);
|
|
|
|
for (let i = 0; i < items.length; i++) {
|
|
const item = items[i];
|
|
|
|
if (item && 'then' in item) { // if item is Promise
|
|
items[i] = { type: 'pending' };
|
|
item.then(actualItem => {
|
|
items2[i] = actualItem;
|
|
});
|
|
}
|
|
}
|
|
|
|
items2 = items as InnerMenuItem[];
|
|
}, {
|
|
immediate: true,
|
|
});
|
|
|
|
let childMenu = ref<MenuItem[] | null>();
|
|
let childTarget = $shallowRef<HTMLElement | null>();
|
|
|
|
function closeChild() {
|
|
childMenu.value = null;
|
|
childShowingItem = null;
|
|
}
|
|
|
|
function childActioned() {
|
|
closeChild();
|
|
close(true);
|
|
}
|
|
|
|
function onGlobalMousedown(event: MouseEvent) {
|
|
if (childTarget && (event.target === childTarget || childTarget.contains(event.target))) return;
|
|
if (child && child.checkHit(event)) return;
|
|
closeChild();
|
|
}
|
|
|
|
let childCloseTimer: null | number = null;
|
|
function onItemMouseEnter(item) {
|
|
childCloseTimer = window.setTimeout(() => {
|
|
closeChild();
|
|
}, 300);
|
|
}
|
|
function onItemMouseLeave(item) {
|
|
if (childCloseTimer) window.clearTimeout(childCloseTimer);
|
|
}
|
|
|
|
let childrenCache = new WeakMap();
|
|
async function showChildren(item: MenuItem, ev: MouseEvent) {
|
|
const children = ref([]);
|
|
if (childrenCache.has(item)) {
|
|
children.value = childrenCache.get(item);
|
|
} else {
|
|
if (typeof item.children === 'function') {
|
|
children.value = [{
|
|
type: 'pending',
|
|
}];
|
|
item.children().then(x => {
|
|
children.value = x;
|
|
childrenCache.set(item, x);
|
|
});
|
|
} else {
|
|
children.value = item.children;
|
|
}
|
|
}
|
|
|
|
if (props.asDrawer) {
|
|
os.popupMenu(children, ev.currentTarget ?? ev.target);
|
|
close();
|
|
} else {
|
|
childTarget = ev.currentTarget ?? ev.target;
|
|
childMenu = children;
|
|
childShowingItem = item;
|
|
}
|
|
}
|
|
|
|
function clicked(fn: MenuAction, ev: MouseEvent) {
|
|
fn(ev);
|
|
close(true);
|
|
}
|
|
|
|
function close(actioned = false) {
|
|
emit('close', actioned);
|
|
}
|
|
|
|
function focusUp() {
|
|
focusPrev(document.activeElement);
|
|
}
|
|
|
|
function focusDown() {
|
|
focusNext(document.activeElement);
|
|
}
|
|
|
|
onMounted(() => {
|
|
if (props.viaKeyboard) {
|
|
nextTick(() => {
|
|
focusNext(itemsEl.children[0], true, false);
|
|
});
|
|
}
|
|
|
|
// TODO: アクティブな要素までスクロール
|
|
//itemsEl.scrollTo();
|
|
|
|
document.addEventListener('mousedown', onGlobalMousedown, { passive: true });
|
|
});
|
|
|
|
onBeforeUnmount(() => {
|
|
document.removeEventListener('mousedown', onGlobalMousedown);
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
.root {
|
|
padding: 8px 0;
|
|
box-sizing: border-box;
|
|
min-width: 200px;
|
|
overflow: auto;
|
|
overscroll-behavior: contain;
|
|
|
|
&.center {
|
|
> .item {
|
|
text-align: center;
|
|
}
|
|
}
|
|
|
|
&.asDrawer {
|
|
padding: 12px 0 max(env(safe-area-inset-bottom, 0px), 12px) 0;
|
|
width: 100%;
|
|
border-radius: 24px;
|
|
border-bottom-right-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
|
|
> .item {
|
|
font-size: 1em;
|
|
padding: 12px 24px;
|
|
|
|
&:before {
|
|
width: calc(100% - 24px);
|
|
border-radius: 12px;
|
|
}
|
|
|
|
> .icon {
|
|
margin-right: 14px;
|
|
width: 24px;
|
|
}
|
|
}
|
|
|
|
> .divider {
|
|
margin: 12px 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.item {
|
|
display: block;
|
|
position: relative;
|
|
padding: 5px 16px;
|
|
width: 100%;
|
|
box-sizing: border-box;
|
|
white-space: nowrap;
|
|
font-size: 0.9em;
|
|
line-height: 20px;
|
|
text-align: left;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
|
|
&:before {
|
|
content: "";
|
|
display: block;
|
|
position: absolute;
|
|
z-index: -1;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
margin: auto;
|
|
width: calc(100% - 16px);
|
|
height: 100%;
|
|
border-radius: 6px;
|
|
}
|
|
|
|
&:not(:disabled):hover {
|
|
color: var(--accent);
|
|
text-decoration: none;
|
|
|
|
&:before {
|
|
background: var(--accentedBg);
|
|
}
|
|
}
|
|
|
|
&.danger {
|
|
color: #ff2a2a;
|
|
|
|
&:hover {
|
|
color: #fff;
|
|
|
|
&:before {
|
|
background: #ff4242;
|
|
}
|
|
}
|
|
|
|
&:active {
|
|
color: #fff;
|
|
|
|
&:before {
|
|
background: #d42e2e !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
&:active,
|
|
&.active {
|
|
color: var(--fgOnAccent) !important;
|
|
opacity: 1;
|
|
|
|
&:before {
|
|
background: var(--accent) !important;
|
|
}
|
|
}
|
|
|
|
&:not(:active):focus-visible {
|
|
box-shadow: 0 0 0 2px var(--focus) inset;
|
|
}
|
|
|
|
&.label {
|
|
pointer-events: none;
|
|
font-size: 0.7em;
|
|
padding-bottom: 4px;
|
|
|
|
> span {
|
|
opacity: 0.7;
|
|
}
|
|
}
|
|
|
|
&.pending {
|
|
pointer-events: none;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
&.none {
|
|
pointer-events: none;
|
|
opacity: 0.7;
|
|
}
|
|
|
|
&.parent {
|
|
display: flex;
|
|
align-items: center;
|
|
cursor: default;
|
|
|
|
&.childShowing {
|
|
color: var(--accent);
|
|
text-decoration: none;
|
|
|
|
&:before {
|
|
background: var(--accentedBg);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.icon {
|
|
margin-right: 8px;
|
|
}
|
|
|
|
.caret {
|
|
margin-left: auto;
|
|
}
|
|
|
|
.avatar {
|
|
margin-right: 5px;
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
|
|
.indicator {
|
|
position: absolute;
|
|
top: 5px;
|
|
left: 13px;
|
|
color: var(--indicator);
|
|
font-size: 12px;
|
|
animation: blink 1s infinite;
|
|
}
|
|
|
|
.divider {
|
|
margin: 8px 0;
|
|
border-top: solid 0.5px var(--divider);
|
|
}
|
|
</style>
|