egirlskey/src/client/app/mobile/views/components/media-video.vue

75 lines
1.3 KiB
Vue
Raw Normal View History

2018-03-26 13:04:34 +00:00
<template>
<div class="icozogqfvdetwohsdglrbswgrejoxbdj" v-if="video.isSensitive && hide && !$store.state.device.alwaysShowNsfw" @click="hide = false">
2018-07-19 17:53:32 +00:00
<div>
<b><fa icon="exclamation-triangle"/> {{ $t('sensitive') }}</b>
<span>{{ $t('click-to-show') }}</span>
2018-07-19 17:53:32 +00:00
</div>
</div>
<a class="kkjnbbplepmiyuadieoenjgutgcmtsvu" v-else
:href="video.url"
2019-05-13 17:50:23 +00:00
rel="nofollow noopener"
2018-07-19 17:53:32 +00:00
target="_blank"
:style="imageStyle"
2018-10-07 16:03:07 +00:00
:title="video.name"
>
<fa :icon="['far', 'play-circle']"/>
2018-07-19 17:53:32 +00:00
</a>
2018-03-26 13:04:34 +00:00
</template>
<script lang="ts">
2018-09-15 19:31:55 +00:00
import Vue from 'vue';
import i18n from '../../../i18n';
2018-09-15 19:31:55 +00:00
2018-03-26 13:04:34 +00:00
export default Vue.extend({
i18n: i18n('mobile/views/components/media-video.vue'),
2018-07-19 17:53:32 +00:00
props: {
video: {
type: Object,
required: true
}
},
2018-09-15 19:31:55 +00:00
data() {
return {
hide: true
};
},
2018-03-26 13:04:34 +00:00
computed: {
imageStyle(): any {
return {
'background-image': `url(${this.video.thumbnailUrl})`
2018-03-26 13:04:34 +00:00
};
}
2018-09-15 19:31:55 +00:00
}
});
2018-03-26 13:04:34 +00:00
</script>
<style lang="stylus" scoped>
2018-07-19 17:53:32 +00:00
.kkjnbbplepmiyuadieoenjgutgcmtsvu
2018-03-26 13:04:34 +00: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 17:53:32 +00: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 13:04:34 +00:00
</style>