Sharkey/src/client/components/media-video.vue

103 lines
1.8 KiB
Vue
Raw Normal View History

2018-03-26 16:04:34 +03:00
<template>
<div class="icozogqfvdetwohsdglrbswgrejoxbdj" v-if="video.isSensitive && hide && !$store.state.device.alwaysShowNsfw" @click="hide = false">
2018-07-19 20:53:32 +03:00
<div>
<b><fa icon="exclamation-triangle"/> {{ $t('sensitive') }}</b>
<span>{{ $t('clickToShow') }}</span>
2018-07-19 20:53:32 +03:00
</div>
</div>
<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 16:04:34 +03:00
</template>
<script lang="ts">
2018-09-15 22:31:55 +03:00
import Vue from 'vue';
import { faPlayCircle, faEyeSlash } from '@fortawesome/free-regular-svg-icons';
import i18n from '../i18n';
2018-09-15 22:31:55 +03:00
2018-03-26 16:04:34 +03:00
export default Vue.extend({
i18n,
2018-07-19 20:53:32 +03:00
props: {
video: {
type: Object,
required: true
}
},
2018-09-15 22:31:55 +03:00
data() {
return {
hide: true,
faPlayCircle,
faEyeSlash
2018-09-15 22:31:55 +03:00
};
},
2018-03-26 16:04:34 +03:00
computed: {
imageStyle(): any {
return {
'background-image': `url(${this.video.thumbnailUrl})`
2018-03-26 16:04:34 +03:00
};
}
2018-09-15 22:31:55 +03:00
}
});
2018-03-26 16:04:34 +03:00
</script>
<style lang="scss" scoped>
.kkjnbbplepmiyuadieoenjgutgcmtsvu {
position: relative;
2018-03-26 16:04:34 +03: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%;
}
}
2018-07-19 20:53:32 +03:00
.icozogqfvdetwohsdglrbswgrejoxbdj {
display: flex;
justify-content: center;
align-items: center;
background: #111;
color: #fff;
2018-07-19 20:53:32 +03:00
> div {
display: table-cell;
text-align: center;
font-size: 12px;
2018-07-19 20:53:32 +03:00
> b {
display: block;
}
}
}
2018-03-26 16:04:34 +03:00
</style>