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>
|
2018-11-08 19:44:35 +01:00
|
|
|
<b><fa icon="exclamation-triangle"/> {{ $t('sensitive') }}</b>
|
|
|
|
<span>{{ $t('click-to-show') }}</span>
|
2018-07-19 19:53:32 +02:00
|
|
|
</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-11-05 17:40:11 +01:00
|
|
|
<fa :icon="['far', 'play-circle']"/>
|
2018-07-19 19:53:32 +02:00
|
|
|
</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-11-08 19:44:35 +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({
|
2018-11-08 19:44:35 +01:00
|
|
|
i18n: i18n('mobile/views/components/media-video.vue'),
|
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>
|