hippofish/packages/client/src/components/page/page.image.vue

36 lines
730 B
Vue
Raw Normal View History

<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>
</template>
<script lang="ts" setup>
2023-09-02 01:27:33 +02:00
import type { PropType } from "vue";
2023-04-08 02:01:42 +02:00
import ImgWithBlurhash from "@/components/MkImgWithBlurhash.vue";
2023-09-02 01:27:33 +02:00
import type { ImageBlock } from "@/scripts/hpml/block";
import type { Hpml } from "@/scripts/hpml/evaluator";
const props = defineProps<{
2023-04-08 02:01:42 +02:00
block: PropType<ImageBlock>;
hpml: PropType<Hpml>;
}>();
2023-04-08 02:01:42 +02:00
const image = props.hpml.page.attachedFiles.find(
2023-07-06 03:28:27 +02:00
(x) => x.id === props.block.fileId,
2023-04-08 02:01:42 +02:00
);
</script>
<style lang="scss" scoped>
.lzyxtsnt {
display: flex;
justify-content: center;
}
</style>