2018-03-26 15:04:34 +02:00
|
|
|
<template>
|
2018-11-30 23:16:28 +01:00
|
|
|
<div class="icozogqfvdetwohsdglrbswgrejoxbdj" v-if="video.isSensitive && hide && !$store.state.device.alwaysShowNsfw" @click="hide = false">
|
2018-07-19 19:53:32 +02:00
|
|
|
<div>
|
2018-11-08 19:44:35 +01:00
|
|
|
<b><fa icon="exclamation-triangle"/> {{ $t('sensitive') }}</b>
|
2020-01-29 20:37:25 +01:00
|
|
|
<span>{{ $t('clickToShow') }}</span>
|
2018-07-19 19:53:32 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2020-04-11 11:32:55 +02:00
|
|
|
<div class="kkjnbbplepmiyuadieoenjgutgcmtsvu" v-else>
|
|
|
|
<i><fa :icon="faEyeSlash" @click="hide = true"></fa></i>
|
|
|
|
<a
|
|
|
|
:href="video.url"
|
|
|
|
rel="nofollow noopener"
|
|
|
|
target="_blank"
|
|
|
|
:style="imageStyle"
|
|
|
|
:title="video.name"
|
|
|
|
>
|
|
|
|
<fa :icon="faPlayCircle"/>
|
|
|
|
</a>
|
|
|
|
</div>
|
2018-03-26 15:04:34 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2018-09-15 21:31:55 +02:00
|
|
|
import Vue from 'vue';
|
2020-04-11 11:32:55 +02:00
|
|
|
import { faPlayCircle, faEyeSlash } from '@fortawesome/free-regular-svg-icons';
|
2020-01-29 20:37:25 +01:00
|
|
|
import i18n from '../i18n';
|
2018-09-15 21:31:55 +02:00
|
|
|
|
2018-03-26 15:04:34 +02:00
|
|
|
export default Vue.extend({
|
2020-01-29 20:37:25 +01:00
|
|
|
i18n,
|
2018-07-19 19:53:32 +02:00
|
|
|
props: {
|
|
|
|
video: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
2018-09-15 21:31:55 +02:00
|
|
|
data() {
|
|
|
|
return {
|
2020-01-29 20:37:25 +01:00
|
|
|
hide: true,
|
2020-04-11 11:32:55 +02:00
|
|
|
faPlayCircle,
|
|
|
|
faEyeSlash
|
2018-09-15 21:31:55 +02:00
|
|
|
};
|
|
|
|
},
|
2018-03-26 15:04:34 +02:00
|
|
|
computed: {
|
|
|
|
imageStyle(): any {
|
|
|
|
return {
|
2019-02-02 05:22:09 +01:00
|
|
|
'background-image': `url(${this.video.thumbnailUrl})`
|
2018-03-26 15:04:34 +02:00
|
|
|
};
|
|
|
|
}
|
2018-09-15 21:31:55 +02:00
|
|
|
}
|
|
|
|
});
|
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;
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
> a {
|
|
|
|
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
|
|
|
|
2020-01-29 20:37:25 +01:00
|
|
|
.icozogqfvdetwohsdglrbswgrejoxbdj {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
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>
|