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

38 lines
748 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-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";
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(
(x) => x.id === props.block.fileId
);
</script>
<style lang="scss" scoped>
.lzyxtsnt {
> img {
max-width: 100%;
}
}
</style>