2020-02-09 19:59:00 +02:00
|
|
|
<template>
|
2021-12-16 03:57:07 +02:00
|
|
|
<div class="fgmtyycl" :style="{ zIndex, top: top + 'px', left: left + 'px' }">
|
2022-12-30 06:52:40 +02:00
|
|
|
<Transition :name="$store.state.animation ? '_transition_zoom' : ''" @after-leave="emit('closed')">
|
2021-11-19 12:36:12 +02:00
|
|
|
<MkUrlPreview v-if="showing" class="_popup _shadow" :url="url"/>
|
2022-12-30 06:37:14 +02:00
|
|
|
</Transition>
|
2020-02-09 19:59:00 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-09-05 12:37:41 +03:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { onMounted } from 'vue';
|
2022-08-30 18:24:33 +03:00
|
|
|
import MkUrlPreview from '@/components/MkUrlPreview.vue';
|
2021-11-11 19:02:25 +02:00
|
|
|
import * as os from '@/os';
|
2020-02-09 19:59:00 +02:00
|
|
|
|
2022-09-05 12:37:41 +03:00
|
|
|
const props = defineProps<{
|
|
|
|
showing: boolean;
|
|
|
|
url: string;
|
|
|
|
source: HTMLElement;
|
|
|
|
}>();
|
2020-02-09 19:59:00 +02:00
|
|
|
|
2022-09-05 12:37:41 +03:00
|
|
|
const emit = defineEmits<{
|
|
|
|
(ev: 'closed'): void;
|
|
|
|
}>();
|
2020-02-09 19:59:00 +02:00
|
|
|
|
2022-09-05 12:37:41 +03:00
|
|
|
const zIndex = os.claimZIndex('middle');
|
|
|
|
let top = $ref(0);
|
|
|
|
let left = $ref(0);
|
2020-02-09 19:59:00 +02:00
|
|
|
|
2022-09-05 12:37:41 +03:00
|
|
|
onMounted(() => {
|
|
|
|
const rect = props.source.getBoundingClientRect();
|
|
|
|
const x = Math.max((rect.left + (props.source.offsetWidth / 2)) - (300 / 2), 6) + window.pageXOffset;
|
|
|
|
const y = rect.top + props.source.offsetHeight + window.pageYOffset;
|
2020-02-09 19:59:00 +02:00
|
|
|
|
2022-09-05 12:37:41 +03:00
|
|
|
top = y;
|
|
|
|
left = x;
|
2020-02-09 19:59:00 +02:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2022-12-27 11:29:39 +02:00
|
|
|
<style lang="scss" scoped>
|
2020-02-09 19:59:00 +02:00
|
|
|
.fgmtyycl {
|
|
|
|
position: absolute;
|
2020-02-09 20:13:24 +02:00
|
|
|
width: 500px;
|
2020-04-13 18:00:52 +03:00
|
|
|
max-width: calc(90vw - 12px);
|
2020-02-09 20:13:24 +02:00
|
|
|
pointer-events: none;
|
2020-02-09 19:59:00 +02:00
|
|
|
}
|
|
|
|
</style>
|