2020-02-16 14:46:18 +01:00
|
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
|
<MkModal
|
|
|
|
|
ref="modal"
|
|
|
|
|
:z-priority="'middle'"
|
|
|
|
|
@click="modal.close()"
|
|
|
|
|
@closed="emit('closed')"
|
|
|
|
|
>
|
|
|
|
|
<div class="xubzgfga">
|
|
|
|
|
<header>{{ image.name }}</header>
|
|
|
|
|
<img
|
|
|
|
|
:src="image.url"
|
|
|
|
|
:alt="image.comment"
|
|
|
|
|
:title="image.comment"
|
|
|
|
|
@click="modal.close()"
|
|
|
|
|
/>
|
|
|
|
|
<footer>
|
|
|
|
|
<span>{{ image.type }}</span>
|
|
|
|
|
<span>{{ bytes(image.size) }}</span>
|
|
|
|
|
<span v-if="image.properties && image.properties.width"
|
|
|
|
|
>{{ number(image.properties.width) }}px ×
|
|
|
|
|
{{ number(image.properties.height) }}px</span
|
|
|
|
|
>
|
|
|
|
|
</footer>
|
|
|
|
|
</div>
|
|
|
|
|
</MkModal>
|
2020-02-16 14:46:18 +01:00
|
|
|
|
</template>
|
|
|
|
|
|
2022-01-15 22:59:35 +01:00
|
|
|
|
<script lang="ts" setup>
|
2023-04-08 02:01:42 +02:00
|
|
|
|
import {} from "vue";
|
|
|
|
|
import type * as misskey from "calckey-js";
|
|
|
|
|
import bytes from "@/filters/bytes";
|
|
|
|
|
import number from "@/filters/number";
|
|
|
|
|
import MkModal from "@/components/MkModal.vue";
|
2020-02-16 14:46:18 +01:00
|
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
|
const props = withDefaults(
|
|
|
|
|
defineProps<{
|
|
|
|
|
image: misskey.entities.DriveFile;
|
|
|
|
|
}>(),
|
|
|
|
|
{}
|
|
|
|
|
);
|
2020-02-16 14:46:18 +01:00
|
|
|
|
|
2022-01-15 22:59:35 +01:00
|
|
|
|
const emit = defineEmits<{
|
2023-04-08 02:01:42 +02:00
|
|
|
|
(ev: "closed"): void;
|
2022-01-15 22:59:35 +01:00
|
|
|
|
}>();
|
2020-02-16 14:46:18 +01:00
|
|
|
|
|
2022-01-15 22:59:35 +01:00
|
|
|
|
const modal = $ref<InstanceType<typeof MkModal>>();
|
2020-02-16 14:46:18 +01:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.xubzgfga {
|
2020-11-06 21:00:42 +01:00
|
|
|
|
display: flex;
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
height: 100%;
|
2020-10-17 13:12:00 +02:00
|
|
|
|
|
|
|
|
|
> header,
|
|
|
|
|
> footer {
|
2020-11-06 21:00:42 +01:00
|
|
|
|
align-self: center;
|
2020-10-17 13:12:00 +02:00
|
|
|
|
display: inline-block;
|
|
|
|
|
padding: 6px 9px;
|
|
|
|
|
font-size: 90%;
|
|
|
|
|
background: rgba(0, 0, 0, 0.5);
|
|
|
|
|
border-radius: 6px;
|
|
|
|
|
color: #fff;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
> header {
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
opacity: 0.9;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
> img {
|
|
|
|
|
display: block;
|
2020-11-06 21:00:42 +01:00
|
|
|
|
flex: 1;
|
|
|
|
|
min-height: 0;
|
|
|
|
|
object-fit: contain;
|
|
|
|
|
width: 100%;
|
2020-10-17 13:12:00 +02:00
|
|
|
|
cursor: zoom-out;
|
|
|
|
|
image-orientation: from-image;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
> footer {
|
|
|
|
|
margin-top: 8px;
|
|
|
|
|
opacity: 0.8;
|
|
|
|
|
|
|
|
|
|
> span + span {
|
|
|
|
|
margin-left: 0.5em;
|
|
|
|
|
padding-left: 0.5em;
|
|
|
|
|
border-left: solid 1px rgba(255, 255, 255, 0.5);
|
|
|
|
|
}
|
|
|
|
|
}
|
2020-02-16 14:46:18 +01:00
|
|
|
|
}
|
|
|
|
|
</style>
|