misskey/src/client/components/url-preview-popup.vue
2021-03-23 17:30:14 +09:00

61 lines
1.1 KiB
Vue

<template>
<div class="fgmtyycl" :style="{ top: top + 'px', left: left + 'px' }">
<transition name="zoom" @after-leave="$emit('closed')">
<MkUrlPreview class="_popup _shadow" :url="url" v-if="showing"/>
</transition>
</div>
</template>
<script lang="ts">
import { defineComponent } from 'vue';
import MkUrlPreview from './url-preview.vue';
import * as os from '@client/os';
export default defineComponent({
components: {
MkUrlPreview
},
props: {
url: {
type: String,
required: true
},
source: {
required: true
},
showing: {
type: Boolean,
required: true
},
},
data() {
return {
u: null,
top: 0,
left: 0,
};
},
mounted() {
const rect = this.source.getBoundingClientRect();
const x = Math.max((rect.left + (this.source.offsetWidth / 2)) - (300 / 2), 6) + window.pageXOffset;
const y = rect.top + this.source.offsetHeight + window.pageYOffset;
this.top = y;
this.left = x;
},
});
</script>
<style lang="scss" scoped>
.fgmtyycl {
position: absolute;
z-index: 11000;
width: 500px;
max-width: calc(90vw - 12px);
pointer-events: none;
}
</style>