2019-04-29 00:11:57 +00:00
|
|
|
<template>
|
2023-05-12 02:46:13 +00:00
|
|
|
<div>
|
|
|
|
<ImgWithBlurhash v-if="image" style="max-width: 100%;" :hash="image.blurhash" :src="image.url" :alt="image.comment" :title="image.comment" :width="image.properties.width" :height="image.properties.height" :cover="false"/>
|
2019-04-29 00:11:57 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-05-19 11:41:47 +00:00
|
|
|
<script lang="ts" setup>
|
2023-05-14 01:50:21 +00:00
|
|
|
import { } from 'vue';
|
|
|
|
import * as Misskey from 'misskey-js';
|
|
|
|
import { ImageBlock } from './block.type';
|
2022-08-30 15:24:33 +00:00
|
|
|
import ImgWithBlurhash from '@/components/MkImgWithBlurhash.vue';
|
2019-04-29 00:11:57 +00:00
|
|
|
|
2022-05-19 11:41:47 +00:00
|
|
|
const props = defineProps<{
|
2023-05-14 01:50:21 +00:00
|
|
|
block: ImageBlock,
|
|
|
|
page: Misskey.entities.Page,
|
2022-05-19 11:41:47 +00:00
|
|
|
}>();
|
2021-01-30 01:59:05 +00:00
|
|
|
|
2023-05-14 01:50:21 +00:00
|
|
|
const image = props.page.attachedFiles.find(x => x.id === props.block.fileId);
|
2019-04-29 00:11:57 +00:00
|
|
|
</script>
|