cf4cecd4df
* Fix: Always show nsfw * [Client] Add missing video play icon
74 lines
1.3 KiB
Vue
74 lines
1.3 KiB
Vue
<template>
|
|
<div class="icozogqfvdetwohsdglrbswgrejoxbdj" v-if="video.isSensitive && hide && !$store.state.device.alwaysShowNsfw" @click="hide = false">
|
|
<div>
|
|
<b><fa icon="exclamation-triangle"/> {{ $t('sensitive') }}</b>
|
|
<span>{{ $t('click-to-show') }}</span>
|
|
</div>
|
|
</div>
|
|
<a class="kkjnbbplepmiyuadieoenjgutgcmtsvu" v-else
|
|
:href="video.url"
|
|
target="_blank"
|
|
:style="imageStyle"
|
|
:title="video.name"
|
|
>
|
|
<fa :icon="['far', 'play-circle']"/>
|
|
</a>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import i18n from '../../../i18n';
|
|
|
|
export default Vue.extend({
|
|
i18n: i18n('mobile/views/components/media-video.vue'),
|
|
props: {
|
|
video: {
|
|
type: Object,
|
|
required: true
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
hide: true
|
|
};
|
|
},
|
|
computed: {
|
|
imageStyle(): any {
|
|
return {
|
|
'background-image': null // TODO `url(${this.video.thumbnailUrl})`
|
|
};
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
.kkjnbbplepmiyuadieoenjgutgcmtsvu
|
|
display flex
|
|
justify-content center
|
|
align-items center
|
|
|
|
font-size 3.5em
|
|
overflow hidden
|
|
background-position center
|
|
background-size cover
|
|
width 100%
|
|
height 100%
|
|
|
|
.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
|
|
|
|
</style>
|