2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2023-02-08 07:54:51 +00:00
|
|
|
<div>
|
2021-11-19 10:36:12 +00:00
|
|
|
<XBanner v-for="media in mediaList.filter(media => !previewable(media))" :key="media.id" :media="media"/>
|
2023-02-08 07:54:51 +00:00
|
|
|
<div v-if="mediaList.filter(media => previewable(media)).length > 0" :class="$style.container">
|
2023-04-15 12:35:19 +00:00
|
|
|
<div
|
|
|
|
ref="gallery"
|
|
|
|
:class="[
|
|
|
|
$style.medias,
|
|
|
|
count <= 4 ? $style['n' + count] : $style.nMany,
|
|
|
|
]"
|
|
|
|
>
|
2022-01-26 15:08:48 +00:00
|
|
|
<template v-for="media in mediaList.filter(media => previewable(media))">
|
2023-04-15 12:35:19 +00:00
|
|
|
<XVideo v-if="media.type.startsWith('video')" :key="`video:${media.id}`" :class="$style.media" :video="media"/>
|
|
|
|
<XImage v-else-if="media.type.startsWith('image')" :key="`image:${media.id}`" :class="$style.media" class="image" :data-id="media.id" :image="media" :raw="raw"/>
|
2020-01-29 19:37:25 +00:00
|
|
|
</template>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
2022-01-27 15:52:05 +00:00
|
|
|
<script lang="ts" setup>
|
2023-04-15 12:35:19 +00:00
|
|
|
import { onMounted, ref, useCssModule, watch } from 'vue';
|
2021-10-24 17:28:18 +00:00
|
|
|
import * as misskey from 'misskey-js';
|
2022-04-01 10:13:40 +00:00
|
|
|
import PhotoSwipeLightbox from 'photoswipe/lightbox';
|
|
|
|
import PhotoSwipe from 'photoswipe';
|
|
|
|
import 'photoswipe/style.css';
|
2022-08-30 15:24:33 +00:00
|
|
|
import XBanner from '@/components/MkMediaBanner.vue';
|
|
|
|
import XImage from '@/components/MkMediaImage.vue';
|
|
|
|
import XVideo from '@/components/MkMediaVideo.vue';
|
2021-11-11 17:02:25 +00:00
|
|
|
import * as os from '@/os';
|
2022-01-26 15:08:48 +00:00
|
|
|
import { FILE_TYPE_BROWSERSAFE } from '@/const';
|
2023-04-15 12:35:19 +00:00
|
|
|
import { defaultStore } from '@/store';
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2022-01-27 15:52:05 +00:00
|
|
|
const props = defineProps<{
|
|
|
|
mediaList: misskey.entities.DriveFile[];
|
|
|
|
raw?: boolean;
|
|
|
|
}>();
|
2021-07-13 15:13:23 +00:00
|
|
|
|
2023-02-28 08:26:42 +00:00
|
|
|
const $style = useCssModule();
|
|
|
|
|
2023-04-15 12:35:19 +00:00
|
|
|
const gallery = ref<HTMLDivElement>();
|
2022-01-27 15:52:05 +00:00
|
|
|
const pswpZIndex = os.claimZIndex('middle');
|
2023-02-28 08:26:42 +00:00
|
|
|
document.documentElement.style.setProperty('--mk-pswp-root-z-index', pswpZIndex.toString());
|
2023-02-08 07:54:51 +00:00
|
|
|
const count = $computed(() => props.mediaList.filter(media => previewable(media)).length);
|
2021-10-24 17:28:18 +00:00
|
|
|
|
2022-01-27 15:52:05 +00:00
|
|
|
onMounted(() => {
|
|
|
|
const lightbox = new PhotoSwipeLightbox({
|
|
|
|
dataSource: props.mediaList
|
|
|
|
.filter(media => {
|
|
|
|
if (media.type === 'image/svg+xml') return true; // svgのwebpublicはpngなのでtrue
|
|
|
|
return media.type.startsWith('image') && FILE_TYPE_BROWSERSAFE.includes(media.type);
|
|
|
|
})
|
|
|
|
.map(media => {
|
|
|
|
const item = {
|
|
|
|
src: media.url,
|
|
|
|
w: media.properties.width,
|
|
|
|
h: media.properties.height,
|
2023-02-22 06:28:17 +00:00
|
|
|
alt: media.comment ?? media.name,
|
|
|
|
comment: media.comment ?? media.name,
|
2022-01-27 15:52:05 +00:00
|
|
|
};
|
|
|
|
if (media.properties.orientation != null && media.properties.orientation >= 5) {
|
|
|
|
[item.w, item.h] = [item.h, item.w];
|
|
|
|
}
|
|
|
|
return item;
|
|
|
|
}),
|
|
|
|
gallery: gallery.value,
|
2023-02-28 08:26:42 +00:00
|
|
|
mainClass: $style.pswp,
|
2022-01-27 15:52:05 +00:00
|
|
|
children: '.image',
|
|
|
|
thumbSelector: '.image',
|
|
|
|
loop: false,
|
|
|
|
padding: window.innerWidth > 500 ? {
|
|
|
|
top: 32,
|
2023-02-28 08:26:42 +00:00
|
|
|
bottom: 90,
|
2022-01-27 15:52:05 +00:00
|
|
|
left: 32,
|
|
|
|
right: 32,
|
|
|
|
} : {
|
|
|
|
top: 0,
|
2023-02-28 08:26:42 +00:00
|
|
|
bottom: 78,
|
2022-01-27 15:52:05 +00:00
|
|
|
left: 0,
|
|
|
|
right: 0,
|
|
|
|
},
|
|
|
|
imageClickAction: 'close',
|
|
|
|
tapAction: 'toggle-controls',
|
2023-01-19 00:16:52 +00:00
|
|
|
bgOpacity: 1,
|
2022-01-27 15:52:05 +00:00
|
|
|
pswpModule: PhotoSwipe,
|
|
|
|
});
|
2021-07-13 15:13:23 +00:00
|
|
|
|
2022-01-27 15:52:05 +00:00
|
|
|
lightbox.on('itemData', (ev) => {
|
|
|
|
const { itemData } = ev;
|
2021-07-13 15:13:23 +00:00
|
|
|
|
2022-01-27 15:52:05 +00:00
|
|
|
// element is children
|
|
|
|
const { element } = itemData;
|
2021-10-24 17:28:18 +00:00
|
|
|
|
2022-01-27 15:52:05 +00:00
|
|
|
const id = element.dataset.id;
|
|
|
|
const file = props.mediaList.find(media => media.id === id);
|
2023-02-28 08:26:42 +00:00
|
|
|
if (!file) return;
|
2021-10-24 17:28:18 +00:00
|
|
|
|
2022-01-27 15:52:05 +00:00
|
|
|
itemData.src = file.url;
|
|
|
|
itemData.w = Number(file.properties.width);
|
|
|
|
itemData.h = Number(file.properties.height);
|
|
|
|
if (file.properties.orientation != null && file.properties.orientation >= 5) {
|
|
|
|
[itemData.w, itemData.h] = [itemData.h, itemData.w];
|
|
|
|
}
|
|
|
|
itemData.msrc = file.thumbnailUrl;
|
2023-02-22 06:28:17 +00:00
|
|
|
itemData.alt = file.comment ?? file.name;
|
|
|
|
itemData.comment = file.comment ?? file.name;
|
2022-01-27 15:52:05 +00:00
|
|
|
itemData.thumbCropped = true;
|
|
|
|
});
|
2021-10-24 17:28:18 +00:00
|
|
|
|
2023-01-19 00:16:52 +00:00
|
|
|
lightbox.on('uiRegister', () => {
|
|
|
|
lightbox.pswp.ui.registerElement({
|
|
|
|
name: 'altText',
|
|
|
|
className: 'pwsp__alt-text-container',
|
|
|
|
appendTo: 'wrapper',
|
|
|
|
onInit: (el, pwsp) => {
|
|
|
|
let textBox = document.createElement('p');
|
|
|
|
textBox.className = 'pwsp__alt-text _acrylic';
|
|
|
|
el.appendChild(textBox);
|
|
|
|
|
|
|
|
pwsp.on('change', (a) => {
|
|
|
|
textBox.textContent = pwsp.currSlide.data.comment;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2022-01-27 15:52:05 +00:00
|
|
|
lightbox.init();
|
2023-03-06 21:02:51 +00:00
|
|
|
|
2023-02-26 03:25:27 +00:00
|
|
|
window.addEventListener('popstate', () => {
|
|
|
|
if (lightbox.pswp && lightbox.pswp.isOpen === true) {
|
|
|
|
lightbox.pswp.close();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
lightbox.on('beforeOpen', () => {
|
|
|
|
history.pushState(null, '', '#pswp');
|
|
|
|
});
|
|
|
|
|
|
|
|
lightbox.on('close', () => {
|
|
|
|
if (window.location.hash === '#pswp') {
|
|
|
|
history.back();
|
|
|
|
}
|
|
|
|
});
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
2022-01-27 15:52:05 +00:00
|
|
|
|
|
|
|
const previewable = (file: misskey.entities.DriveFile): boolean => {
|
|
|
|
if (file.type === 'image/svg+xml') return true; // svgのwebpublic/thumbnailはpngなのでtrue
|
|
|
|
// FILE_TYPE_BROWSERSAFEに適合しないものはブラウザで表示するのに不適切
|
|
|
|
return (file.type.startsWith('video') || file.type.startsWith('image')) && FILE_TYPE_BROWSERSAFE.includes(file.type);
|
|
|
|
};
|
2020-01-29 19:37:25 +00:00
|
|
|
</script>
|
|
|
|
|
2023-02-08 07:54:51 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.container {
|
|
|
|
position: relative;
|
|
|
|
width: 100%;
|
|
|
|
margin-top: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.medias {
|
|
|
|
display: grid;
|
|
|
|
grid-gap: 8px;
|
|
|
|
|
2023-05-08 09:23:35 +00:00
|
|
|
// for webkit
|
2023-02-09 11:12:36 +00:00
|
|
|
height: 100%;
|
|
|
|
|
2023-02-08 07:54:51 +00:00
|
|
|
&.n1 {
|
2023-05-08 09:23:35 +00:00
|
|
|
aspect-ratio: 16/9;
|
2023-02-08 07:54:51 +00:00
|
|
|
grid-template-rows: 1fr;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.n2 {
|
|
|
|
aspect-ratio: 16/9;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
grid-template-rows: 1fr;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.n3 {
|
|
|
|
aspect-ratio: 16/9;
|
|
|
|
grid-template-columns: 1fr 0.5fr;
|
|
|
|
grid-template-rows: 1fr 1fr;
|
|
|
|
|
|
|
|
> .media:nth-child(1) {
|
|
|
|
grid-row: 1 / 3;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
|
2023-02-08 07:54:51 +00:00
|
|
|
> .media:nth-child(3) {
|
|
|
|
grid-column: 2 / 3;
|
|
|
|
grid-row: 2 / 3;
|
|
|
|
}
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-02-08 07:54:51 +00:00
|
|
|
&.n4 {
|
|
|
|
aspect-ratio: 16/9;
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
grid-template-rows: 1fr 1fr;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.nMany {
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
|
|
|
|
> .media {
|
|
|
|
aspect-ratio: 16/9;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-02-08 07:54:51 +00:00
|
|
|
|
|
|
|
.media {
|
|
|
|
overflow: hidden; // clipにするとバグる
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
2021-12-23 16:07:04 +00:00
|
|
|
|
|
|
|
.pswp {
|
2023-02-28 08:26:42 +00:00
|
|
|
--pswp-root-z-index: var(--mk-pswp-root-z-index, 2000700) !important;
|
|
|
|
--pswp-bg: var(--modalBg) !important;
|
2023-01-19 00:16:52 +00:00
|
|
|
}
|
2023-02-28 08:26:42 +00:00
|
|
|
</style>
|
2023-01-19 00:16:52 +00:00
|
|
|
|
2023-02-28 08:26:42 +00:00
|
|
|
<style lang="scss">
|
2023-01-19 00:16:52 +00:00
|
|
|
.pswp__bg {
|
|
|
|
background: var(--modalBg);
|
|
|
|
backdrop-filter: var(--modalBgFilter);
|
|
|
|
}
|
|
|
|
|
|
|
|
.pwsp__alt-text-container {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
position: absolute;
|
2023-02-28 08:26:42 +00:00
|
|
|
bottom: 20px;
|
2023-01-19 00:16:52 +00:00
|
|
|
left: 50%;
|
|
|
|
transform: translateX(-50%);
|
|
|
|
|
|
|
|
width: 75%;
|
|
|
|
max-width: 800px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.pwsp__alt-text {
|
|
|
|
color: var(--fg);
|
|
|
|
margin: 0 auto;
|
|
|
|
text-align: center;
|
|
|
|
padding: var(--margin);
|
|
|
|
border-radius: var(--radius);
|
|
|
|
max-height: 8em;
|
|
|
|
overflow-y: auto;
|
|
|
|
text-shadow: var(--bg) 0 0 10px, var(--bg) 0 0 3px, var(--bg) 0 0 3px;
|
2023-03-06 21:02:51 +00:00
|
|
|
white-space: pre-line;
|
2021-12-23 16:07:04 +00:00
|
|
|
}
|
|
|
|
</style>
|