2018-03-26 15:04:34 +02:00
|
|
|
<template>
|
2018-07-19 19:53:32 +02:00
|
|
|
<div class="icozogqfvdetwohsdglrbswgrejoxbdj" v-if="video.isSensitive && hide" @click="hide = false">
|
|
|
|
<div>
|
|
|
|
<b>%fa:exclamation-triangle% %i18n:@sensitive%</b>
|
|
|
|
<span>%i18n:@click-to-show%</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<a class="kkjnbbplepmiyuadieoenjgutgcmtsvu" v-else
|
|
|
|
:href="video.url"
|
|
|
|
target="_blank"
|
|
|
|
:style="imageStyle"
|
2018-10-07 18:03:07 +02:00
|
|
|
:title="video.name"
|
|
|
|
>
|
2018-07-19 19:53:32 +02:00
|
|
|
%fa:R play-circle%
|
|
|
|
</a>
|
2018-03-26 15:04:34 +02:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2018-09-15 21:31:55 +02:00
|
|
|
import Vue from 'vue';
|
|
|
|
|
2018-03-26 15:04:34 +02:00
|
|
|
export default Vue.extend({
|
2018-07-19 19:53:32 +02:00
|
|
|
props: {
|
|
|
|
video: {
|
|
|
|
type: Object,
|
|
|
|
required: true
|
|
|
|
}
|
|
|
|
},
|
2018-09-15 21:31:55 +02:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
hide: true
|
|
|
|
};
|
|
|
|
},
|
2018-03-26 15:04:34 +02:00
|
|
|
computed: {
|
|
|
|
imageStyle(): any {
|
|
|
|
return {
|
2018-10-07 18:03:07 +02:00
|
|
|
'background-image': null // TODO `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>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-07-19 19:53:32 +02:00
|
|
|
.kkjnbbplepmiyuadieoenjgutgcmtsvu
|
2018-03-26 15:04:34 +02:00
|
|
|
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
|
|
|
|
background #111
|
|
|
|
color #fff
|
|
|
|
|
|
|
|
> div
|
|
|
|
display table-cell
|
|
|
|
text-align center
|
|
|
|
font-size 12px
|
|
|
|
|
|
|
|
> b
|
|
|
|
display block
|
|
|
|
|
2018-03-26 15:04:34 +02:00
|
|
|
</style>
|