2023-07-27 07:31:52 +02:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2019-04-29 02:11:57 +02:00
|
|
|
<template>
|
2023-05-12 04:46:13 +02: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 02:11:57 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-05-19 13:41:47 +02:00
|
|
|
<script lang="ts" setup>
|
2023-05-14 03:50:21 +02:00
|
|
|
import { } from 'vue';
|
|
|
|
import * as Misskey from 'misskey-js';
|
|
|
|
import { ImageBlock } from './block.type';
|
2022-08-30 17:24:33 +02:00
|
|
|
import ImgWithBlurhash from '@/components/MkImgWithBlurhash.vue';
|
2019-04-29 02:11:57 +02:00
|
|
|
|
2022-05-19 13:41:47 +02:00
|
|
|
const props = defineProps<{
|
2023-05-14 03:50:21 +02:00
|
|
|
block: ImageBlock,
|
|
|
|
page: Misskey.entities.Page,
|
2022-05-19 13:41:47 +02:00
|
|
|
}>();
|
2021-01-30 02:59:05 +01:00
|
|
|
|
2023-05-14 03:50:21 +02:00
|
|
|
const image = props.page.attachedFiles.find(x => x.id === props.block.fileId);
|
2019-04-29 02:11:57 +02:00
|
|
|
</script>
|