2023-07-27 07:31:52 +02:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-06-03 06:30:17 +02:00
|
|
|
<template>
|
2023-01-10 06:20:58 +01:00
|
|
|
<Transition
|
2023-05-19 06:58:09 +02:00
|
|
|
:enterActiveClass="defaultStore.state.animation ? $style.transition_tooltip_enterActive : ''"
|
|
|
|
:leaveActiveClass="defaultStore.state.animation ? $style.transition_tooltip_leaveActive : ''"
|
|
|
|
:enterFromClass="defaultStore.state.animation ? $style.transition_tooltip_enterFrom : ''"
|
|
|
|
:leaveToClass="defaultStore.state.animation ? $style.transition_tooltip_leaveTo : ''"
|
|
|
|
appear @afterLeave="emit('closed')"
|
2023-01-10 06:20:58 +01:00
|
|
|
>
|
|
|
|
<div v-show="showing" ref="el" :class="$style.root" class="_acrylic _shadow" :style="{ zIndex, maxWidth: maxWidth + 'px' }">
|
2022-06-16 09:05:43 +02:00
|
|
|
<slot>
|
|
|
|
<Mfm v-if="asMfm" :text="text"/>
|
|
|
|
<span v-else>{{ text }}</span>
|
|
|
|
</slot>
|
2020-06-03 06:30:17 +02:00
|
|
|
</div>
|
2022-12-30 05:37:14 +01:00
|
|
|
</Transition>
|
2020-06-03 06:30:17 +02:00
|
|
|
</template>
|
|
|
|
|
2022-01-28 19:03:23 +01:00
|
|
|
<script lang="ts" setup>
|
2023-02-16 15:09:41 +01:00
|
|
|
import { nextTick, onMounted, onUnmounted, shallowRef } from 'vue';
|
2021-12-10 10:20:41 +01:00
|
|
|
import * as os from '@/os';
|
2022-07-17 14:06:33 +02:00
|
|
|
import { calcPopupPosition } from '@/scripts/popup-position';
|
2023-04-01 06:42:40 +02:00
|
|
|
import { defaultStore } from '@/store';
|
2020-06-03 06:30:17 +02:00
|
|
|
|
2022-01-28 19:03:23 +01:00
|
|
|
const props = withDefaults(defineProps<{
|
|
|
|
showing: boolean;
|
2022-01-31 13:07:33 +01:00
|
|
|
targetElement?: HTMLElement;
|
|
|
|
x?: number;
|
|
|
|
y?: number;
|
2022-01-28 19:03:23 +01:00
|
|
|
text?: string;
|
2022-06-16 09:05:43 +02:00
|
|
|
asMfm?: boolean;
|
2022-01-31 13:07:33 +01:00
|
|
|
maxWidth?: number;
|
2022-02-08 07:37:31 +01:00
|
|
|
direction?: 'top' | 'bottom' | 'right' | 'left';
|
|
|
|
innerMargin?: number;
|
2022-01-28 19:03:23 +01:00
|
|
|
}>(), {
|
|
|
|
maxWidth: 250,
|
2022-02-08 07:37:31 +01:00
|
|
|
direction: 'top',
|
|
|
|
innerMargin: 0,
|
2022-01-28 19:03:23 +01:00
|
|
|
});
|
2021-11-28 12:07:37 +01:00
|
|
|
|
2022-01-28 19:03:23 +01:00
|
|
|
const emit = defineEmits<{
|
|
|
|
(ev: 'closed'): void;
|
|
|
|
}>();
|
2021-11-28 12:07:37 +01:00
|
|
|
|
2023-05-15 07:29:35 +02:00
|
|
|
// タイミングによっては最初から showing = false な場合があり、その場合に closed 扱いにしないと永久にDOMに残ることになる
|
|
|
|
if (!props.showing) emit('closed');
|
|
|
|
|
2023-01-03 02:12:37 +01:00
|
|
|
const el = shallowRef<HTMLElement>();
|
2022-01-28 19:03:23 +01:00
|
|
|
const zIndex = os.claimZIndex('high');
|
2021-11-28 12:07:37 +01:00
|
|
|
|
2022-07-17 14:06:33 +02:00
|
|
|
function setPosition() {
|
|
|
|
const data = calcPopupPosition(el.value, {
|
|
|
|
anchorElement: props.targetElement,
|
|
|
|
direction: props.direction,
|
|
|
|
align: 'center',
|
|
|
|
innerMargin: props.innerMargin,
|
|
|
|
x: props.x,
|
|
|
|
y: props.y,
|
|
|
|
});
|
2022-01-28 19:03:23 +01:00
|
|
|
|
2022-07-17 14:06:33 +02:00
|
|
|
el.value.style.transformOrigin = data.transformOrigin;
|
|
|
|
el.value.style.left = data.left + 'px';
|
|
|
|
el.value.style.top = data.top + 'px';
|
|
|
|
}
|
2021-11-28 12:07:37 +01:00
|
|
|
|
2022-02-12 09:29:15 +01:00
|
|
|
let loopHandler;
|
|
|
|
|
2022-01-28 19:03:23 +01:00
|
|
|
onMounted(() => {
|
|
|
|
nextTick(() => {
|
|
|
|
setPosition();
|
|
|
|
|
|
|
|
const loop = () => {
|
2023-05-15 06:57:36 +02:00
|
|
|
setPosition();
|
|
|
|
loopHandler = window.requestAnimationFrame(loop);
|
2021-11-28 12:07:37 +01:00
|
|
|
};
|
2022-01-28 19:03:23 +01:00
|
|
|
|
|
|
|
loop();
|
|
|
|
});
|
|
|
|
});
|
2022-02-12 09:29:15 +01:00
|
|
|
|
|
|
|
onUnmounted(() => {
|
|
|
|
window.cancelAnimationFrame(loopHandler);
|
|
|
|
});
|
2020-06-03 06:30:17 +02:00
|
|
|
</script>
|
|
|
|
|
2023-01-10 06:20:58 +01:00
|
|
|
<style lang="scss" module>
|
|
|
|
.transition_tooltip_enterActive,
|
|
|
|
.transition_tooltip_leaveActive {
|
2021-02-16 14:17:13 +01:00
|
|
|
opacity: 1;
|
|
|
|
transform: scale(1);
|
|
|
|
transition: transform 200ms cubic-bezier(0.23, 1, 0.32, 1), opacity 200ms cubic-bezier(0.23, 1, 0.32, 1);
|
|
|
|
}
|
2023-01-10 06:20:58 +01:00
|
|
|
.transition_tooltip_enterFrom,
|
|
|
|
.transition_tooltip_leaveTo {
|
2021-02-16 14:17:13 +01:00
|
|
|
opacity: 0;
|
|
|
|
transform: scale(0.75);
|
|
|
|
}
|
|
|
|
|
2023-01-10 06:20:58 +01:00
|
|
|
.root {
|
2020-06-03 06:30:17 +02:00
|
|
|
position: absolute;
|
|
|
|
font-size: 0.8em;
|
2020-10-17 13:12:00 +02:00
|
|
|
padding: 8px 12px;
|
2021-10-24 07:39:24 +02:00
|
|
|
box-sizing: border-box;
|
2020-06-03 06:30:17 +02:00
|
|
|
text-align: center;
|
|
|
|
border-radius: 4px;
|
2021-10-24 07:39:24 +02:00
|
|
|
border: solid 0.5px var(--divider);
|
2020-06-03 06:30:17 +02:00
|
|
|
pointer-events: none;
|
2022-01-31 13:07:33 +01:00
|
|
|
transform-origin: center center;
|
2020-06-03 06:30:17 +02:00
|
|
|
}
|
|
|
|
</style>
|