2023-07-27 07:31:52 +02:00
|
|
|
<!--
|
2024-02-13 16:59:27 +01:00
|
|
|
SPDX-FileCopyrightText: syuilo and misskey-project
|
2023-07-27 07:31:52 +02:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2018-03-26 15:04:34 +02:00
|
|
|
<template>
|
2024-01-15 10:17:01 +01:00
|
|
|
<div
|
|
|
|
ref="playerEl"
|
2024-03-30 08:02:03 +01:00
|
|
|
v-hotkey="keymap"
|
|
|
|
tabindex="0"
|
2024-01-15 10:17:01 +01:00
|
|
|
:class="[
|
|
|
|
$style.videoContainer,
|
|
|
|
controlsShowing && $style.active,
|
|
|
|
(video.isSensitive && defaultStore.state.highlightSensitiveMedia) && $style.sensitive,
|
|
|
|
]"
|
|
|
|
@mouseover="onMouseOver"
|
|
|
|
@mouseleave="onMouseLeave"
|
|
|
|
@contextmenu.stop
|
2024-03-30 08:02:03 +01:00
|
|
|
@keydown.stop
|
2024-01-15 10:17:01 +01:00
|
|
|
>
|
2024-07-19 02:57:01 +02:00
|
|
|
<button v-if="hide" :class="$style.hidden" @click="show">
|
2024-01-15 10:17:01 +01:00
|
|
|
<div :class="$style.hiddenTextWrapper">
|
2024-06-21 16:21:11 +02:00
|
|
|
<b v-if="video.isSensitive" style="display: block;"><i class="ti ti-eye-exclamation"></i> {{ i18n.ts.sensitive }}{{ defaultStore.state.dataSaver.media ? ` (${i18n.ts.video}${video.size ? ' ' + bytes(video.size) : ''})` : '' }}</b>
|
2024-06-22 13:26:26 +02:00
|
|
|
<b v-else style="display: block;"><i class="ti ti-movie"></i> {{ defaultStore.state.dataSaver.media && video.size ? bytes(video.size) : i18n.ts.video }}</b>
|
2024-01-15 10:17:01 +01:00
|
|
|
<span style="display: block;">{{ i18n.ts.clickToShow }}</span>
|
|
|
|
</div>
|
|
|
|
</button>
|
2024-03-30 08:02:03 +01:00
|
|
|
|
|
|
|
<div v-else-if="defaultStore.reactiveState.useNativeUIForVideoAudioPlayer.value" :class="$style.videoRoot">
|
|
|
|
<video
|
|
|
|
ref="videoEl"
|
|
|
|
:class="$style.video"
|
|
|
|
:poster="video.thumbnailUrl ?? undefined"
|
|
|
|
:title="video.comment ?? undefined"
|
|
|
|
:alt="video.comment"
|
|
|
|
preload="metadata"
|
|
|
|
controls
|
|
|
|
@keydown.prevent
|
|
|
|
>
|
|
|
|
<source :src="video.url">
|
|
|
|
</video>
|
2024-06-21 16:15:04 +02:00
|
|
|
<i class="ti ti-eye-off" :class="$style.hide" @click="hide = true"></i>
|
2024-03-30 08:02:03 +01:00
|
|
|
<div :class="$style.indicators">
|
|
|
|
<div v-if="video.comment" :class="$style.indicator">ALT</div>
|
2024-06-21 16:21:11 +02:00
|
|
|
<div v-if="video.isSensitive" :class="$style.indicator" style="color: var(--warn);" :title="i18n.ts.sensitive"><i class="ti ti-eye-exclamation"></i></div>
|
2024-03-30 08:02:03 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div v-else :class="$style.videoRoot">
|
2024-01-15 10:17:01 +01:00
|
|
|
<video
|
|
|
|
ref="videoEl"
|
|
|
|
:class="$style.video"
|
|
|
|
:poster="video.thumbnailUrl ?? undefined"
|
|
|
|
:title="video.comment ?? undefined"
|
|
|
|
:alt="video.comment"
|
|
|
|
preload="metadata"
|
|
|
|
playsinline
|
2024-03-30 08:02:03 +01:00
|
|
|
@keydown.prevent
|
|
|
|
@click.self="togglePlayPause"
|
2021-03-06 13:38:39 +01:00
|
|
|
>
|
2024-01-15 10:17:01 +01:00
|
|
|
<source :src="video.url">
|
|
|
|
</video>
|
2024-06-22 12:26:18 +02:00
|
|
|
<button v-if="isReady && !isPlaying" class="_button" :class="$style.videoOverlayPlayButton" @click="togglePlayPause"><i class="ti ti-player-play-filled"></i></button>
|
2024-01-15 10:17:01 +01:00
|
|
|
<div v-else-if="!isActuallyPlaying" :class="$style.videoLoading">
|
|
|
|
<MkLoading/>
|
|
|
|
</div>
|
2024-06-21 16:15:04 +02:00
|
|
|
<i class="ti ti-eye-off" :class="$style.hide" @click="hide = true"></i>
|
2024-01-15 10:17:01 +01:00
|
|
|
<div :class="$style.indicators">
|
|
|
|
<div v-if="video.comment" :class="$style.indicator">ALT</div>
|
2024-06-21 16:21:11 +02:00
|
|
|
<div v-if="video.isSensitive" :class="$style.indicator" style="color: var(--warn);" :title="i18n.ts.sensitive"><i class="ti ti-eye-exclamation"></i></div>
|
2024-01-15 10:17:01 +01:00
|
|
|
</div>
|
|
|
|
<div :class="$style.videoControls" @click.self="togglePlayPause">
|
|
|
|
<div :class="[$style.controlsChild, $style.controlsLeft]">
|
|
|
|
<button class="_button" :class="$style.controlButton" @click="togglePlayPause">
|
2024-06-22 12:26:18 +02:00
|
|
|
<i v-if="isPlaying" class="ti ti-player-pause-filled"></i>
|
|
|
|
<i v-else class="ti ti-player-play-filled"></i>
|
2024-01-15 10:17:01 +01:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div :class="[$style.controlsChild, $style.controlsRight]">
|
2024-01-24 17:26:28 +01:00
|
|
|
<a class="_button" :class="$style.controlButton" :href="video.url" :download="video.name" target="_blank">
|
|
|
|
<i class="ph-download ph-bold ph-lg"></i>
|
|
|
|
</a>
|
2024-01-15 10:17:01 +01:00
|
|
|
<button class="_button" :class="$style.controlButton" @click="showMenu">
|
2024-06-21 15:42:59 +02:00
|
|
|
<i class="ti ti-settings"></i>
|
2024-01-15 10:17:01 +01:00
|
|
|
</button>
|
|
|
|
<button class="_button" :class="$style.controlButton" @click="toggleFullscreen">
|
2024-06-22 13:36:09 +02:00
|
|
|
<i v-if="isFullscreen" class="ti ti-arrows-minimize"></i>
|
|
|
|
<i v-else class="ti ti-arrows-maximize"></i>
|
2024-01-15 10:17:01 +01:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div :class="[$style.controlsChild, $style.controlsTime]">{{ hms(elapsedTimeMs) }}</div>
|
|
|
|
<div :class="[$style.controlsChild, $style.controlsVolume]">
|
|
|
|
<button class="_button" :class="$style.controlButton" @click="toggleMute">
|
2024-06-22 12:26:18 +02:00
|
|
|
<i v-if="volume === 0" class="ti ti-volume-3"></i>
|
|
|
|
<i v-else class="ti ti-volume"></i>
|
2024-01-15 10:17:01 +01:00
|
|
|
</button>
|
|
|
|
<MkMediaRange
|
|
|
|
v-model="volume"
|
|
|
|
:sliderBgWhite="true"
|
|
|
|
:class="$style.volumeSeekbar"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<MkMediaRange
|
|
|
|
v-model="rangePercent"
|
|
|
|
:sliderBgWhite="true"
|
|
|
|
:class="$style.seekbarRoot"
|
|
|
|
:buffer="bufferedDataRatio"
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
</div>
|
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>
|
2024-01-15 10:17:01 +01:00
|
|
|
import { ref, shallowRef, computed, watch, onDeactivated, onActivated, onMounted } from 'vue';
|
2023-09-04 06:33:38 +02:00
|
|
|
import * as Misskey from 'misskey-js';
|
2024-01-15 10:17:01 +01:00
|
|
|
import type { MenuItem } from '@/types/menu.js';
|
2024-07-09 10:59:15 +02:00
|
|
|
import { type Keymap } from '@/scripts/hotkey.js';
|
2023-09-19 09:37:43 +02:00
|
|
|
import bytes from '@/filters/bytes.js';
|
2024-01-15 10:17:01 +01:00
|
|
|
import { hms } from '@/filters/hms.js';
|
2023-09-19 09:37:43 +02:00
|
|
|
import { defaultStore } from '@/store.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
2024-01-15 10:17:01 +01:00
|
|
|
import * as os from '@/os.js';
|
|
|
|
import { isFullscreenNotSupported } from '@/scripts/device-kind.js';
|
2023-11-26 08:15:24 +01:00
|
|
|
import hasAudio from '@/scripts/media-has-audio.js';
|
2024-01-15 10:17:01 +01:00
|
|
|
import MkMediaRange from '@/components/MkMediaRange.vue';
|
2024-03-05 10:06:57 +01:00
|
|
|
import { $i, iAmModerator } from '@/account.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
|
|
|
}>();
|
|
|
|
|
2024-03-30 08:02:03 +01:00
|
|
|
const keymap = {
|
2024-07-09 10:59:15 +02:00
|
|
|
'up': {
|
|
|
|
allowRepeat: true,
|
|
|
|
callback: () => {
|
|
|
|
if (hasFocus() && videoEl.value) {
|
|
|
|
volume.value = Math.min(volume.value + 0.1, 1);
|
|
|
|
}
|
|
|
|
},
|
2024-03-30 08:02:03 +01:00
|
|
|
},
|
2024-07-09 10:59:15 +02:00
|
|
|
'down': {
|
|
|
|
allowRepeat: true,
|
|
|
|
callback: () => {
|
|
|
|
if (hasFocus() && videoEl.value) {
|
|
|
|
volume.value = Math.max(volume.value - 0.1, 0);
|
|
|
|
}
|
|
|
|
},
|
2024-03-30 08:02:03 +01:00
|
|
|
},
|
2024-07-09 10:59:15 +02:00
|
|
|
'left': {
|
|
|
|
allowRepeat: true,
|
|
|
|
callback: () => {
|
|
|
|
if (hasFocus() && videoEl.value) {
|
|
|
|
videoEl.value.currentTime = Math.max(videoEl.value.currentTime - 5, 0);
|
|
|
|
}
|
|
|
|
},
|
2024-03-30 08:02:03 +01:00
|
|
|
},
|
2024-07-09 10:59:15 +02:00
|
|
|
'right': {
|
|
|
|
allowRepeat: true,
|
|
|
|
callback: () => {
|
|
|
|
if (hasFocus() && videoEl.value) {
|
|
|
|
videoEl.value.currentTime = Math.min(videoEl.value.currentTime + 5, videoEl.value.duration);
|
|
|
|
}
|
|
|
|
},
|
2024-03-30 08:02:03 +01:00
|
|
|
},
|
|
|
|
'space': () => {
|
|
|
|
if (hasFocus()) {
|
|
|
|
togglePlayPause();
|
|
|
|
}
|
|
|
|
},
|
2024-07-09 10:59:15 +02:00
|
|
|
} as const satisfies Keymap;
|
2024-03-30 08:02:03 +01:00
|
|
|
|
|
|
|
// PlayerElもしくはその子要素にフォーカスがあるかどうか
|
|
|
|
function hasFocus() {
|
|
|
|
if (!playerEl.value) return false;
|
|
|
|
return playerEl.value === document.activeElement || playerEl.value.contains(document.activeElement);
|
|
|
|
}
|
|
|
|
|
2024-06-22 05:40:00 +02:00
|
|
|
// eslint-disable-next-line vue/no-setup-props-reactivity-loss
|
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
|
|
|
|
2024-07-19 02:57:01 +02:00
|
|
|
async function show() {
|
|
|
|
if (props.video.isSensitive && defaultStore.state.confirmWhenRevealingSensitiveMedia) {
|
|
|
|
const { canceled } = await os.confirm({
|
|
|
|
type: 'question',
|
|
|
|
text: i18n.ts.sensitiveMediaRevealConfirm,
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
}
|
|
|
|
|
|
|
|
hide.value = false;
|
|
|
|
}
|
|
|
|
|
2024-01-15 10:17:01 +01:00
|
|
|
// Menu
|
|
|
|
const menuShowing = ref(false);
|
|
|
|
|
|
|
|
function showMenu(ev: MouseEvent) {
|
|
|
|
let menu: MenuItem[] = [];
|
|
|
|
|
|
|
|
menu = [
|
|
|
|
// TODO: 再生キューに追加
|
2024-03-30 08:02:03 +01:00
|
|
|
{
|
|
|
|
type: 'switch',
|
|
|
|
text: i18n.ts._mediaControls.loop,
|
2024-06-22 12:55:11 +02:00
|
|
|
icon: 'ti ti-repeat',
|
2024-03-30 08:02:03 +01:00
|
|
|
ref: loop,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
type: 'radio',
|
|
|
|
text: i18n.ts._mediaControls.playbackRate,
|
2024-06-22 13:18:11 +02:00
|
|
|
icon: 'ti ti-clock-play',
|
2024-03-30 08:02:03 +01:00
|
|
|
ref: speed,
|
|
|
|
options: {
|
|
|
|
'0.25x': 0.25,
|
|
|
|
'0.5x': 0.5,
|
|
|
|
'0.75x': 0.75,
|
|
|
|
'1.0x': 1,
|
|
|
|
'1.25x': 1.25,
|
|
|
|
'1.5x': 1.5,
|
|
|
|
'2.0x': 2,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
...(document.pictureInPictureEnabled ? [{
|
|
|
|
text: i18n.ts._mediaControls.pip,
|
2024-06-22 14:55:21 +02:00
|
|
|
icon: 'ti ti-picture-in-picture',
|
2024-03-30 08:02:03 +01:00
|
|
|
action: togglePictureInPicture,
|
|
|
|
}] : []),
|
|
|
|
{
|
|
|
|
type: 'divider',
|
|
|
|
},
|
2024-01-15 10:17:01 +01:00
|
|
|
{
|
|
|
|
text: i18n.ts.hide,
|
2024-06-21 16:15:04 +02:00
|
|
|
icon: 'ti ti-eye-off',
|
2024-01-15 10:17:01 +01:00
|
|
|
action: () => {
|
|
|
|
hide.value = true;
|
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
|
|
|
|
if (iAmModerator) {
|
|
|
|
menu.push({
|
|
|
|
text: props.video.isSensitive ? i18n.ts.unmarkAsSensitive : i18n.ts.markAsSensitive,
|
2024-06-21 16:21:11 +02:00
|
|
|
icon: props.video.isSensitive ? 'ti ti-eye' : 'ti ti-eye-exclamation',
|
2024-01-15 10:17:01 +01:00
|
|
|
danger: true,
|
|
|
|
action: () => toggleSensitive(props.video),
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-03-05 10:06:57 +01:00
|
|
|
if ($i?.id === props.video.userId) {
|
|
|
|
menu.push({
|
|
|
|
type: 'divider',
|
|
|
|
}, {
|
|
|
|
type: 'link' as const,
|
|
|
|
text: i18n.ts._fileViewer.title,
|
2024-06-21 17:27:36 +02:00
|
|
|
icon: 'ti ti-info-circle',
|
2024-03-05 10:06:57 +01:00
|
|
|
to: `/my/drive/file/${props.video.id}`,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2024-01-15 10:17:01 +01:00
|
|
|
menuShowing.value = true;
|
|
|
|
os.popupMenu(menu, ev.currentTarget ?? ev.target, {
|
|
|
|
align: 'right',
|
|
|
|
onClosing: () => {
|
|
|
|
menuShowing.value = false;
|
|
|
|
},
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function toggleSensitive(file: Misskey.entities.DriveFile) {
|
|
|
|
os.apiWithDialog('drive/files/update', {
|
|
|
|
fileId: file.id,
|
|
|
|
isSensitive: !file.isSensitive,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
// MediaControl: Video State
|
2023-10-08 07:01:40 +02:00
|
|
|
const videoEl = shallowRef<HTMLVideoElement>();
|
2024-01-15 10:17:01 +01:00
|
|
|
const playerEl = shallowRef<HTMLDivElement>();
|
|
|
|
const isHoverring = ref(false);
|
|
|
|
const controlsShowing = computed(() => {
|
|
|
|
if (!oncePlayed.value) return true;
|
|
|
|
if (isHoverring.value) return true;
|
|
|
|
if (menuShowing.value) return true;
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
const isFullscreen = ref(false);
|
|
|
|
let controlStateTimer: string | number;
|
2023-10-08 07:01:40 +02:00
|
|
|
|
2024-01-15 10:17:01 +01:00
|
|
|
// MediaControl: Common State
|
|
|
|
const oncePlayed = ref(false);
|
|
|
|
const isReady = ref(false);
|
|
|
|
const isPlaying = ref(false);
|
|
|
|
const isActuallyPlaying = ref(false);
|
|
|
|
const elapsedTimeMs = ref(0);
|
|
|
|
const durationMs = ref(0);
|
|
|
|
const rangePercent = computed({
|
|
|
|
get: () => {
|
|
|
|
return (elapsedTimeMs.value / durationMs.value) || 0;
|
|
|
|
},
|
|
|
|
set: (to) => {
|
|
|
|
if (!videoEl.value) return;
|
|
|
|
videoEl.value.currentTime = to * durationMs.value / 1000;
|
|
|
|
},
|
|
|
|
});
|
2024-01-18 06:45:11 +01:00
|
|
|
const volume = ref(.25);
|
2024-03-30 08:02:03 +01:00
|
|
|
const speed = ref(1);
|
|
|
|
const loop = ref(false); // TODO: ドライブファイルのフラグに置き換える
|
2024-01-15 10:17:01 +01:00
|
|
|
const bufferedEnd = ref(0);
|
|
|
|
const bufferedDataRatio = computed(() => {
|
|
|
|
if (!videoEl.value) return 0;
|
|
|
|
return bufferedEnd.value / videoEl.value.duration;
|
|
|
|
});
|
|
|
|
|
|
|
|
// MediaControl Events
|
|
|
|
function onMouseOver() {
|
|
|
|
if (controlStateTimer) {
|
|
|
|
clearTimeout(controlStateTimer);
|
|
|
|
}
|
|
|
|
isHoverring.value = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function onMouseLeave() {
|
|
|
|
controlStateTimer = window.setTimeout(() => {
|
|
|
|
isHoverring.value = false;
|
|
|
|
}, 100);
|
|
|
|
}
|
|
|
|
|
|
|
|
function togglePlayPause() {
|
|
|
|
if (!isReady.value || !videoEl.value) return;
|
|
|
|
|
|
|
|
if (isPlaying.value) {
|
|
|
|
videoEl.value.pause();
|
|
|
|
isPlaying.value = false;
|
|
|
|
} else {
|
|
|
|
videoEl.value.play();
|
|
|
|
isPlaying.value = true;
|
|
|
|
oncePlayed.value = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function toggleFullscreen() {
|
|
|
|
if (isFullscreenNotSupported && videoEl.value) {
|
|
|
|
if (isFullscreen.value) {
|
|
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
|
|
//@ts-ignore
|
|
|
|
videoEl.value.webkitExitFullscreen();
|
|
|
|
isFullscreen.value = false;
|
|
|
|
} else {
|
|
|
|
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
|
|
//@ts-ignore
|
|
|
|
videoEl.value.webkitEnterFullscreen();
|
|
|
|
isFullscreen.value = true;
|
|
|
|
}
|
|
|
|
} else if (playerEl.value) {
|
|
|
|
if (isFullscreen.value) {
|
|
|
|
document.exitFullscreen();
|
|
|
|
isFullscreen.value = false;
|
|
|
|
} else {
|
|
|
|
playerEl.value.requestFullscreen({ navigationUI: 'hide' });
|
|
|
|
isFullscreen.value = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-03-30 08:02:03 +01:00
|
|
|
function togglePictureInPicture() {
|
|
|
|
if (videoEl.value) {
|
|
|
|
if (document.pictureInPictureElement) {
|
|
|
|
document.exitPictureInPicture();
|
|
|
|
} else {
|
|
|
|
videoEl.value.requestPictureInPicture();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-15 10:17:01 +01:00
|
|
|
function toggleMute() {
|
|
|
|
if (volume.value === 0) {
|
2024-01-18 06:45:11 +01:00
|
|
|
volume.value = .25;
|
2024-01-15 10:17:01 +01:00
|
|
|
} else {
|
|
|
|
volume.value = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
let onceInit = false;
|
2024-03-30 08:02:03 +01:00
|
|
|
let mediaTickFrameId: number | null = null;
|
2024-01-15 10:17:01 +01:00
|
|
|
let stopVideoElWatch: () => void;
|
2023-10-08 07:01:40 +02:00
|
|
|
|
2024-01-15 10:17:01 +01:00
|
|
|
function init() {
|
|
|
|
if (onceInit) return;
|
|
|
|
onceInit = true;
|
|
|
|
|
|
|
|
stopVideoElWatch = watch(videoEl, () => {
|
|
|
|
if (videoEl.value) {
|
|
|
|
isReady.value = true;
|
|
|
|
|
|
|
|
function updateMediaTick() {
|
|
|
|
if (videoEl.value) {
|
|
|
|
try {
|
|
|
|
bufferedEnd.value = videoEl.value.buffered.end(0);
|
|
|
|
} catch (err) {
|
|
|
|
bufferedEnd.value = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
elapsedTimeMs.value = videoEl.value.currentTime * 1000;
|
2024-03-30 08:02:03 +01:00
|
|
|
|
|
|
|
if (videoEl.value.loop !== loop.value) {
|
|
|
|
loop.value = videoEl.value.loop;
|
|
|
|
}
|
2024-01-15 10:17:01 +01:00
|
|
|
}
|
2024-03-30 08:02:03 +01:00
|
|
|
mediaTickFrameId = window.requestAnimationFrame(updateMediaTick);
|
2023-11-26 08:15:24 +01:00
|
|
|
}
|
2024-01-15 10:17:01 +01:00
|
|
|
|
|
|
|
updateMediaTick();
|
|
|
|
|
|
|
|
videoEl.value.addEventListener('play', () => {
|
|
|
|
isActuallyPlaying.value = true;
|
|
|
|
});
|
|
|
|
|
|
|
|
videoEl.value.addEventListener('pause', () => {
|
|
|
|
isActuallyPlaying.value = false;
|
|
|
|
isPlaying.value = false;
|
|
|
|
});
|
|
|
|
|
|
|
|
videoEl.value.addEventListener('ended', () => {
|
|
|
|
oncePlayed.value = false;
|
|
|
|
isActuallyPlaying.value = false;
|
|
|
|
isPlaying.value = false;
|
|
|
|
});
|
|
|
|
|
|
|
|
durationMs.value = videoEl.value.duration * 1000;
|
|
|
|
videoEl.value.addEventListener('durationchange', () => {
|
|
|
|
if (videoEl.value) {
|
|
|
|
durationMs.value = videoEl.value.duration * 1000;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
videoEl.value.volume = volume.value;
|
|
|
|
hasAudio(videoEl.value).then(had => {
|
|
|
|
if (!had && videoEl.value) {
|
|
|
|
videoEl.value.loop = videoEl.value.muted = true;
|
|
|
|
videoEl.value.play();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}, {
|
|
|
|
immediate: true,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
watch(volume, (to) => {
|
|
|
|
if (videoEl.value) videoEl.value.volume = to;
|
|
|
|
});
|
|
|
|
|
2024-03-30 08:02:03 +01:00
|
|
|
watch(speed, (to) => {
|
|
|
|
if (videoEl.value) videoEl.value.playbackRate = to;
|
|
|
|
});
|
|
|
|
|
|
|
|
watch(loop, (to) => {
|
|
|
|
if (videoEl.value) videoEl.value.loop = to;
|
|
|
|
});
|
|
|
|
|
2024-01-15 10:17:01 +01:00
|
|
|
watch(hide, (to) => {
|
|
|
|
if (to && isFullscreen.value) {
|
|
|
|
document.exitFullscreen();
|
|
|
|
isFullscreen.value = false;
|
2023-10-08 07:01:40 +02:00
|
|
|
}
|
|
|
|
});
|
2024-01-15 10:17:01 +01:00
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
init();
|
|
|
|
});
|
|
|
|
|
|
|
|
onActivated(() => {
|
|
|
|
init();
|
|
|
|
});
|
|
|
|
|
|
|
|
onDeactivated(() => {
|
|
|
|
isReady.value = false;
|
|
|
|
isPlaying.value = false;
|
|
|
|
isActuallyPlaying.value = false;
|
|
|
|
elapsedTimeMs.value = 0;
|
|
|
|
durationMs.value = 0;
|
|
|
|
bufferedEnd.value = 0;
|
|
|
|
hide.value = (defaultStore.state.nsfw === 'force' || defaultStore.state.dataSaver.media) ? true : (props.video.isSensitive && defaultStore.state.nsfw !== 'ignore');
|
|
|
|
stopVideoElWatch();
|
|
|
|
onceInit = false;
|
2024-03-30 08:02:03 +01:00
|
|
|
if (mediaTickFrameId) {
|
|
|
|
window.cancelAnimationFrame(mediaTickFrameId);
|
|
|
|
mediaTickFrameId = null;
|
|
|
|
}
|
2024-01-15 10:17:01 +01:00
|
|
|
});
|
2018-03-26 15:04:34 +02:00
|
|
|
</script>
|
|
|
|
|
2023-05-30 04:32:29 +02:00
|
|
|
<style lang="scss" module>
|
2024-01-15 10:17:01 +01:00
|
|
|
.videoContainer {
|
|
|
|
container-type: inline-size;
|
2020-04-11 11:32:55 +02:00
|
|
|
position: relative;
|
2024-01-15 10:17:01 +01:00
|
|
|
overflow: clip;
|
2024-03-30 08:02:03 +01:00
|
|
|
|
2024-07-12 09:25:44 +02:00
|
|
|
&:focus-visible {
|
2024-03-30 08:02:03 +01:00
|
|
|
outline: none;
|
|
|
|
}
|
2023-05-30 04:32:29 +02:00
|
|
|
}
|
2018-03-26 15:04:34 +02:00
|
|
|
|
2024-01-15 10:17:01 +01:00
|
|
|
.sensitive {
|
2023-09-22 09:03:10 +02:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-01-15 10:17:01 +01: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;
|
|
|
|
border-radius: 6px;
|
|
|
|
color: var(--accentLighten);
|
|
|
|
display: inline-block;
|
|
|
|
font-weight: bold;
|
|
|
|
font-size: 0.8em;
|
|
|
|
padding: 2px 5px;
|
|
|
|
}
|
|
|
|
|
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);
|
2024-01-15 10:17:01 +01:00
|
|
|
font-size: 12px;
|
2023-05-30 04:32:29 +02:00
|
|
|
opacity: .5;
|
2024-01-15 10:17:01 +01:00
|
|
|
padding: 5px 8px;
|
2023-05-30 04:32:29 +02:00
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
|
|
|
top: 12px;
|
|
|
|
right: 12px;
|
|
|
|
}
|
2020-04-11 11:32:55 +02:00
|
|
|
|
2024-01-15 10:17:01 +01:00
|
|
|
.hidden {
|
|
|
|
width: 100%;
|
2024-02-02 08:49:09 +01:00
|
|
|
height: 100%;
|
2024-01-27 08:33:30 +01:00
|
|
|
background: #000;
|
2024-01-15 10:17:01 +01:00
|
|
|
border: none;
|
|
|
|
outline: none;
|
|
|
|
font: inherit;
|
|
|
|
color: inherit;
|
|
|
|
cursor: pointer;
|
2024-03-30 08:02:03 +01:00
|
|
|
padding: 60px 0;
|
2023-05-30 04:32:29 +02:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2024-01-15 10:17:01 +01:00
|
|
|
justify-content: center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.hiddenTextWrapper {
|
|
|
|
text-align: center;
|
|
|
|
font-size: 0.8em;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
.videoRoot {
|
|
|
|
background: #000;
|
|
|
|
position: relative;
|
2023-05-30 04:32:29 +02:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2024-01-15 10:17:01 +01:00
|
|
|
object-fit: contain;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
2018-07-19 19:53:32 +02:00
|
|
|
|
2024-01-15 10:17:01 +01:00
|
|
|
.video {
|
|
|
|
display: block;
|
|
|
|
height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.videoOverlayPlayButton {
|
|
|
|
position: absolute;
|
|
|
|
top: 50%;
|
|
|
|
left: 50%;
|
|
|
|
transform: translate(-50%,-50%);
|
|
|
|
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity .4s ease-in-out;
|
|
|
|
|
|
|
|
background: var(--accent);
|
|
|
|
color: #fff;
|
|
|
|
padding: 1rem;
|
|
|
|
border-radius: 99rem;
|
|
|
|
|
|
|
|
font-size: 1.1rem;
|
2024-07-12 09:25:44 +02:00
|
|
|
|
|
|
|
&:focus-visible {
|
|
|
|
outline: none;
|
|
|
|
}
|
2024-01-15 10:17:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.videoLoading {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2020-01-29 20:37:25 +01:00
|
|
|
display: flex;
|
2024-01-15 10:17:01 +01:00
|
|
|
align-items: center;
|
2020-01-29 20:37:25 +01:00
|
|
|
justify-content: center;
|
2024-01-15 10:17:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.videoControls {
|
|
|
|
display: grid;
|
|
|
|
grid-template-areas:
|
|
|
|
"left time . volume right"
|
|
|
|
"seekbar seekbar seekbar seekbar seekbar";
|
|
|
|
grid-template-columns: auto auto 1fr auto auto;
|
2020-01-29 20:37:25 +01:00
|
|
|
align-items: center;
|
2024-01-15 10:17:01 +01:00
|
|
|
gap: 4px 8px;
|
|
|
|
|
|
|
|
padding: 35px 10px 10px 10px;
|
|
|
|
background: linear-gradient(rgba(0, 0, 0, 0),rgba(0, 0, 0, .75));
|
|
|
|
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
right: 0;
|
|
|
|
bottom: 0;
|
|
|
|
|
|
|
|
transform: translateY(100%);
|
|
|
|
pointer-events: none;
|
|
|
|
opacity: 0;
|
|
|
|
transition: opacity .4s ease-in-out, transform .4s ease-in-out;
|
|
|
|
}
|
|
|
|
|
|
|
|
.active {
|
|
|
|
.videoControls {
|
|
|
|
transform: translateY(0);
|
|
|
|
opacity: 1;
|
|
|
|
pointer-events: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.videoOverlayPlayButton {
|
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.controlsChild {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
gap: 4px;
|
2020-01-29 20:37:25 +01:00
|
|
|
color: #fff;
|
2024-01-15 10:17:01 +01:00
|
|
|
|
|
|
|
.controlButton {
|
|
|
|
padding: 6px;
|
|
|
|
border-radius: calc(var(--radius) / 2);
|
|
|
|
transition: background-color .2s ease-in-out;
|
|
|
|
font-size: 1.05rem;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: var(--accent);
|
|
|
|
}
|
2024-07-12 09:25:44 +02:00
|
|
|
|
|
|
|
&:focus-visible {
|
|
|
|
outline: none;
|
|
|
|
}
|
2024-01-15 10:17:01 +01:00
|
|
|
}
|
2023-05-30 04:32:29 +02:00
|
|
|
}
|
2018-07-19 19:53:32 +02:00
|
|
|
|
2024-01-15 10:17:01 +01:00
|
|
|
.controlsLeft {
|
|
|
|
grid-area: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.controlsRight {
|
|
|
|
grid-area: right;
|
|
|
|
}
|
|
|
|
|
|
|
|
.controlsTime {
|
|
|
|
grid-area: time;
|
|
|
|
font-size: .9rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
.controlsVolume {
|
|
|
|
grid-area: volume;
|
|
|
|
|
|
|
|
.volumeSeekbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.seekbarRoot {
|
|
|
|
grid-area: seekbar;
|
2024-01-18 06:45:11 +01:00
|
|
|
/* ▼シークバー操作をやりやすくするためにクリックイベントが伝播されないエリアを拡張する */
|
|
|
|
margin: -10px;
|
|
|
|
padding: 10px;
|
2024-01-15 10:17:01 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@container (min-width: 500px) {
|
|
|
|
.videoControls {
|
|
|
|
grid-template-areas: "left seekbar time volume right";
|
|
|
|
grid-template-columns: auto 1fr auto auto auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.controlsVolume {
|
|
|
|
.volumeSeekbar {
|
|
|
|
max-width: 90px;
|
|
|
|
display: block;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
}
|
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>
|