2019-04-29 02:11:57 +02:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<div class="lzyxtsnt">
|
|
|
|
<ImgWithBlurhash
|
|
|
|
v-if="image"
|
|
|
|
:hash="image.blurhash"
|
|
|
|
:src="image.url"
|
|
|
|
:alt="image.comment"
|
|
|
|
:title="image.comment"
|
|
|
|
:cover="false"
|
|
|
|
/>
|
|
|
|
</div>
|
2019-04-29 02:11:57 +02:00
|
|
|
</template>
|
|
|
|
|
2022-05-19 13:41:47 +02:00
|
|
|
<script lang="ts" setup>
|
2023-04-08 02:01:42 +02:00
|
|
|
import { defineComponent, PropType } from "vue";
|
|
|
|
import ImgWithBlurhash from "@/components/MkImgWithBlurhash.vue";
|
|
|
|
import * as os from "@/os";
|
|
|
|
import { ImageBlock } from "@/scripts/hpml/block";
|
|
|
|
import { Hpml } from "@/scripts/hpml/evaluator";
|
2019-04-29 02:11:57 +02:00
|
|
|
|
2022-05-19 13:41:47 +02:00
|
|
|
const props = defineProps<{
|
2023-04-08 02:01:42 +02:00
|
|
|
block: PropType<ImageBlock>;
|
|
|
|
hpml: PropType<Hpml>;
|
2022-05-19 13:41:47 +02:00
|
|
|
}>();
|
2021-01-30 02:59:05 +01:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
const image = props.hpml.page.attachedFiles.find(
|
|
|
|
(x) => x.id === props.block.fileId
|
|
|
|
);
|
2019-04-29 02:11:57 +02:00
|
|
|
</script>
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.lzyxtsnt {
|
|
|
|
> img {
|
|
|
|
max-width: 100%;
|
|
|
|
}
|
|
|
|
}
|
2019-04-29 02:11:57 +02:00
|
|
|
</style>
|