2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2019-04-29 00:11:57 +00:00
|
|
|
<template>
|
2023-05-12 02:46:13 +00:00
|
|
|
<div>
|
2023-09-10 09:40:20 +00:00
|
|
|
<MediaImage
|
|
|
|
v-if="image"
|
|
|
|
:image="image"
|
|
|
|
:disableImageLink="true"
|
|
|
|
/>
|
2019-04-29 00:11:57 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-05-19 11:41:47 +00:00
|
|
|
<script lang="ts" setup>
|
2023-09-10 09:40:20 +00:00
|
|
|
import { ref } from 'vue';
|
2023-05-14 01:50:21 +00:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-12-24 07:16:58 +00:00
|
|
|
import { ImageBlock } from './block.type.js';
|
2023-09-10 09:40:20 +00:00
|
|
|
import MediaImage from '@/components/MkMediaImage.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-09-10 09:40:20 +00:00
|
|
|
const image = ref<Misskey.entities.DriveFile>(props.page.attachedFiles.find(x => x.id === props.block.fileId));
|
2019-04-29 00:11:57 +00:00
|
|
|
</script>
|