2023-07-27 07:31:52 +02:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2018-03-26 15:04:34 +02:00
|
|
|
<template>
|
2023-09-22 09:03:10 +02:00
|
|
|
<div v-if="hide" :class="[$style.hidden, (video.isSensitive && defaultStore.state.highlightSensitiveMedia) && $style.sensitiveContainer]" @click="hide = false">
|
2023-04-15 08:29:57 +02:00
|
|
|
<!-- 【注意】dataSaverMode が有効になっている際には、hide が false になるまでサムネイルや動画を読み込まないようにすること -->
|
2023-05-30 04:32:29 +02:00
|
|
|
<div :class="$style.sensitive">
|
2023-12-23 02:09:23 +01:00
|
|
|
<b v-if="video.isSensitive" style="display: block;"><i class="ph-warning ph-bold ph-lg"></i> {{ i18n.ts.sensitive }}{{ defaultStore.state.dataSaver.media ? ` (${i18n.ts.video}${video.size ? ' ' + bytes(video.size) : ''})` : '' }}</b>
|
|
|
|
<b v-else style="display: block;"><i class="ph-film-strip ph-bold ph-lg"></i> {{ defaultStore.state.dataSaver.media && video.size ? bytes(video.size) : i18n.ts.video }}</b>
|
2023-04-01 07:01:57 +02:00
|
|
|
<span>{{ i18n.ts.clickToShow }}</span>
|
2018-07-19 19:53:32 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-09-22 09:03:10 +02:00
|
|
|
<div v-else :class="[$style.visible, (video.isSensitive && defaultStore.state.highlightSensitiveMedia) && $style.sensitiveContainer]">
|
2023-05-30 04:32:29 +02:00
|
|
|
<video
|
2023-10-08 07:01:40 +02:00
|
|
|
ref="videoEl"
|
2023-05-30 04:32:29 +02:00
|
|
|
:class="$style.video"
|
|
|
|
:poster="video.thumbnailUrl"
|
2023-11-27 21:55:43 +01:00
|
|
|
:title="video.comment ?? undefined"
|
2023-05-30 04:32:29 +02:00
|
|
|
:alt="video.comment"
|
|
|
|
preload="none"
|
|
|
|
controls
|
|
|
|
@contextmenu.stop
|
|
|
|
>
|
2023-07-08 00:08:16 +02:00
|
|
|
<source
|
|
|
|
:src="video.url"
|
2021-03-06 13:38:39 +01:00
|
|
|
>
|
2023-05-30 04:32:29 +02:00
|
|
|
</video>
|
2023-09-30 21:53:52 +02:00
|
|
|
<i class="ph-eye-slash ph-bold ph-lg" :class="$style.hide" @click="hide = true"></i>
|
2020-04-11 11:32:55 +02:00
|
|
|
</div>
|
2018-03-26 15:04:34 +02:00
|
|
|
</template>
|
|
|
|
|
2022-01-07 07:02:25 +01:00
|
|
|
<script lang="ts" setup>
|
2023-10-08 07:01:40 +02:00
|
|
|
import { ref, shallowRef, watch } from 'vue';
|
2023-09-04 06:33:38 +02:00
|
|
|
import * as Misskey from 'misskey-js';
|
2023-09-19 09:37:43 +02:00
|
|
|
import bytes from '@/filters/bytes.js';
|
|
|
|
import { defaultStore } from '@/store.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
2023-11-26 08:15:24 +01:00
|
|
|
import hasAudio from '@/scripts/media-has-audio.js';
|
2018-09-15 21:31:55 +02:00
|
|
|
|
2022-01-07 07:02:25 +01:00
|
|
|
const props = defineProps<{
|
2023-09-04 06:33:38 +02:00
|
|
|
video: Misskey.entities.DriveFile;
|
2022-01-07 07:02:25 +01:00
|
|
|
}>();
|
|
|
|
|
2023-12-03 02:58:42 +01:00
|
|
|
const hide = ref((defaultStore.state.nsfw === 'force' || defaultStore.state.dataSaver.media) ? true : (props.video.isSensitive && defaultStore.state.nsfw !== 'ignore'));
|
2023-10-08 07:01:40 +02:00
|
|
|
|
|
|
|
const videoEl = shallowRef<HTMLVideoElement>();
|
|
|
|
|
|
|
|
watch(videoEl, () => {
|
|
|
|
if (videoEl.value) {
|
|
|
|
videoEl.value.volume = 0.3;
|
2023-11-26 08:15:24 +01:00
|
|
|
hasAudio(videoEl.value).then(had => {
|
|
|
|
if (!had) {
|
|
|
|
videoEl.value.loop = videoEl.value.muted = true;
|
|
|
|
videoEl.value.play();
|
|
|
|
}
|
|
|
|
});
|
2023-10-08 07:01:40 +02:00
|
|
|
}
|
|
|
|
});
|
2018-03-26 15:04:34 +02:00
|
|
|
</script>
|
|
|
|
|
2023-05-30 04:32:29 +02:00
|
|
|
<style lang="scss" module>
|
|
|
|
.visible {
|
2020-04-11 11:32:55 +02:00
|
|
|
position: relative;
|
2023-05-30 04:32:29 +02:00
|
|
|
}
|
2018-03-26 15:04:34 +02:00
|
|
|
|
2023-09-22 09:03:10 +02:00
|
|
|
.sensitiveContainer {
|
|
|
|
position: relative;
|
|
|
|
|
|
|
|
&::after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
pointer-events: none;
|
|
|
|
border-radius: inherit;
|
|
|
|
box-shadow: inset 0 0 0 4px var(--warn);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-05-30 04:32:29 +02:00
|
|
|
.hide {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
2023-10-31 19:44:34 +01:00
|
|
|
border-radius: var(--radius-sm);
|
2023-09-22 16:39:53 +02:00
|
|
|
background-color: black;
|
2023-05-30 04:32:29 +02:00
|
|
|
color: var(--accentLighten);
|
|
|
|
font-size: 14px;
|
|
|
|
opacity: .5;
|
|
|
|
padding: 3px 6px;
|
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
|
|
|
top: 12px;
|
|
|
|
right: 12px;
|
|
|
|
}
|
2020-04-11 11:32:55 +02:00
|
|
|
|
2023-05-30 04:32:29 +02:00
|
|
|
.video {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
font-size: 3.5em;
|
|
|
|
overflow: hidden;
|
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2018-07-19 19:53:32 +02:00
|
|
|
|
2023-05-30 04:32:29 +02:00
|
|
|
.hidden {
|
2020-01-29 20:37:25 +01:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
background: #111;
|
|
|
|
color: #fff;
|
2023-05-30 04:32:29 +02:00
|
|
|
}
|
2018-07-19 19:53:32 +02:00
|
|
|
|
2023-05-30 04:32:29 +02:00
|
|
|
.sensitive {
|
|
|
|
display: table-cell;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 12px;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2023-09-22 16:39:53 +02:00
|
|
|
.indicators {
|
|
|
|
display: inline-flex;
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
left: 10px;
|
|
|
|
pointer-events: none;
|
|
|
|
opacity: .5;
|
|
|
|
gap: 6px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.indicator {
|
|
|
|
/* Hardcode to black because either --bg or --fg makes it hard to read in dark/light mode */
|
|
|
|
background-color: black;
|
2023-10-31 19:44:34 +01:00
|
|
|
border-radius: var(--radius-sm);
|
2023-09-22 16:39:53 +02:00
|
|
|
color: var(--accentLighten);
|
|
|
|
display: inline-block;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 0.8em;
|
|
|
|
padding: 2px 5px;
|
|
|
|
}
|
2018-03-26 15:04:34 +02:00
|
|
|
</style>
|