2018-03-26 22:04:34 +09:00
|
|
|
<template>
|
2023-04-08 09:01:42 +09:00
|
|
|
<div
|
|
|
|
v-if="hide"
|
|
|
|
class="icozogqfvdetwohsdglrbswgrejoxbdj"
|
|
|
|
@click="hide = false"
|
2022-09-22 05:10:47 +09:00
|
|
|
>
|
2023-04-08 09:01:42 +09:00
|
|
|
<div>
|
|
|
|
<b
|
|
|
|
><i class="ph-warning ph-bold ph-lg"></i>
|
|
|
|
{{ i18n.ts.sensitive }}</b
|
|
|
|
>
|
|
|
|
<span>{{ i18n.ts.clickToShow }}</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
2023-05-29 02:57:25 +09:00
|
|
|
<div v-else class="video" :class="{ mini }">
|
2023-04-08 09:01:42 +09:00
|
|
|
<VuePlyr
|
2023-05-29 02:57:25 +09:00
|
|
|
ref="plyr"
|
2023-04-08 09:01:42 +09:00
|
|
|
:options="{
|
|
|
|
controls: [
|
|
|
|
'play-large',
|
|
|
|
'play',
|
|
|
|
'progress',
|
|
|
|
'current-time',
|
|
|
|
'mute',
|
|
|
|
'volume',
|
|
|
|
'pip',
|
|
|
|
'download',
|
|
|
|
'fullscreen',
|
|
|
|
],
|
|
|
|
disableContextMenu: false,
|
|
|
|
}"
|
2022-07-19 14:56:28 +09:00
|
|
|
>
|
2023-04-08 09:01:42 +09:00
|
|
|
<video
|
|
|
|
:poster="video.thumbnailUrl"
|
|
|
|
:title="video.comment"
|
|
|
|
:aria-label="video.comment"
|
|
|
|
preload="none"
|
|
|
|
controls
|
|
|
|
@contextmenu.stop
|
2022-08-17 08:32:44 +09:00
|
|
|
>
|
2023-04-08 09:01:42 +09:00
|
|
|
<source :src="video.url" :type="video.type" />
|
|
|
|
</video>
|
|
|
|
</VuePlyr>
|
2023-05-29 02:57:25 +09:00
|
|
|
<button
|
|
|
|
v-tooltip="i18n.ts.hide"
|
|
|
|
class="_button hide"
|
|
|
|
@click="hide = true"
|
|
|
|
>
|
|
|
|
<i class="ph-eye-slash ph-bold ph-lg"></i>
|
|
|
|
</button>
|
2023-04-08 09:01:42 +09:00
|
|
|
</div>
|
2018-03-26 22:04:34 +09:00
|
|
|
</template>
|
|
|
|
|
2022-01-07 15:02:25 +09:00
|
|
|
<script lang="ts" setup>
|
2023-05-29 02:57:25 +09:00
|
|
|
import { onMounted, ref } from "vue";
|
2023-04-08 09:01:42 +09:00
|
|
|
import VuePlyr from "vue-plyr";
|
|
|
|
import type * as misskey from "calckey-js";
|
|
|
|
import { defaultStore } from "@/store";
|
|
|
|
import "vue-plyr/dist/vue-plyr.css";
|
|
|
|
import { i18n } from "@/i18n";
|
2018-09-16 04:31:55 +09:00
|
|
|
|
2022-01-07 15:02:25 +09:00
|
|
|
const props = defineProps<{
|
|
|
|
video: misskey.entities.DriveFile;
|
|
|
|
}>();
|
|
|
|
|
2023-05-29 02:57:25 +09:00
|
|
|
const plyr = ref();
|
|
|
|
const mini = ref(false);
|
|
|
|
|
2023-04-08 09:01:42 +09:00
|
|
|
const hide = ref(
|
|
|
|
defaultStore.state.nsfw === "force"
|
|
|
|
? true
|
|
|
|
: props.video.isSensitive && defaultStore.state.nsfw !== "ignore"
|
|
|
|
);
|
2023-05-29 02:57:25 +09:00
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
mini.value = plyr.value.player.media.scrollWidth < 300;
|
|
|
|
if (mini.value) {
|
|
|
|
plyr.value.player.on('play', () => {
|
|
|
|
plyr.value.player.fullscreen.enter();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
})
|
2018-03-26 22:04:34 +09:00
|
|
|
</script>
|
|
|
|
|
2020-01-30 04:37:25 +09:00
|
|
|
<style lang="scss" scoped>
|
2023-05-29 02:57:25 +09:00
|
|
|
.video {
|
2020-04-11 18:32:55 +09:00
|
|
|
position: relative;
|
2022-08-17 08:32:44 +09:00
|
|
|
--plyr-color-main: var(--accent);
|
2018-03-26 22:04:34 +09:00
|
|
|
|
2023-05-29 02:57:25 +09:00
|
|
|
> .hide {
|
2020-04-11 18:32:55 +09:00
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
border-radius: 6px;
|
2023-05-29 02:57:25 +09:00
|
|
|
background-color: var(--accentedBg);
|
|
|
|
-webkit-backdrop-filter: var(--blur, blur(15px));
|
|
|
|
backdrop-filter: var(--blur, blur(15px));
|
|
|
|
color: var(--accent);
|
|
|
|
font-size: 0.8em;
|
|
|
|
padding: 6px 8px;
|
2020-04-11 18:32:55 +09:00
|
|
|
text-align: center;
|
|
|
|
top: 12px;
|
|
|
|
right: 12px;
|
2023-05-29 02:57:25 +09:00
|
|
|
|
|
|
|
> i {
|
|
|
|
display: block;
|
|
|
|
}
|
2020-04-11 18:32:55 +09:00
|
|
|
}
|
|
|
|
|
2021-03-06 21:38:39 +09:00
|
|
|
> video {
|
2020-04-11 18:32:55 +09:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
font-size: 3.5em;
|
2021-03-02 22:57:16 +09:00
|
|
|
overflow: hidden;
|
2020-04-11 18:32:55 +09:00
|
|
|
background-position: center;
|
|
|
|
background-size: cover;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
2023-05-29 02:57:25 +09:00
|
|
|
|
|
|
|
&.mini {
|
|
|
|
:deep(.plyr:not(:fullscreen)) {
|
|
|
|
min-width: unset !important;
|
2023-05-29 03:35:05 +09:00
|
|
|
.plyr__control--overlaid,
|
2023-05-29 02:57:25 +09:00
|
|
|
.plyr__progress__container,
|
|
|
|
.plyr__volume,
|
|
|
|
[data-plyr="fullscreen"] {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-30 04:37:25 +09:00
|
|
|
}
|
2018-07-20 02:53:32 +09:00
|
|
|
|
2020-01-30 04:37:25 +09:00
|
|
|
.icozogqfvdetwohsdglrbswgrejoxbdj {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2022-07-19 14:56:28 +09:00
|
|
|
background: #111;
|
|
|
|
color: #fff;
|
2018-07-20 02:53:32 +09:00
|
|
|
|
2020-01-30 04:37:25 +09:00
|
|
|
> div {
|
|
|
|
display: table-cell;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 12px;
|
2018-07-20 02:53:32 +09:00
|
|
|
|
2020-01-30 04:37:25 +09:00
|
|
|
> b {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-03-26 22:04:34 +09:00
|
|
|
</style>
|