rudeshark.net/packages/client/src/components/media-video.vue

110 lines
2.1 KiB
Vue
Raw Normal View History

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>
<b><i class="fas fa-exclamation-triangle"></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">
<video
2022-07-14 06:40:44 +02:00
id="player"
:poster="video.thumbnailUrl"
:title="video.comment"
:alt="video.comment"
2022-07-14 06:40:44 +02:00
class="vlite-js"
preload="none"
controls
@contextmenu.stop
>
2022-07-14 06:40:44 +02:00
<source
:src="video.url"
:type="video.type"
>
</video>
<i class="fas fa-eye-slash" @click="hide = true"></i>
</div>
2018-03-26 15:04:34 +02:00
</template>
2022-01-07 07:02:25 +01:00
<script lang="ts" setup>
2022-07-14 07:10:58 +02:00
import { ref, onMounted } from 'vue';
2022-01-07 07:02:25 +01:00
import * as misskey from 'misskey-js';
2022-07-14 06:40:44 +02:00
import 'vlitejs/dist/vlite.css';
import Vlitejs from 'vlitejs';
2022-07-14 06:50:59 +02:00
import VlitejsPip from 'vlitejs/dist/plugins/pip';
2022-01-07 07:02:25 +01:00
import { defaultStore } from '@/store';
2018-09-15 21:31:55 +02:00
2022-01-07 07:02:25 +01:00
const props = defineProps<{
video: misskey.entities.DriveFile;
}>();
2022-07-14 07:10:58 +02:00
const videoEl = $ref<HTMLVideoElement | null>();
2022-07-14 06:50:59 +02:00
2022-07-14 07:10:58 +02:00
onMounted(() => {
if (videoEl) {
Vlitejs.registerPlugin('pip', VlitejsPip);
new Vlitejs('#player', {
plugins: ['pip'],
});
}
2022-07-14 06:40:44 +02:00
});
2022-01-07 07:02:25 +01:00
const hide = ref((defaultStore.state.nsfw === 'force') ? true : props.video.isSensitive && (defaultStore.state.nsfw !== 'ignore'));
2018-03-26 15:04:34 +02:00
</script>
<style lang="scss" scoped>
.kkjnbbplepmiyuadieoenjgutgcmtsvu {
position: relative;
2018-03-26 15:04:34 +02:00
2022-07-14 06:40:44 +02:00
> .vlite-js {
--vlite-colorPrimary: var(--accent);
--vlite-controlsColor: var(--fg);
}
> 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;
}
> 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%;
}
}
2018-07-19 19:53:32 +02:00
.icozogqfvdetwohsdglrbswgrejoxbdj {
display: flex;
justify-content: center;
align-items: center;
2022-07-14 06:40:44 +02:00
/* background: #111;
color: #fff; */
2018-07-19 19:53:32 +02:00
> div {
display: table-cell;
text-align: center;
font-size: 12px;
2018-07-19 19:53:32 +02:00
> b {
display: block;
}
}
}
2018-03-26 15:04:34 +02:00
</style>