2018-03-26 15:04:34 +02:00
|
|
|
<template>
|
2021-11-19 11:36:12 +01:00
|
|
|
<div v-if="hide" class="icozogqfvdetwohsdglrbswgrejoxbdj" @click="hide = false">
|
2018-07-19 19:53:32 +02:00
|
|
|
<div>
|
2022-11-07 03:49:47 +01:00
|
|
|
<b><i class="ph-warning-bold ph-lg"></i> {{ $ts.sensitive }}</b>
|
2020-12-26 02:47:36 +01:00
|
|
|
<span>{{ $ts.clickToShow }}</span>
|
2018-07-19 19:53:32 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2021-11-19 11:36:12 +01:00
|
|
|
<div v-else class="kkjnbbplepmiyuadieoenjgutgcmtsvu">
|
2022-09-21 22:10:47 +02:00
|
|
|
<VuePlyr
|
|
|
|
:options="{
|
|
|
|
controls: [
|
|
|
|
'play-large',
|
|
|
|
'play',
|
|
|
|
'progress',
|
|
|
|
'current-time',
|
|
|
|
'mute',
|
|
|
|
'volume',
|
|
|
|
'pip',
|
|
|
|
'download',
|
|
|
|
'fullscreen'
|
|
|
|
],
|
|
|
|
disableContextMenu: false,
|
|
|
|
}"
|
|
|
|
>
|
2022-08-17 01:32:44 +02:00
|
|
|
<video
|
|
|
|
:poster="video.thumbnailUrl"
|
|
|
|
:title="video.comment"
|
2022-09-21 22:10:47 +02:00
|
|
|
:aria-label="video.comment"
|
2022-08-17 01:32:44 +02:00
|
|
|
preload="none"
|
|
|
|
controls
|
|
|
|
@contextmenu.stop
|
2022-07-19 07:56:28 +02:00
|
|
|
>
|
2022-08-17 01:32:44 +02:00
|
|
|
<source
|
|
|
|
:src="video.url"
|
|
|
|
:type="video.type"
|
|
|
|
>
|
|
|
|
</video>
|
2022-08-17 02:43:33 +02:00
|
|
|
</VuePlyr>
|
2022-11-07 03:49:47 +01:00
|
|
|
<i class="ph-eye-slash-bold ph-lg" @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>
|
2022-07-19 07:56:28 +02:00
|
|
|
import { ref } from 'vue';
|
2022-08-18 01:38:17 +02:00
|
|
|
import VuePlyr from 'vue-plyr';
|
2022-09-21 22:10:47 +02:00
|
|
|
import type * as misskey from 'misskey-js';
|
2022-01-07 07:02:25 +01:00
|
|
|
import { defaultStore } from '@/store';
|
2022-08-18 01:38:17 +02:00
|
|
|
import 'vue-plyr/dist/vue-plyr.css';
|
2018-09-15 21:31:55 +02:00
|
|
|
|
2022-01-07 07:02:25 +01:00
|
|
|
const props = defineProps<{
|
|
|
|
video: misskey.entities.DriveFile;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const hide = ref((defaultStore.state.nsfw === 'force') ? true : props.video.isSensitive && (defaultStore.state.nsfw !== 'ignore'));
|
2018-03-26 15:04:34 +02:00
|
|
|
</script>
|
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
.kkjnbbplepmiyuadieoenjgutgcmtsvu {
|
2020-04-11 11:32:55 +02:00
|
|
|
position: relative;
|
2022-08-17 01:32:44 +02:00
|
|
|
--plyr-color-main: var(--accent);
|
2018-03-26 15:04:34 +02:00
|
|
|
|
2020-04-11 11:32:55 +02:00
|
|
|
> i {
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
border-radius: 6px;
|
|
|
|
background-color: var(--fg);
|
|
|
|
color: var(--accentLighten);
|
|
|
|
font-size: 14px;
|
|
|
|
opacity: .5;
|
|
|
|
padding: 3px 6px;
|
|
|
|
text-align: center;
|
|
|
|
cursor: pointer;
|
|
|
|
top: 12px;
|
|
|
|
right: 12px;
|
|
|
|
}
|
|
|
|
|
2021-03-06 13:38:39 +01:00
|
|
|
> video {
|
2020-04-11 11:32:55 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
font-size: 3.5em;
|
2021-03-02 14:57:16 +01:00
|
|
|
overflow: hidden;
|
2020-04-11 11:32:55 +02:00
|
|
|
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
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
.icozogqfvdetwohsdglrbswgrejoxbdj {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
2022-07-19 07:56:28 +02:00
|
|
|
background: #111;
|
|
|
|
color: #fff;
|
2018-07-19 19:53:32 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> div {
|
|
|
|
display: table-cell;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 12px;
|
2018-07-19 19:53:32 +02:00
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
> b {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-03-26 15:04:34 +02:00
|
|
|
</style>
|